Class MarshalledInvocation
- java.lang.Object
-
- net.sourceforge.jbizmo.commons.transport.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 Summary
Constructors Constructor Description MarshalledInvocation()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Object[]getArguments()StringgetMethodName()StringgetPassword()ObjectgetReturnValue()static longgetSerialVersionUID()StringgetServiceInterfaceName()StringgetUserName()booleanisAsynchronous()voidsetArguments(Object[] arguments)voidsetAsynchronous(boolean asynchronous)voidsetMethodName(String methodName)voidsetPassword(String password)voidsetReturnValue(Object returnValue)voidsetServiceInterfaceName(String serviceInterfaceName)voidsetUserName(String userName)
-
-
-
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
-
-