Class ExecutionContextResponse
- java.lang.Object
-
- de.aristaflow.ilm.model.execution.ExecutionContextResponse
-
- All Implemented Interfaces:
Serializable
public class ExecutionContextResponse extends Object implements Serializable
This is the response toActivityStartingWebService.getExecutionContexts(de.aristaflow.ilm.base.sessionmanagement.SessionToken, java.util.Collection, Integer)
combining an activity and the corresponding execution context or an exceptional response together in one object. So this either contains anExecutionContext
or anIlmException
. This simplifies the returned data structure.
-
-
Field Summary
Fields Modifier and Type Field Description @NotNull @Valid EbpInstanceReference
activity
@Valid ExecutionContext
context
@Valid IlmException
exception
-
Constructor Summary
Constructors Constructor Description ExecutionContextResponse()
-
-
-
Field Detail
-
activity
@NotNull @Valid public @NotNull @Valid EbpInstanceReference activity
-
context
@Valid public @Valid ExecutionContext context
-
exception
@Valid public @Valid IlmException exception
-
-