| Package | Description |
|---|---|
| de.aristaflow.adept2.core.processmanager | |
| de.aristaflow.adept2.model.processmodel |
Warning: This package description is OUTDATED (work in progress)!!
|
| de.aristaflow.adept2.model.processmodel.tools | |
| de.aristaflow.adept2.model.processmodel.xml |
The xml packages provides a generic import and export functionality for all components implementing the common ADEPT2 processmodel interfaces and just requires an implementation of the ProcessModelFactory.
|
| Modifier and Type | Method and Description |
|---|---|
InstanceStatus |
InstanceManager.getAndLockInstanceStatus(SessionToken session,
java.util.UUID instanceID)
Gets an object representing the status of the designated process instance
and locks the instance for further manipulation, for instance, another
status change, a schema-evolution or even a new instantiation.
|
InstanceStatus |
InstanceManager.getInstanceStatus(SessionToken session,
java.util.UUID instanceID)
Gets an object representing the status of the designated process instance,
that is, whether the instance is outdated, may be derived, may be
instantiated, whether instances may be migrated to and whether instances
are changeable.
|
| Modifier and Type | Method and Description |
|---|---|
void |
InstanceManager.setInstanceStatus(SessionToken session,
InstanceStatus instanceStatus)
Sets the status of the instance (identified by the instance status object),
to the new status.
|
| Modifier and Type | Method and Description |
|---|---|
InstanceStatus |
ProcessModelFactory.createInstanceStatus(java.util.UUID instanceID,
ProcessConstants.InstanceMigrationStatus migrationStatus,
long migrationStatusDate,
java.lang.String migrationStatusComment,
ProcessConstants.InstanceExecutionStatus executionStatus,
long executionStatusDate,
java.lang.String executionStatusComment) |
InstanceStatus |
ProcessModelFactory.createInstanceStatus(java.util.UUID instanceID,
ProcessConstants.InstanceMigrationStatus migrationStatus,
java.lang.String migrationStatusComment,
ProcessConstants.InstanceExecutionStatus executionStatus,
java.lang.String executionStatusComment) |
| Modifier and Type | Method and Description |
|---|---|
static InstanceStatus |
ProcessModelTools.cloneInstanceStatus(InstanceStatus status,
ProcessModelFactory factory)
Clones an instance status object using the designated factory.
|
| Modifier and Type | Method and Description |
|---|---|
static InstanceStatus |
ProcessModelTools.cloneInstanceStatus(InstanceStatus status,
ProcessModelFactory factory)
Clones an instance status object using the designated factory.
|
| Modifier and Type | Method and Description |
|---|---|
InstanceStatus |
ProcessModelXMLImport.getInstanceStatusFromInstanceDocument(org.w3c.dom.Document document)
Reads a process instance status from the given.
|
InstanceStatus |
ProcessModelXMLImport.getInstanceStatusFromInstanceFile(java.io.File file)
Reads a process instance status from the given.
|
| Modifier and Type | Method and Description |
|---|---|
org.w3c.dom.Document |
ProcessModelXMLExport.getDocumentForExecutableInstanceAndStatus(ExecutableInstance instance,
InstanceStatus instanceStatus,
boolean storeStructure)
Writes the given instance including its status to the given file.
|
void |
ProcessModelXMLExport.writeExecutableInstanceAndStatusToFile(ExecutableInstance instance,
InstanceStatus instanceStatus,
java.io.File file)
Writes the given instance including its status to the given file.
|
void |
ProcessModelXMLExport.writeExecutableInstanceAndStatusToFile(ExecutableInstance instance,
InstanceStatus instanceStatus,
java.io.File file,
boolean intend)
Writes the given instance including its status to the given file.
|
void |
ProcessModelXMLExport.writeExecutableInstanceAndStatusToFile(ExecutableInstance instance,
InstanceStatus instanceStatus,
java.io.File file,
Template structure)
Writes the given instance including its status to the given file.
|
void |
ProcessModelXMLExport.writeExecutableInstanceAndStatusToFile(ExecutableInstance instance,
InstanceStatus instanceStatus,
java.io.File file,
Template structure,
boolean intend)
Writes the given instance including its status to the given file.
|
void |
ProcessModelXMLExport.writeInstanceAndStatusToFile(Instance instance,
InstanceStatus instanceStatus,
java.io.File file,
boolean storeStructure)
Writes the given instance including its status to the given file.
|
void |
ProcessModelXMLExport.writeInstanceAndStatusToFile(Instance instance,
InstanceStatus instanceStatus,
java.io.File file,
boolean storeStructure,
boolean intend)
Writes the given instance including its status to the given file.
|