Package jadex.bridge
Class ServiceCallInfo
- java.lang.Object
- 
- jadex.bridge.ServiceCallInfo
 
- 
 public class ServiceCallInfo extends java.lang.Object
- 
- 
Field SummaryFields Modifier and Type Field Description protected FieldInfocallbackfieldThe callback field in the agent.protected MethodInfocallbackmethodThe callback method in the agent.protected java.lang.StringreqnameThe required service name.protected MethodInfoservicemethodThe method to call on the service.
 - 
Constructor SummaryConstructors Constructor Description ServiceCallInfo()Create a new service call info.ServiceCallInfo(java.lang.String reqname, MethodInfo servicemethod, FieldInfo callbackfield)Create a new service call info.ServiceCallInfo(java.lang.String reqname, MethodInfo servicemethod, MethodInfo callbackmethod)Create a new service call info.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldInfogetCallbackField()Get the callbackfield.MethodInfogetCallbackMethod()Get the callback.java.lang.StringgetRequiredName()Get the reqname.MethodInfogetServiceMethod()Get the method.voidsetCallbackField(FieldInfo callbackfield)The callbackfield to set.voidsetCallbackMethod(MethodInfo callback)The callback to set.voidsetRequiredName(java.lang.String reqname)The reqname to set.voidsetServiceMethod(MethodInfo method)The method to set.
 
- 
- 
- 
Field Detail- 
reqnameprotected java.lang.String reqname The required service name.
 - 
servicemethodprotected MethodInfo servicemethod The method to call on the service.
 - 
callbackmethodprotected MethodInfo callbackmethod The callback method in the agent.
 - 
callbackfieldprotected FieldInfo callbackfield The callback field in the agent.
 
- 
 - 
Constructor Detail- 
ServiceCallInfopublic ServiceCallInfo() Create a new service call info.
 - 
ServiceCallInfopublic ServiceCallInfo(java.lang.String reqname, MethodInfo servicemethod, MethodInfo callbackmethod)Create a new service call info.
 - 
ServiceCallInfopublic ServiceCallInfo(java.lang.String reqname, MethodInfo servicemethod, FieldInfo callbackfield)Create a new service call info.
 
- 
 - 
Method Detail- 
getRequiredNamepublic java.lang.String getRequiredName() Get the reqname.- Returns:
- The reqname
 
 - 
setRequiredNamepublic void setRequiredName(java.lang.String reqname) The reqname to set.- Parameters:
- reqname- The reqname to set
 
 - 
getServiceMethodpublic MethodInfo getServiceMethod() Get the method.- Returns:
- The method
 
 - 
setServiceMethodpublic void setServiceMethod(MethodInfo method) The method to set.- Parameters:
- method- The method to set
 
 - 
getCallbackMethodpublic MethodInfo getCallbackMethod() Get the callback.- Returns:
- The callback
 
 - 
setCallbackMethodpublic void setCallbackMethod(MethodInfo callback) The callback to set.- Parameters:
- callback- The callback to set
 
 - 
getCallbackFieldpublic FieldInfo getCallbackField() Get the callbackfield.- Returns:
- The callbackfield
 
 - 
setCallbackFieldpublic void setCallbackField(FieldInfo callbackfield) The callbackfield to set.- Parameters:
- callbackfield- The callbackfield to set
 
 
- 
 
-