Package com.ibm.wsspi.collective.plugins
Interface RemoteAccessWrapper
public interface RemoteAccessWrapper
Wraps a remote access connection object, to hide the underlying implementation details of the connection.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Ends the session of this remote access wrapper.The target host name.Returns the actual remote access object.The target Liberty server name.The target Liberty user directory.
-
Method Details
-
getRemoteAccessObject
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
String getHostName()The target host name. This value cannot be null. -
getUserDir
String getUserDir()The target Liberty user directory. This value may be null, if we're connecting at a host-level. -
getServerName
String getServerName()The target Liberty server name. This value may be null, if we're connecting at a host-level.
-