Package org.hcjf.cloud.impl.messages
Class MethodInvokeMessage
- java.lang.Object
-
- org.hcjf.io.net.messages.Message
-
- org.hcjf.cloud.impl.messages.MethodInvokeMessage
-
- All Implemented Interfaces:
BsonParcelable
public class MethodInvokeMessage extends Message
- Author:
- javaito
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.hcjf.utils.bson.BsonParcelable
BsonParcelable.Builder
-
-
Field Summary
-
Fields inherited from interface org.hcjf.utils.bson.BsonParcelable
MAP_KEYS_FIELD_NAME, MAP_VALUES_FIELD_NAME, PARCELABLE_CLASS_NAME
-
-
Constructor Summary
Constructors Constructor Description MethodInvokeMessage()MethodInvokeMessage(java.util.UUID id)
-
Method Summary
Modifier and Type Method Description java.lang.StringgetMethodName()java.util.List<java.lang.Object>getParameters()java.util.List<java.lang.Class>getParameterTypes()voidsetMethodName(java.lang.String methodName)voidsetParameters(java.util.List<java.lang.Object> parameters)voidsetParameterTypes(java.util.List<java.lang.Class> parameterTypes)-
Methods inherited from class org.hcjf.io.net.messages.Message
getId, getSessionBean, getSessionId, getTimestamp, setId, setSessionBean, setSessionId, setTimestamp
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hcjf.utils.bson.BsonParcelable
fromBson, fromBson, fromBson, populate, toBson, toBson, toBson, toBson, typeFromBson
-
-
-
-
Method Detail
-
getMethodName
public java.lang.String getMethodName()
-
setMethodName
public void setMethodName(java.lang.String methodName)
-
getParameterTypes
public java.util.List<java.lang.Class> getParameterTypes()
-
setParameterTypes
public void setParameterTypes(java.util.List<java.lang.Class> parameterTypes)
-
getParameters
public java.util.List<java.lang.Object> getParameters()
-
setParameters
public void setParameters(java.util.List<java.lang.Object> parameters)
-
-