| Package | Description |
|---|---|
| de.aristaflow.adept2.core.eventmanager.common | |
| de.aristaflow.adept2.core.runtimeservice | |
| de.aristaflow.adept2.model.runtimeenvironment |
| Modifier and Type | Method and Description |
|---|---|
protected abstract boolean |
AbstractActivityEventHandler.processEvent(Event event,
ActivityInstance activity,
DataContext dataContext)
Processes the designated event for the designated activity instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RemoteRuntimeEnvironment.applicationFailed(SessionToken token,
java.lang.String sessionID,
ApplicationEnvironmentException excpt,
SerialisableDataContext dataContext)
Signals the failing of the designated execution session that is the
execution is terminated due to the designated application environment
exception and all data produced yet is invalidated.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
ActivityData.getInputValue(ProcessModelParameter param,
boolean convert,
boolean required)
Retrieves the value of the specified input parameter as an object of the
closest related java type or the appropriate converted type.
|
java.lang.Object |
ActivityData.getInputValue(java.lang.String parameterName)
Retrieves the value of the specified input parameter as an object
of the closest related java type.
|
java.lang.Object |
ActivityData.getInputValue(java.lang.String parameterName,
boolean required)
Retrieves the value of the specified input parameter as an object
of the closest related java type.
|
protected java.lang.Object |
ActivityData.getInputValue(java.lang.String parameterName,
ProcessConstants.AdeptDataType expDt,
boolean convert,
boolean required)
Retrieves the value of the specified input parameter as an object of the
closest related java type.
|
java.lang.Object |
ActivityData.getStoredValue(ProcessModelParameter param,
boolean convert)
Retrieves the stored value of the specified output parameter as an object
of the closest related java type or the appropriate converted type.
|
java.lang.Object |
ActivityData.getStoredValue(java.lang.String parameterName)
Retrieves the stored value of the specified output parameter as an object
of the closest related java type.
|
protected java.lang.Object |
ActivityData.getStoredValue(java.lang.String parameterName,
ProcessConstants.AdeptDataType expDt,
boolean convert)
Retrieves the stored value of the specified output parameter as an object
of the closest related java type.
|
java.lang.Object[] |
ActivityData.getStoredValues()
Gets the stored values of the output parameter in an array of object
ordered by their position.
|
boolean |
ActivityData.requireInputBoolean(java.lang.String parameterName)
Returns the value of the specified BOOLEAN input parameter or throws an
exception if the value is not available.
|
java.util.Date |
ActivityData.requireInputDate(java.lang.String parameterName)
Returns the value of the specified DATE input parameter or throws an
exception if the value is not available.
|
double |
ActivityData.requireInputFloat(java.lang.String parameterName)
Returns the value of the specified FLOAT input parameter or throws an
exception if the value is not available.
|
long |
ActivityData.requireInputInteger(java.lang.String parameterName)
Returns the value of the specified INTEGER input parameter or throws an
exception if the value is not available.
|
java.lang.String |
ActivityData.requireInputString(java.lang.String parameterName)
Returns the value of the specified STRING input parameter or throws an
exception if the value is not available.
|
UDTValue |
ActivityData.requireInputUDT(java.lang.String parameterName)
Returns the value of the specified USERDEFINED input parameter or throws an
exception if the value is not available.
|
java.net.URI |
ActivityData.requireInputURI(java.lang.String parameterName)
Returns the value of the specified URI input parameter or throws an
exception if the value is not available.
|