Uses of Class
org.casbin.jcasbin.main.EnforceResult

Packages that use EnforceResult
Package
Description
 
  • Uses of EnforceResult in org.casbin.jcasbin.main

    Methods in org.casbin.jcasbin.main that return EnforceResult
    Modifier and Type
    Method
    Description
    CoreEnforcer.enforce(String matcher, Object... rvals)
    enforce use a custom matcher to decide whether a "subject" can access a "object" with the operation "action", input parameters are usually: (matcher, explain, sub, obj, act), use model matcher by default when matcher is "" or null.
    CoreEnforcer.enforceEx(Object... rvals)
    enforceEx decides whether a "subject" can access "object" with the operation "action", input parameters are usually: (sub, obj, act).
    SyncedEnforcer.enforceEx(Object... rvals)
    enforceEx decides whether a "subject" can access "object" with the operation "action", input parameters are usually: (sub, obj, act).
    CoreEnforcer.enforceExWithMatcher(String matcher, Object... rvals)
    enforceExWithMatcher use a custom matcher to decide whether a "subject" can access a "object" with the operation "action", input parameters are usually: (matcher, sub, obj, act), use model matcher by default when matcher is "" or null.
    SyncedEnforcer.enforceExWithMatcher(String matcher, Object... rvals)
    enforceExWithMatcher use a custom matcher to decide whether a "subject" can access a "object" with the operation "action", input parameters are usually: (matcher, sub, obj, act), use model matcher by default when matcher is "" or null.