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 SummaryConstructors 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 SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetScope()Get the scope.java.lang.String[]getTags()Get the tags.ClassInfogetType()Get the type.voidsetScope(java.lang.String scope)Set the scope.voidsetTags(java.lang.String[] tags)Set the tags.voidsetType(ClassInfo type)Set the type.- 
Methods inherited from class org.activecomponents.webservice.messages.BaseMessagegetCallid, setCallid
 
- 
 
- 
- 
- 
Field Detail- 
typeprotected ClassInfo type The type.
 - 
scopeprotected java.lang.String scope The provision scope.
 - 
tagsprotected java.lang.String[] tags The tags.
 
- 
 - 
Constructor Detail- 
ServiceProvideMessagepublic ServiceProvideMessage() Create a new command.
 - 
ServiceProvideMessagepublic 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- 
getTypepublic ClassInfo getType() Get the type.- Returns:
- Tthe type
 
 - 
setTypepublic void setType(ClassInfo type) Set the type.- Parameters:
- type- The type to set
 
 - 
getTagspublic java.lang.String[] getTags() Get the tags.- Returns:
- the tags
 
 - 
setTagspublic void setTags(java.lang.String[] tags) Set the tags.- Parameters:
- tags- The tags to set
 
 - 
getScopepublic java.lang.String getScope() Get the scope.- Returns:
- The scope
 
 - 
setScopepublic void setScope(java.lang.String scope) Set the scope.- Parameters:
- scope- The scope to set
 
 
- 
 
-