Class ServiceSearchMessage
- java.lang.Object
-
- org.activecomponents.webservice.messages.BaseMessage
-
- org.activecomponents.webservice.messages.ServiceSearchMessage
-
public class ServiceSearchMessage extends BaseMessage
A service search message.
-
-
Constructor Summary
Constructors Constructor Description ServiceSearchMessage()
Create a new service search message.ServiceSearchMessage(java.lang.String callid, ClassInfo type, boolean multiple, java.lang.String scope)
Create a new command.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getScope()
Get the scope.ClassInfo
getType()
Get the type.boolean
isMultiple()
Get the multiple.void
setMultiple(boolean multiple)
Set the multiple.void
setScope(java.lang.String scope)
Set the scope.void
setType(ClassInfo type)
Set the type.-
Methods inherited from class org.activecomponents.webservice.messages.BaseMessage
getCallid, setCallid
-
-
-
-
Field Detail
-
type
protected ClassInfo type
The type.
-
multiple
protected boolean multiple
The multiple flag.
-
scope
protected java.lang.String scope
The scope.
-
-
Constructor Detail
-
ServiceSearchMessage
public ServiceSearchMessage()
Create a new service search message.
-
ServiceSearchMessage
public ServiceSearchMessage(java.lang.String callid, ClassInfo type, boolean multiple, java.lang.String scope)
Create a new command.- Parameters:
callid
- The callid.serviceId
- The serviceid;parameterNames
- The parameter names.parameterValues
- The parameter values.
-
-
Method Detail
-
getType
public ClassInfo getType()
Get the type.- Returns:
- Tthe type
-
setType
public void setType(ClassInfo type)
Set the type.- Parameters:
type
- The type to set
-
isMultiple
public boolean isMultiple()
Get the multiple.- Returns:
- Tthe multiple
-
setMultiple
public void setMultiple(boolean multiple)
Set the multiple.- Parameters:
multiple
- The multiple to set
-
getScope
public java.lang.String getScope()
Get the scope.- Returns:
- Tthe scope
-
setScope
public void setScope(java.lang.String scope)
Set the scope.- Parameters:
scope
- The scope to set
-
-