i_authserver.java

来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 35 行

JAVA
35
字号
/*------------------------------------------------------------------------------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 + =
减小字号Ctrl + -
显示快捷键?