Class RuleExpression
- java.lang.Object
-
- io.vertigo.account.authorization.definitions.rulemodel.RuleExpression
-
public final class RuleExpression extends Object
Single Expression Definition. (field)(operator)(value)- Author:
- npiedeloup
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RuleExpression.ValueOperator
All authorized operators.
-
Constructor Summary
Constructors Constructor Description RuleExpression(String fieldName, RuleExpression.ValueOperator operator, RuleValue value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFieldName()
RuleExpression.ValueOperator
getOperator()
RuleValue
getValue()
String
toString()
-
-
-
Constructor Detail
-
RuleExpression
public RuleExpression(String fieldName, RuleExpression.ValueOperator operator, RuleValue value)
- Parameters:
fieldName
- FieldNameoperator
- OperatorDefinitionvalue
- QueryDefinition
-
-