Package org.olat.admin.policy

Examples of org.olat.admin.policy.PolicyController


      userTabP.addTab(translate(NLS_EDIT_UPROP), propertiesCtr.getInitialComponent());
    }
   
    Boolean canPolicies = (Boolean) configuration.get(BaseSecurityModule.CONFIG_USERMANAGER_ACCESS_TO_POLICIES);
    if (canPolicies.booleanValue() || isOlatAdmin) {
      policiesCtr = new PolicyController(ureq, getWindowControl(), identity);
      userTabP.addTab(translate(NLS_EDIT_UPOLICIES), policiesCtr.getInitialComponent());
    }
   
    Boolean canStartGroups = (Boolean) configuration.get(BaseSecurityModule.CONFIG_USERMANAGER_CAN_START_GROUPS);
    grpCtr = new GroupOverviewController(ureq, getWindowControl(), identity, canStartGroups);
View Full Code Here

TOP

Related Classes of org.olat.admin.policy.PolicyController

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.