Package com.ibm.wsspi.collective.plugins
Interface RemoteAccessWrapper
-
public interface RemoteAccessWrapperWraps a remote access connection object, to hide the underlying implementation details of the connection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidendSession()Ends the session of this remote access wrapper.java.lang.StringgetHostName()The target host name.java.lang.ObjectgetRemoteAccessObject()Returns the actual remote access object.java.lang.StringgetServerName()The target Liberty server name.java.lang.StringgetUserDir()The target Liberty user directory.
-
-
-
Method Detail
-
getRemoteAccessObject
java.lang.Object getRemoteAccessObject()
Returns the actual remote access object.
-
endSession
void endSession()
Ends the session of this remote access wrapper. The remote access object cannot be used after its session has ended.
-
getHostName
java.lang.String getHostName()
The target host name. This value cannot be null.
-
getUserDir
java.lang.String getUserDir()
The target Liberty user directory. This value may be null, if we're connecting at a host-level.
-
getServerName
java.lang.String getServerName()
The target Liberty server name. This value may be null, if we're connecting at a host-level.
-
-