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 SummaryFields Modifier and Type Field Description protected java.lang.StringmethodnameThe message name.protected java.lang.Object[]parametervaluesThe parameter values.protected IServiceIdentifiersidThe service id of the service to invoke.- 
Fields inherited from class org.activecomponents.webservice.messages.BaseMessagecallid
 
- 
 - 
Constructor SummaryConstructors 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 SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetMethodName()Get the methodName.java.lang.Object[]getParameterValues()Get the parameterValues.IServiceIdentifiergetServiceId()Get the serviceId.voidsetMethodName(java.lang.String methodname)Set the method name.voidsetParameterValues(java.lang.Object[] parametervalues)Set the parameter values.voidsetServiceId(IServiceIdentifier serviceid)Set the serviceId.- 
Methods inherited from class org.activecomponents.webservice.messages.BaseMessagegetCallid, setCallid
 
- 
 
- 
- 
- 
Field Detail- 
methodnameprotected java.lang.String methodname The message name.
 - 
sidprotected IServiceIdentifier sid The service id of the service to invoke.
 - 
parametervaluesprotected java.lang.Object[] parametervalues The parameter values.
 
- 
 - 
Constructor Detail- 
ServiceInvocationMessagepublic ServiceInvocationMessage() Create a new command.
 - 
ServiceInvocationMessagepublic 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- 
getServiceIdpublic IServiceIdentifier getServiceId() Get the serviceId.- Returns:
- Tthe serviceId
 
 - 
setServiceIdpublic void setServiceId(IServiceIdentifier serviceid) Set the serviceId.- Parameters:
- serviceId- The serviceId to set
 
 - 
getParameterValuespublic java.lang.Object[] getParameterValues() Get the parameterValues.- Returns:
- Tthe parameterValues
 
 - 
setParameterValuespublic void setParameterValues(java.lang.Object[] parametervalues) Set the parameter values.- Parameters:
- parametervalues- The parameterValues to set
 
 - 
getMethodNamepublic java.lang.String getMethodName() Get the methodName.- Returns:
- Tthe methodName
 
 - 
setMethodNamepublic void setMethodName(java.lang.String methodname) Set the method name.- Parameters:
- methodname- The method name to set
 
 
- 
 
-