Package jadex.bridge.service.component
Class ServiceCallEvent
- java.lang.Object
- 
- jadex.bridge.service.component.ServiceCallEvent
 
- 
 public class ServiceCallEvent extends java.lang.ObjectRepresents the events associated with service calls (call, response, etc.).
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classServiceCallEvent.Type
 - 
Field SummaryFields Modifier and Type Field Description protected java.lang.ObjectbodyThe event body (arguments, result, ...).protected IComponentIdentifiercallerThe caller.protected MethodInfomethodThe method.protected IServiceIdentifierserviceThe service.protected ServiceCallEvent.TypetypeThe event type.
 - 
Constructor SummaryConstructors Constructor Description ServiceCallEvent()Bean constructor.ServiceCallEvent(ServiceCallEvent.Type type, IServiceIdentifier service, MethodInfo method, IComponentIdentifier caller, java.lang.Object body)Instance constructor.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetBody()Get the body.IComponentIdentifiergetCaller()Get the caller.MethodInfogetMethod()Get the method.IServiceIdentifiergetService()Get the service.ServiceCallEvent.TypegetType()Get the type.voidsetBody(java.lang.Object body)Set the body.voidsetCaller(IComponentIdentifier caller)Set the caller.voidsetMethod(MethodInfo method)Set the method.voidsetService(IServiceIdentifier service)Set the service.voidsetType(ServiceCallEvent.Type type)Set the type.
 
- 
- 
- 
Field Detail- 
typeprotected ServiceCallEvent.Type type The event type.
 - 
serviceprotected IServiceIdentifier service The service.
 - 
methodprotected MethodInfo method The method.
 - 
callerprotected IComponentIdentifier caller The caller.
 - 
bodyprotected java.lang.Object body The event body (arguments, result, ...).
 
- 
 - 
Constructor Detail- 
ServiceCallEventpublic ServiceCallEvent() Bean constructor.
 - 
ServiceCallEventpublic ServiceCallEvent(ServiceCallEvent.Type type, IServiceIdentifier service, MethodInfo method, IComponentIdentifier caller, java.lang.Object body) Instance constructor.
 
- 
 - 
Method Detail- 
getTypepublic ServiceCallEvent.Type getType() Get the type.
 - 
setTypepublic void setType(ServiceCallEvent.Type type) Set the type.
 - 
getBodypublic java.lang.Object getBody() Get the body.
 - 
setBodypublic void setBody(java.lang.Object body) Set the body.
 - 
getServicepublic IServiceIdentifier getService() Get the service.
 - 
setServicepublic void setService(IServiceIdentifier service) Set the service.
 - 
getMethodpublic MethodInfo getMethod() Get the method.
 - 
setMethodpublic void setMethod(MethodInfo method) Set the method.
 - 
getCallerpublic IComponentIdentifier getCaller() Get the caller.
 - 
setCallerpublic void setCaller(IComponentIdentifier caller) Set the caller.
 
- 
 
-