use of org.pentaho.platform.engine.security.acls.PentahoAclEntry in project pentaho-platform by pentaho.
the class PentahoAllowAllAclVoter method getEffectiveAcl.
public IPentahoAclEntry getEffectiveAcl(final IPentahoSession session, final IAclHolder holder) {
IPentahoAclEntry rtn = new PentahoAclEntry();
rtn.setMask(IPentahoAclEntry.PERM_FULL_CONTROL);
return rtn;
}
Aggregations