Class MessageEventReceivedRequest
- Object
-
- MessageEventReceivedRequest
-
- All Implemented Interfaces:
Serializable
public class MessageEventReceivedRequest extends Object implements Serializable
The properties of the message event to be received.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MessageEventReceivedRequest.Builder
-
Constructor Summary
Constructors Constructor Description MessageEventReceivedRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MessageEventReceivedRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull String
getMessageName()
The name of the message event.@NotNull String
getProcessInstanceId()
The ID of the workflow execution.Map<String,Object>
getVariables()
The variables of the message event.int
hashCode()
void
setMessageName(@NotNull String messageName)
The name of the message event.void
setProcessInstanceId(@NotNull String processInstanceId)
The ID of the workflow execution.void
setVariables(Map<String,Object> variables)
The variables of the message event.String
toString()
-
-
-
Method Detail
-
builder
public static MessageEventReceivedRequest.Builder builder()
-
getMessageName
@NotNull public @NotNull String getMessageName()
The name of the message event.
-
getProcessInstanceId
@NotNull public @NotNull String getProcessInstanceId()
The ID of the workflow execution.
-
getVariables
public Map<String,Object> getVariables()
The variables of the message event.
-
setMessageName
public void setMessageName(@NotNull @NotNull String messageName)
The name of the message event.
-
setProcessInstanceId
public void setProcessInstanceId(@NotNull @NotNull String processInstanceId)
The ID of the workflow execution.
-
setVariables
public void setVariables(Map<String,Object> variables)
The variables of the message event.
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classObject
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-