All Packages Class Hierarchy This Package Previous Next Index
This function/method deletes the specified persistent list from the MQ Workflow execution server (action call).
This function/method refreshes the persistent list from the MQ Workflow execution server (action call).
This function/method sets the description of the persistent list to the specified value (action call).
This function/method sets the filter of the persistent list to the specified value (action call).
This function/method sets the sort criteria of the persistent list to the specified value (action call).
This function/method sets the threshold of the persistent list to the specified value (action call).
public abstract boolean isEmpty() throws FmcException
public abstract String description() throws FmcException
public abstract String filter() throws FmcException
public abstract String name() throws FmcException
public abstract String ownerOfList() throws FmcException
public abstract String sortCriteria() throws FmcException
public abstract Integer threshold() throws FmcException
public abstract TypeOfList type() throws FmcException
public abstract void delete() throws FmcException
This function/method deletes the specified persistent list from the MQ Workflow execution server (action call).
public abstract void refresh() throws FmcException
This function/method refreshes the persistent list from the MQ Workflow execution server (action call).
All information about the persistent list is retrieved, for example, its description, its filter, or its sort criteria.
public abstract void setDescription(String description) throws FmcException
This function/method sets the description of the persistent list to the specified value (action call).
If no description is provided, the description of the persistent list is erased.
The following rules apply for specifying a persistent list description:
public abstract void setFilter(String newFilter) throws FmcException
This function/method sets the filter of the persistent list to the specified value (action call).
If no filter is provided, the current filter of the persistent list is erased. This means that all objects authorized for will be selected via this list.
Refer to the appropriate list creation for a description of a valid filter syntax.
public abstract void setSortCriteria(String sortCriteria) throws FmcException
This function/method sets the sort criteria of the persistent list to the specified value (action call).
If no sort criteria are provided, the current sort criteria of the persistent list are erased. This means that objects selected via this list will not be sorted.
Refer to the appropriate list creation for a description of a valid sort criteria syntax.
public abstract void setThreshold(Integer threshold) throws FmcException
This function/method sets the threshold of the persistent list to the specified value (action call).
If no threshold is provided, the threshold of the persistent list is erased. This means that all objects contained in the list will be provided when queried.
All Packages Class Hierarchy This Package Previous Next Index