public class EnumWhiteListRule extends PerformanceCareRule implements FUSRegexpAwareRule
EMPTY_ARRAY, FALSE, TRUE
Constructor and Description |
---|
EnumWhiteListRule(java.util.Collection<java.lang.String> strings) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
asRegexp() |
ValidationResultType |
doValidate(java.lang.String data,
EventContext context)
Validates event id and event data before recording it locally.
|
boolean |
isValidRule() |
java.lang.String |
toString() |
validate
public EnumWhiteListRule(java.util.Collection<java.lang.String> strings)
public ValidationResultType doValidate(java.lang.String data, EventContext context)
PerformanceCareRule
Validates event id and event data before recording it locally. Used to ensure that no personal or proprietary data is recorded.
ValidationResultType.ACCEPTED
- data is checked and should be recorded as is;ValidationResultType.THIRD_PARTY
- data is correct but is implemented in an unknown third-party plugin, e.g. third-party file typePluginInfo#isDevelopedByJetBrains()
, PluginInfo#isSafeToReport()
;ValidationResultType.REJECTED
- unexpected data, e.g. cannot find run-configuration by provided id;doValidate
in class PerformanceCareRule
data
- what is validated. Event id or the value of event data field.context
- whole event context, i.e. both event id and event data.public java.lang.String asRegexp()
asRegexp
in interface FUSRegexpAwareRule
public java.lang.String toString()
toString
in class java.lang.Object
public boolean isValidRule()
isValidRule
in interface FUSRule