Class FilterCriteria
- java.lang.Object
-
- org.apache.manifoldcf.crawler.interfaces.FilterCriteria
-
public class FilterCriteria extends java.lang.ObjectClass which describes specification of history records to include in a report.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String_rcsidprotected java.lang.String[]activityTypesThe set of activities to match.protected java.lang.LongendTimeThe highest time of interest, plus 1.protected RegExpCriteriaentityMatchThe regular expression string to match the entity identifier.protected RegExpCriteriaresultCodeMatchThe regular expression string to match the resultcode.protected java.lang.LongstartTimeThe lowest time of interest.
-
Constructor Summary
Constructors Constructor Description FilterCriteria(java.lang.String[] activityTypes, java.lang.Long startTime, java.lang.Long endTime, RegExpCriteria entityMatch, RegExpCriteria resultCodeMatch)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String[]getActivities()Get the desired activities criteria.java.lang.LonggetEndTime()Get desired end time criteria.RegExpCriteriagetEntityMatch()Get the regular expression to match the entity identifier.RegExpCriteriagetResultCodeMatch()Get the regular expression to match the result code.java.lang.LonggetStartTime()Get desired start time criteria.
-
-
-
Field Detail
-
_rcsid
public static final java.lang.String _rcsid
- See Also:
- Constant Field Values
-
activityTypes
protected java.lang.String[] activityTypes
The set of activities to match.
-
startTime
protected java.lang.Long startTime
The lowest time of interest.
-
endTime
protected java.lang.Long endTime
The highest time of interest, plus 1.
-
entityMatch
protected RegExpCriteria entityMatch
The regular expression string to match the entity identifier.
-
resultCodeMatch
protected RegExpCriteria resultCodeMatch
The regular expression string to match the resultcode.
-
-
Constructor Detail
-
FilterCriteria
public FilterCriteria(java.lang.String[] activityTypes, java.lang.Long startTime, java.lang.Long endTime, RegExpCriteria entityMatch, RegExpCriteria resultCodeMatch)Constructor.
-
-
Method Detail
-
getActivities
public java.lang.String[] getActivities()
Get the desired activities criteria.
-
getStartTime
public java.lang.Long getStartTime()
Get desired start time criteria.
-
getEndTime
public java.lang.Long getEndTime()
Get desired end time criteria.
-
getEntityMatch
public RegExpCriteria getEntityMatch()
Get the regular expression to match the entity identifier.
-
getResultCodeMatch
public RegExpCriteria getResultCodeMatch()
Get the regular expression to match the result code.
-
-