All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.contentgrid.thunx.predicates.model.BooleanOperation Maven / Gradle / Ivy

Go to download

Set of (vendor-neutral) data structures to model authorization policy expressions

There is a newer version: 0.11.0
Show newest version
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 getResultType() {
        return Boolean.class;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy