Class RMIRemoteConnection

  • All Implemented Interfaces:
    Serializable

    public class RMIRemoteConnection
    extends RemoteConnection

    Purpose: Define an RMI implementation class for the remote object that can execute a remote command.

    Description: This implementation class is the RMI transport version of the connection that is used by the remote command manager to send remote commands. This object just wraps the RMIRemoteCommandConnection remote object

    Since:
    OracleAS TopLink 10g (9.0.4)
    See Also:
    Serialized Form
    • Method Detail

      • executeCommand

        public Object executeCommand​(Command command)
                              throws CommunicationException
        INTERNAL: This method invokes the remote object with the Command argument, and causes it to execute the command in the remote VM. The result is currently assumed to be either null if successful, or an exception string if an exception was thrown during execution. If a RemoteException occurred then a communication problem occurred. In this case the exception will be wrapped in a CommunicationException and re-thrown.
        Specified by:
        executeCommand in class RemoteConnection
        Throws:
        CommunicationException
      • executeCommand

        public Object executeCommand​(byte[] command)
                              throws CommunicationException
        INTERNAL: This method invokes the remote object with the Command argument, and causes it to execute the command in the remote VM. The result is currently assumed to be either null if successful, or an exception string if an exception was thrown during execution. If a RemoteException occurred then a communication problem occurred. In this case the exception will be wrapped in a CommunicationException and re-thrown.
        Specified by:
        executeCommand in class RemoteConnection
        Throws:
        CommunicationException
      • getConnection

        public RMIRemoteCommandConnection getConnection()
        INTERNAL Return the RemoteCommandConnection associated with this RemoteConnection
        Returns:
        RMIRemoteCommandConnection connection