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

📄 i_authserver.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
/*------------------------------------------------------------------------------Name:      I_AuthServer.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE fileComment:   Authentication access for RMI clients.Version:   $Id: I_AuthServer.java 12937 2004-11-24 20:15:11Z ruff $------------------------------------------------------------------------------*/package org.xmlBlaster.protocol.rmi;import org.xmlBlaster.util.XmlBlasterException;import java.rmi.RemoteException;/** * Interface to login to xmlBlaster. * @author xmlBlaster@marcelruff.info */public interface I_AuthServer extends java.rmi.Remote{   public String connect(String qos_literal)                        throws RemoteException, XmlBlasterException;   public void disconnect(final String sessionId, String qos_literal)                        throws RemoteException, XmlBlasterException;   /**    * Ping to check if the authentication server is alive.     * This ping checks the availability on the application level.    * @param qos Currently an empty string ""    * @return    Currently an empty string ""    */   public String ping(String str) throws RemoteException;}

⌨️ 快捷键说明

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