Interface ILazyProcessModel
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
LazyAppointmentScheduleModel,LazyExtendedProcessListModel,LazyProcessListModel
public interface ILazyProcessModel extends Serializable
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Map<String,de.xima.cmn.criteria.FilterCriterion>getFilters()Deprecated.intgetRowCount()voidputFilterTag(EInboxFilterTag filterTag)Puts the given filter tag.voidputGlobalSearchFilter(EFormRecordQueryType type, String query)Puts a global search filter for the given type with the given query.voidremoveFilterTag(EInboxFilterTag filterTag)Removes the specified filter tag.voidsetAppointmentTemplates(List<AppointmentTemplate> appointmentTemplates)voidsetAvailableAppointmentTemplates(List<AppointmentTemplateItem> availableAppointmentTemplates)voidsetCreatedFromFilter(Instant instant)Sets a date filter from which the form records have been created.voidsetCreatedToFilter(Instant instant)Sets a date filter until which the form records have been created.voidsetCreatorFilter(IUser user)Puts a filter where the given user is the first submitter (creator) of the form record.voidsetEditedFromFilter(Instant instant)Sets a date filter from which the form records have been last edited.voidsetEditedToFilter(Instant instant)Sets a date filter until which the form records have been last edited.voidsetEditorFilter(IUser user)Puts a filter where the given user is an editor of the form record, meaning they have submitted the form record.voidsetInboxes(List<Postfach> inboxes)voidsetSorting(de.xima.cmn.criteria.SortingCriterion sortingCriterion)
-
-
-
Method Detail
-
getRowCount
int getRowCount()
-
putGlobalSearchFilter
void putGlobalSearchFilter(EFormRecordQueryType type, String query)
Puts a global search filter for the given type with the given query. If the query isnullthe filter will be removed.- Parameters:
type- the type of the filter determines the form record field to be searched.query- the query string to be set. Ifnullthe filter will be removed.
-
putFilterTag
void putFilterTag(EInboxFilterTag filterTag)
Puts the given filter tag.- Parameters:
filterTag- the filter tag to be set.- Since:
- 8.2.0
-
removeFilterTag
void removeFilterTag(EInboxFilterTag filterTag)
Removes the specified filter tag.- Parameters:
filterTag- the filter tag to be removed.- Since:
- 8.2.0
-
setCreatorFilter
void setCreatorFilter(IUser user)
Puts a filter where the given user is the first submitter (creator) of the form record.- Parameters:
user- first submitter (creator). Ifnullthe creator filter will be removed if it was set.
-
setEditorFilter
void setEditorFilter(IUser user)
Puts a filter where the given user is an editor of the form record, meaning they have submitted the form record.- Parameters:
user- editor. Ifnullthe editor filter will be removed if it was set.
-
setCreatedFromFilter
void setCreatedFromFilter(Instant instant)
Sets a date filter from which the form records have been created.- Parameters:
instant- from which the form records have been created.nullremoves the filter.
-
setCreatedToFilter
void setCreatedToFilter(Instant instant)
Sets a date filter until which the form records have been created.- Parameters:
instant- until which the form records have been created.nullremoves the filter.
-
setEditedFromFilter
void setEditedFromFilter(Instant instant)
Sets a date filter from which the form records have been last edited.- Parameters:
instant- from which the form records have been last edited.nullremoves the filter.
-
setEditedToFilter
void setEditedToFilter(Instant instant)
Sets a date filter until which the form records have been last edited.- Parameters:
instant- until which the form records have been last edited.nullremoves the filter.
-
getFilters
@Deprecated Map<String,de.xima.cmn.criteria.FilterCriterion> getFilters()
Deprecated.
-
setSorting
void setSorting(de.xima.cmn.criteria.SortingCriterion sortingCriterion)
-
setAppointmentTemplates
void setAppointmentTemplates(List<AppointmentTemplate> appointmentTemplates)
-
setAvailableAppointmentTemplates
void setAvailableAppointmentTemplates(List<AppointmentTemplateItem> availableAppointmentTemplates)
-
-