Class ServiceInvocationMessage
- java.lang.Object
-
- org.activecomponents.webservice.messages.BaseMessage
-
- org.activecomponents.webservice.messages.ServiceInvocationMessage
-
public class ServiceInvocationMessage extends BaseMessage
Message for invoking a service.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
methodname
The message name.protected java.lang.Object[]
parametervalues
The parameter values.protected IServiceIdentifier
sid
The service id of the service to invoke.-
Fields inherited from class org.activecomponents.webservice.messages.BaseMessage
callid
-
-
Constructor Summary
Constructors Constructor Description ServiceInvocationMessage()
Create a new command.ServiceInvocationMessage(java.lang.String callid, IServiceIdentifier serviceid, java.lang.String methodname, java.lang.Object[] parametervalues)
Create a new command.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMethodName()
Get the methodName.java.lang.Object[]
getParameterValues()
Get the parameterValues.IServiceIdentifier
getServiceId()
Get the serviceId.void
setMethodName(java.lang.String methodname)
Set the method name.void
setParameterValues(java.lang.Object[] parametervalues)
Set the parameter values.void
setServiceId(IServiceIdentifier serviceid)
Set the serviceId.-
Methods inherited from class org.activecomponents.webservice.messages.BaseMessage
getCallid, setCallid
-
-
-
-
Field Detail
-
methodname
protected java.lang.String methodname
The message name.
-
sid
protected IServiceIdentifier sid
The service id of the service to invoke.
-
parametervalues
protected java.lang.Object[] parametervalues
The parameter values.
-
-
Constructor Detail
-
ServiceInvocationMessage
public ServiceInvocationMessage()
Create a new command.
-
ServiceInvocationMessage
public ServiceInvocationMessage(java.lang.String callid, IServiceIdentifier serviceid, java.lang.String methodname, java.lang.Object[] parametervalues)
Create a new command.- Parameters:
callid
- The callid.serviceId
- The serviceid;parameterNames
- The parameter names.parameterValues
- The parameter values.
-
-
Method Detail
-
getServiceId
public IServiceIdentifier getServiceId()
Get the serviceId.- Returns:
- Tthe serviceId
-
setServiceId
public void setServiceId(IServiceIdentifier serviceid)
Set the serviceId.- Parameters:
serviceId
- The serviceId to set
-
getParameterValues
public java.lang.Object[] getParameterValues()
Get the parameterValues.- Returns:
- Tthe parameterValues
-
setParameterValues
public void setParameterValues(java.lang.Object[] parametervalues)
Set the parameter values.- Parameters:
parametervalues
- The parameterValues to set
-
getMethodName
public java.lang.String getMethodName()
Get the methodName.- Returns:
- Tthe methodName
-
setMethodName
public void setMethodName(java.lang.String methodname)
Set the method name.- Parameters:
methodname
- The method name to set
-
-