| Package | Description |
|---|---|
| de.aristaflow.adept2.core.worklistmanager | |
| de.aristaflow.adept2.model.worklistmodel |
| Modifier and Type | Method and Description |
|---|---|
WorklistUpdate |
WorklistUpdateManager.getWorklistUpdates(SessionToken session,
java.util.UUID worklistID,
WorklistRevision sinceRevision,
Filter worklistFilter)
Gets updates for the designated worklist since the designated revision (PULL by the client).
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
IncrementalWorklistUpdate
This class extends the normal worklist update by the means to retrieve the
update information incrementally which allows for smaller data transfers.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AssuringWorklistUpdate
A worklist update may contain soft update types, that is, it is unclear
whether an item is added or changed or removed or not present at all.
|
| Modifier and Type | Method and Description |
|---|---|
WorklistUpdate |
WorklistModelFactory.createWorklistUpdate(java.util.UUID worklistID,
WorklistRevision sourceRevision,
long targetRevision,
int maxPriority,
java.util.Collection<WorklistItemUpdate<ClientWorklistItem>> itemUpdates,
java.util.Map<java.lang.String,java.lang.String> userAttributes)
Creates a worklist update object.
|
WorklistUpdate |
WorklistModelFactory.createWorklistUpdate(java.util.UUID worklistID,
WorklistRevision sourceRevision,
long targetRevision,
int maxPriority,
java.util.Map<ClientWorklistItem,WorklistConstants.WorklistItemUpdateType> itemUpdates,
java.util.Map<java.lang.String,java.lang.String> userAttributes)
Creates a worklist update object.
|
WorklistUpdate |
InternalWorklist.getUpdates(long sinceRevision,
Filter worklistFilter)
Returns all updates since the given revision of this worklist.
|
| Modifier and Type | Method and Description |
|---|---|
IncrementalWorklistUpdate |
WorklistModelFactory.createWorklistUpdateIncrementally(WorklistUpdate update)
Creates an incremental worklist update object based on the designated
worklist update.
|
void |
ClientWorklist.updateWorklist(WorklistUpdate update)
Updates the worklist with the designated update-instance.
|
void |
ClientWorklistListener.worklistUpdated(ClientWorklist clientWorklist,
WorklistUpdate worklistUpdate)
Informs the listener that the given client worklist was updated with the given worklist update.
|