| Modifier and Type | Method and Description |
|---|---|
java.util.Map<java.util.UUID,java.util.UUID> |
ExecutionManager.archiveInstance(SessionToken session,
java.util.UUID instanceID)
Archives the designated instance which removes the instance data completely
from the underlying services which includes the
InstanceManager, the
DataManager and the
ExecutionHistory. |
SerialisablePair<java.util.Collection<java.util.UUID>,java.util.Map<java.util.UUID,java.util.UUID>> |
ExecutionManager.archiveTemplate(SessionToken session,
java.util.UUID templateID)
Archives the designated template which removes the template and the
instance data completely from the underlying services which includes the
TemplateManager, the
InstanceManager, the
DataManager and the
ExecutionHistory. |
SerialisablePair<java.lang.Boolean,ProcessConstants.InstanceExecutionStatus> |
InstanceControl.checkForAndFixInconsistencies(SessionToken session,
java.util.UUID instId)
Checks the designated instance for inconsistencies and tries to fix them.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Map<java.util.UUID,java.util.UUID> |
InstanceManager.archiveInstance(SessionToken session,
java.util.UUID instanceID)
Archives the designated instance, that is the instance and all related data
like the status, child instances (and their statuses) as well as the
(modified) template in case of a instance-specific template are removed
from this instance manager.
|
SerialisablePair<java.util.Collection<java.util.UUID>,java.util.Map<java.util.UUID,java.util.UUID>> |
TemplateManager.archiveTemplate(SessionToken session,
java.util.UUID templateID)
Archives the designated template, which removes:
the template itself,
modified templates based on this template,
its embedded templates,
all corresponding template statuses,
all of its instances (including the ones from the modified and embedded
templates based on the designated template,
all corresponding instance statuses,
This also
archives all corresponding instances. |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<T> |
ResultSetRemoteIterator.getAll() |
java.util.List<T> |
ResultSetRemoteIterator.getNext(int count) |
java.util.List<T> |
ResultSetRemoteIterator.getNext(int count,
int start) |
java.util.List<T> |
ResultSetRemoteIterator.getPrevious(int count) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<T> |
CachingRemoteIterator.getAll() |
java.util.List<T> |
EmptyRemoteIterator.getAll() |
java.util.List<T> |
MemoryBasedCopyingRemoteIterator.getAll() |
T |
RemoteIterator.getAll()
Gets all elements of this iterator at once.
|
java.util.List<T> |
CachingRemoteIterator.getNext(int count) |
java.util.List<T> |
EmptyRemoteIterator.getNext(int count) |
java.util.List<T> |
MemoryBasedCopyingRemoteIterator.getNext(int count) |
T |
RemoteIterator.getNext(int count)
Gets the next specified amount of elements of this iterator.
|
java.util.List<T> |
CachingRemoteIterator.getNext(int count,
int start) |
java.util.List<T> |
EmptyRemoteIterator.getNext(int count,
int start) |
java.util.List<T> |
MemoryBasedCopyingRemoteIterator.getNext(int count,
int start) |
T |
RemoteIterator.getNext(int count,
int start)
Gets the next specified amount of elements of this iterator starting at the
designated index (0-based).
|
java.util.List<T> |
CachingRemoteIterator.getPrevious(int count) |
java.util.List<T> |
EmptyRemoteIterator.getPrevious(int count) |
java.util.List<T> |
MemoryBasedCopyingRemoteIterator.getPrevious(int count) |
T |
RemoteIterator.getPrevious(int count)
Gets the previous specified amount of elements of this iterator.
|