Class MarshalledInvocation
java.lang.Object
net.sourceforge.jbizmo.commons.transport.MarshalledInvocation
- All Implemented Interfaces:
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:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionObject[]static longbooleanvoidsetArguments(Serializable[] arguments) voidsetAsynchronous(boolean asynchronous) voidsetMethodName(String methodName) voidsetPassword(String password) voidsetReturnValue(Serializable returnValue) voidsetServiceInterfaceName(String serviceInterfaceName) voidsetUserName(String userName)
-
Constructor Details
-
MarshalledInvocation
public MarshalledInvocation()
-
-
Method Details
-
isAsynchronous
public boolean isAsynchronous()- Returns:
- the asynchronous flag
-
setAsynchronous
public void setAsynchronous(boolean asynchronous) - Parameters:
asynchronous- the asynchronous flag to set
-
getUserName
- Returns:
- the user name
-
setUserName
- Parameters:
userName- the user name to set
-
getPassword
- Returns:
- the password
-
setPassword
- Parameters:
password- the password to set
-
getArguments
- Returns:
- the arguments
-
setArguments
- Parameters:
arguments- the arguments to set
-
getMethodName
- Returns:
- the method name
-
setMethodName
- Parameters:
methodName- the method name to set
-
getReturnValue
- Returns:
- the return value
-
setReturnValue
- Parameters:
returnValue- the return value to set
-
getSerialVersionUID
public static long getSerialVersionUID()- Returns:
- the serial version UID
-
getServiceInterfaceName
- Returns:
- the fully qualified class name of the service interface
-
setServiceInterfaceName
- Parameters:
serviceInterfaceName- the fully qualified class name of the service interface to set
-