Class IDEntry
- java.lang.Object
-
- edu.uiuc.ncsa.security.storage.monitored.upkeep.IDEntry
-
- All Implemented Interfaces:
RuleEntry
,UpkeepConstants
public class IDEntry extends Object implements RuleEntry
A single entry for checking an ID. It may be a regexCreated by Jeff Gaynor
on 2/16/24 at 9:28 AM
-
-
Field Summary
-
Fields inherited from interface edu.uiuc.ncsa.security.storage.monitored.upkeep.UpkeepConstants
ACTION_ARCHIVE, ACTION_DELETE, ACTION_NONE, ACTION_RETAIN, ACTION_TEST, TYPE_ACCESSED, TYPE_CREATED, TYPE_MODIFIED, WHEN_AFTER, WHEN_BEFORE, WHEN_NEVER
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
applies(Identifier id, Long created, Long accessed, Long modified)
boolean
applies(Monitored monitored)
String
getValue()
boolean
isNegation()
boolean
isRegex()
void
setNegation(boolean negation)
void
setRegex(boolean regex)
void
setValue(String value)
String
toString()
-
-
-
Constructor Detail
-
IDEntry
public IDEntry(boolean regex, String value)
-
-
Method Detail
-
applies
public boolean applies(Identifier id, Long created, Long accessed, Long modified)
-
isRegex
public boolean isRegex()
-
setRegex
public void setRegex(boolean regex)
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
isNegation
public boolean isNegation()
-
setNegation
public void setNegation(boolean negation)
-
-