Package org.ejbca.core.model.authorization

Examples of org.ejbca.core.model.authorization.BasicAccessRuleSetDecoder


    return list;
  }

  /** Save the current state of the access rules and invalidate caches */
  public void saveAccessRules() {
    BasicAccessRuleSetDecoder barsd = new BasicAccessRuleSetDecoder(currentRole, currentCAs, currentEndEntityRules, currentEndEntityProfiles, currentOtherRules);
    try {
      getAuthorizationDataHandler().replaceAccessRules(getCurrentAdminGroup(), barsd.getCurrentAdvancedRuleSet());
    } catch (AuthorizationDeniedException e) {
      addErrorMessage("AUTHORIZATIONDENIED");
    }
    basicAccessRuleSetEncoderCache = null// We want this to be re-read
    getEjbcaWebBean().getInformationMemory().administrativePriviledgesEdited();
View Full Code Here

TOP

Related Classes of org.ejbca.core.model.authorization.BasicAccessRuleSetDecoder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.