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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
endSession()
Ends the session of this remote access wrapper.java.lang.String
getHostName()
The target host name.java.lang.Object
getRemoteAccessObject()
Returns the actual remote access object.java.lang.String
getServerName()
The target Liberty server name.java.lang.String
getUserDir()
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.
-
-