Map<String,Object> |
AbstractCondition.getParameters() |
Get parameters set by spring configuration in item-filters.xml
These could be any kind of map that the extending condition class needs for evaluation
|
Map<String,Object> |
Condition.getParameters() |
Get parameters set by Spring in item-filters.xml
These could be any kind of map that the extending condition class needs for evaluation
|
boolean |
AbstractCondition.getResult(Context context,
Item item) |
Get the result of logical evaluation for an item
|
boolean |
BitstreamCountCondition.getResult(Context context,
Item item) |
Return true if bitstream count is within bounds of min and/or max parameters
Return false if out of bounds
|
boolean |
Condition.getResult(Context context,
Item item) |
Get the result of logical evaluation for an item
|
boolean |
InCollectionCondition.getResult(Context context,
Item item) |
Return true if item is in one of the specified collections
Return false if not
|
boolean |
InCommunityCondition.getResult(Context context,
Item item) |
Return true if item is in one of the specified collections
Return false if not
|
boolean |
IsWithdrawnCondition.getResult(Context context,
Item item) |
Return true if item is withdrawn
Return false if not
|
boolean |
MetadataValueMatchCondition.getResult(Context context,
Item item) |
Return true if any value for a specified field in the item matches a specified regex pattern
Return false if not
|
boolean |
MetadataValuesMatchCondition.getResult(Context context,
Item item) |
Return true if any value for a specified field in the item matches any of the specified regex patterns
Return false if not
|
boolean |
ReadableByGroupCondition.getResult(Context context,
Item item) |
Return true if this item allows a specified action (eg READ, WRITE, ADD) by a specified group
|
void |
AbstractCondition.setParameters(Map<String,Object> parameters) |
Set parameters - used by Spring when creating beans from item-filters.xml
These could be any kind of map that the extending condition class needs for evaluation
|
void |
Condition.setParameters(Map<String,Object> parameters) |
Set parameters - used by Spring
|