public class ServiceCallInfo
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
protected FieldInfo |
callbackfield
The callback field in the agent.
|
protected MethodInfo |
callbackmethod
The callback method in the agent.
|
protected java.lang.String |
reqname
The required service name.
|
protected MethodInfo |
servicemethod
The method to call on the service.
|
Constructor and 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.
|
Modifier and Type | Method and Description |
---|---|
FieldInfo |
getCallbackField()
Get the callbackfield.
|
MethodInfo |
getCallbackMethod()
Get the callback.
|
java.lang.String |
getRequiredName()
Get the reqname.
|
MethodInfo |
getServiceMethod()
Get the method.
|
void |
setCallbackField(FieldInfo callbackfield)
The callbackfield to set.
|
void |
setCallbackMethod(MethodInfo callback)
The callback to set.
|
void |
setRequiredName(java.lang.String reqname)
The reqname to set.
|
void |
setServiceMethod(MethodInfo method)
The method to set.
|
protected java.lang.String reqname
protected MethodInfo servicemethod
protected MethodInfo callbackmethod
protected FieldInfo callbackfield
public ServiceCallInfo()
public ServiceCallInfo(java.lang.String reqname, MethodInfo servicemethod, MethodInfo callbackmethod)
public ServiceCallInfo(java.lang.String reqname, MethodInfo servicemethod, FieldInfo callbackfield)
public java.lang.String getRequiredName()
public void setRequiredName(java.lang.String reqname)
reqname
- The reqname to setpublic MethodInfo getServiceMethod()
public void setServiceMethod(MethodInfo method)
method
- The method to setpublic MethodInfo getCallbackMethod()
public void setCallbackMethod(MethodInfo callback)
callback
- The callback to setpublic FieldInfo getCallbackField()
public void setCallbackField(FieldInfo callbackfield)
callbackfield
- The callbackfield to set