Class MarshalledInvocation

  • All Implemented Interfaces:
    Serializable

    public class MarshalledInvocation
    extends Object
    implements Serializable

    Instances of this class are used to collect invocation data that is exchanged between a local application and a remote system

    Copyright 2010 (C) by Martin Ganserer

    Version:
    1.0.0
    Author:
    Martin Ganserer
    See Also:
    Serialized Form
    • Constructor Detail

      • MarshalledInvocation

        public MarshalledInvocation()
    • Method Detail

      • isAsynchronous

        public boolean isAsynchronous()
        Returns:
        the asynchronous flag
      • setAsynchronous

        public void setAsynchronous​(boolean asynchronous)
        Parameters:
        asynchronous - the asynchronous flag to set
      • getUserName

        public String getUserName()
        Returns:
        the user name
      • setUserName

        public void setUserName​(String userName)
        Parameters:
        userName - the user name to set
      • getPassword

        public String getPassword()
        Returns:
        the password
      • setPassword

        public void setPassword​(String password)
        Parameters:
        password - the password to set
      • getArguments

        public Object[] getArguments()
        Returns:
        the arguments
      • setArguments

        public void setArguments​(Object[] arguments)
        Parameters:
        arguments - the arguments to set
      • getMethodName

        public String getMethodName()
        Returns:
        the method name
      • setMethodName

        public void setMethodName​(String methodName)
        Parameters:
        methodName - the method name to set
      • getReturnValue

        public Object getReturnValue()
        Returns:
        the return value
      • setReturnValue

        public void setReturnValue​(Object returnValue)
        Parameters:
        returnValue - the return value to set
      • getSerialVersionUID

        public static long getSerialVersionUID()
        Returns:
        the serial version UID
      • getServiceInterfaceName

        public String getServiceInterfaceName()
        Returns:
        the fully qualified class name of the service interface
      • setServiceInterfaceName

        public void setServiceInterfaceName​(String serviceInterfaceName)
        Parameters:
        serviceInterfaceName - the fully qualified class name of the service interface to set