⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 i_manager.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
package org.xmlBlaster.authentication.plugins;import org.xmlBlaster.util.plugin.I_Plugin;import org.xmlBlaster.util.XmlBlasterException;/** * @author  kleinerz * @version $Revision: 1.7 $ (State: $State) (Date: $Date: 2007-08-25 07:54:07 +0000 (Sat, 25 Aug 2007) $) */public interface I_Manager extends I_Plugin{   // --- session handling ----------------------------------------------------   // querySubjects(String query, String syntax)   /**    * The session handling.    * <code>org.xmlBlaster.authentication.Authenticate.connect(...)</code>    * and <code>login(...)</code> calls this method to get a new I_Session    * and bind it to the session.    * <p/>    * @param String sessionId    */   public I_Session reserveSession(String sessionId) throws XmlBlasterException;   /**    * Releases a reserved I_Session.    * <p/>    * @param String The id of the session, which has to be released.    * @param String This qos literal could contain a proof of authenticity, etc.    */   public void releaseSession(String sessionId, String qos_literal) throws XmlBlasterException;   /**    * Get the I_Session which corresponds to the given sessionId.    * <p/>    * @param String The sessionId    * @return I_Session    */   public I_Session getSessionById(String id) throws XmlBlasterException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -