com.contentgrid.thunx.predicates.model.BooleanOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thunx-model Show documentation
Show all versions of thunx-model Show documentation
Set of (vendor-neutral) data structures to model authorization policy expressions
package com.contentgrid.thunx.predicates.model;
/**
* predicates are expressions (or sets of expressions) combined with logical operators, and are evaluated as booleans
*/
public interface BooleanOperation extends FunctionExpression {
@Override
default Class extends Boolean> getResultType() {
return Boolean.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy