📄 i_authserver.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 + -