Class ServiceProvideMessage
- java.lang.Object
-
- org.activecomponents.webservice.messages.BaseMessage
-
- org.activecomponents.webservice.messages.ServiceProvideMessage
-
public class ServiceProvideMessage extends BaseMessage
Message for providing a client service that can be invoked by other clients and Jadex components.
-
-
Constructor Summary
Constructors Constructor Description ServiceProvideMessage()
Create a new command.ServiceProvideMessage(java.lang.String callid, ClassInfo type, java.lang.String scope, java.lang.String... tags)
Create a new command.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getScope()
Get the scope.java.lang.String[]
getTags()
Get the tags.ClassInfo
getType()
Get the type.void
setScope(java.lang.String scope)
Set the scope.void
setTags(java.lang.String[] tags)
Set the tags.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.
-
scope
protected java.lang.String scope
The provision scope.
-
tags
protected java.lang.String[] tags
The tags.
-
-
Constructor Detail
-
ServiceProvideMessage
public ServiceProvideMessage()
Create a new command.
-
ServiceProvideMessage
public ServiceProvideMessage(java.lang.String callid, ClassInfo type, java.lang.String scope, java.lang.String... tags)
Create a new command.- Parameters:
callid
- The callid.type
- The service type.
-
-
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
-
getTags
public java.lang.String[] getTags()
Get the tags.- Returns:
- the tags
-
setTags
public void setTags(java.lang.String[] tags)
Set the tags.- Parameters:
tags
- The tags to set
-
getScope
public java.lang.String getScope()
Get the scope.- Returns:
- The scope
-
setScope
public void setScope(java.lang.String scope)
Set the scope.- Parameters:
scope
- The scope to set
-
-