Class IncWorklistData<T extends WorklistItem>
- java.lang.Object
-
- de.aristaflow.ilm.model.worklistmodel.IncWorklistData<T>
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
IncAdminWorklistData
,IncClientWorklistData
,InitialIncWorklistData
,InitialIncWorklistData
public abstract class IncWorklistData<T extends WorklistItem> extends Object implements Serializable
- See Also:
IncrementalWorklist
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description @NotNull Boolean
dropped
Whether the corresponding iterator has been dropped since all data is being transferred with this initial data.UUID
incWlId
This will benull
if the corresponding incremental worklist has been dropped implicitly due to all data being available now.@NotNull Long
remAliveTime
@NotBlank String
subClass
This is used by Jackson for deserialising subclasses.
-
Constructor Summary
Constructors Constructor Description IncWorklistData()
Constructor setting the subclass name.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract List<@Valid T>
getItemsFlatAbstract()
This contains all worklist items including items within groups and grouping worklist items.abstract void
setItemsFlatAbstract(List<@Valid T> itemsFlat)
-
-
-
Field Detail
-
subClass
@NotBlank public @NotBlank String subClass
This is used by Jackson for deserialising subclasses.
-
incWlId
public UUID incWlId
This will benull
if the corresponding incremental worklist has been dropped implicitly due to all data being available now.
-
remAliveTime
@NotNull public @NotNull Long remAliveTime
-
dropped
@NotNull public @NotNull Boolean dropped
Whether the corresponding iterator has been dropped since all data is being transferred with this initial data.
-
-