Class Authz.QueryFilterRecord

  • Enclosing class:
    Authz

    public static class Authz.QueryFilterRecord
    extends java.lang.Object
    Query filter record. Either nested filter list or field filter.

    Example:

    
     Filter = {
         OPERATOR: QueryFilterOperator.AND,
         FILTER: [
             {
                 OPERATOR: QueryFilterOperator.EQ,
                 KEY: PrincipalRecord.NAME,
                 PrincipalRecord.NAME: "name1*",
             },
             {
                 OPERATOR: QueryFilterOperator.NOT,
                 FILTER: [
                     {
                         OPERATOR: QueryFilterOperator.EQ,
                         KEY: PrincipalRecord.DEPARTMENT,
                         PrincipalRecord.DEPARTMENT: "dept1",
                     },
                 ],
             },
         ],
     }
     
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait