@API
public interface ReplyHandlerContext
| Modifier and Type | Method and Description |
|---|---|
JobIDLocator.ID |
getId() |
EnoviaJob |
getJob() |
JobTransfer |
getJobTransfer() |
<T> T |
getMessage()
Returns the "message" containing the data that we will evaluate the reply
with.
|
com.technia.tif.enovia.job.reply.config.Result |
result() |
void |
setResult(boolean success,
java.lang.String responseMessage)
Deprecated.
|
void |
setResult(boolean success,
java.lang.String responseMessage,
java.util.Map<java.lang.String,java.lang.String> responseMetaData)
Deprecated.
|
<T> T getMessage()
T - The type of message. Depends on the "source".JobIDLocator.ID getId()
id locator.JobTransfer getJobTransfer()
transfer, which this reply was made
for.com.technia.tif.enovia.job.reply.config.Result result()
result instance that you can use to set the result
status on.@Deprecated
void setResult(boolean success,
java.lang.String responseMessage)
result() to obtain the result
instance, and populate that with proper result status.success - responseMessage - @Deprecated
void setResult(boolean success,
java.lang.String responseMessage,
java.util.Map<java.lang.String,java.lang.String> responseMetaData)
result() to obtain the result
instance, and populate that with proper result status.success - responseMessage - responseMetaData -