Package org.olat.group.properties

Examples of org.olat.group.properties.BusinessGroupPropertyManager


    } else if (event instanceof BusinessGroupModifiedEvent) {
      BusinessGroupModifiedEvent bgmfe = (BusinessGroupModifiedEvent) event;
      if (event.getCommand().equals(BusinessGroupModifiedEvent.CONFIGURATION_MODIFIED_EVENT)) {
        // reset business group property manager
        this.bgpm = new BusinessGroupPropertyManager(this.businessGroup);
        // update reference to update business group object
        this.businessGroup = BusinessGroupManagerImpl.getInstance().loadBusinessGroup(this.businessGroup);
        main.contextPut("BuddyGroup", this.businessGroup);
        TreeModel trMdl = buildTreeModel();
        bgTree.setTreeModel(trMdl);
View Full Code Here


   */
  public BusinessGroupSendToChooserForm(String name, Translator translator, BusinessGroup businessGroup, boolean isAdmin) {
    super(name, translator);
    this.businessGroup = businessGroup;
    // check 'members can see owners' and 'members can see participators'
    BusinessGroupPropertyManager bgpm = new BusinessGroupPropertyManager(businessGroup);
    this.showChooseOwners = bgpm.showOwners();
    this.showChoosePartips = bgpm.showPartips();
    this.isAdmin = isAdmin;
   
    Manager scrtMngr = ManagerFactory.getManager();
    VisibilityDependsOnSelectionRule rule;
   
View Full Code Here

TOP

Related Classes of org.olat.group.properties.BusinessGroupPropertyManager

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.