- java.lang.Object
 -  
      
- java.rmi.server.RemoteObject
 -  
        
- java.rmi.server.RemoteStub
 -  
          
- javax.management.remote.rmi.RMIServerImpl_Stub
 
 
 
 
-  
       
- All Implemented Interfaces:
 -  
         
Serializable,Remote,RMIServer 
public final class RMIServerImpl_Stub extends RemoteStub implements RMIServer
- 另请参见:
 - Serialized Form
 
 
-  
        
       
-  
             
Field Summary
-  
               
Fields inherited from class java.rmi.server.RemoteObject
ref 
 -  
               
 
-  
             
构造方法摘要
构造方法 Constructor 描述 RMIServerImpl_Stub(RemoteRef ref) 
-  
             
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 StringgetVersion()该连接器服务器了解的RMI连接器协议版本。RMIConnectionnewClient(Object $param_Object_1)通过此RMI连接器进行新的连接。-  
               
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait 
-  
               
Methods inherited from class java.rmi.server.RemoteObject
equals, getRef, hashCode, toString, toStub 
-  
               
Methods inherited from class java.rmi.server.RemoteStub
setRef 
 -  
               
 
 -  
             
 
-  
        
       
-  
             
构造方法详细信息
-  
RMIServerImpl_Stub
public RMIServerImpl_Stub(RemoteRef ref)
 
 -  
 
-  
             
方法详细信息
-  
getVersion
public String getVersion() throws RemoteException
说明从接口RMIServer复制该连接器服务器了解的RMI连接器协议版本。 这是一个具有以下格式的字符串:
protocol-version implementation-nameprotocol-version是由句点(.)分隔的一系列两个或多个非负整数。 本文档描述的版本的实现必须使用字符串1.0。协议版本后必须有一个空格,后跟执行名称。 实现名称的格式未指定。 建议包含一个实现版本号。 实现可以使用空字符串作为其实现名称,例如出于安全原因。
- Specified by:
 -  
              
getVersion在接口RMIServer - 结果
 - 一个这样描述格式的字符串。
 - 异常
 -  
              
RemoteException- 如果在远程方法调用期间存在通信异常。 
 
-  
newClient
public RMIConnection newClient(Object $param_Object_1) throws IOException
说明从界面RMIServer复制通过此RMI连接器进行新的连接。 每个远程客户端都调用此方法来获取表示其连接的新RMI对象。
- Specified by:
 -  
              
newClient在接口RMIServer - 参数
 -  
              
$param_Object_1- 此对象指定要传递到服务器的用户定义的凭据,以便在创建RMIConnection之前验证用户。 可以为null。 - 结果
 - 新创建的连接对象。
 - 异常
 -  
              
IOException- 如果新的客户端对象无法创建或导出,或者在远程方法调用期间是否存在通信异常。 
 
 -  
 
 -