Examples of createGroup()


Examples of org.gudy.azureus2.plugins.ui.model.BasicPluginConfigModel.createGroup()

          }
        });
      }
    });
   
    configModel.createGroup(
      "device.xcode.group",
      new Parameter[]
      {
          def_work_dir, max_xcode, btnITunes
      });
View Full Code Here

Examples of org.gudy.azureus2.plugins.ui.model.BasicPluginConfigModel.createGroup()

      configModel.addHyperlinkParameter2(
        "device.rss.view", device_manager.getRSSLink());
   
    rss_enable.addEnabledOnSelection( rss_view );
   
    configModel.createGroup(
      "device.rss.group",
      new Parameter[]
      {
          rss_enable, rss_view,
      });
View Full Code Here

Examples of org.gudy.azureus2.plugins.ui.model.BasicPluginConfigModel.createGroup()

        }
      });
   
    od_auto_enable.addEnabledOnSelection( od_pt_enable );
   
    configModel.createGroup(
      "device.od.group",
      new Parameter[]
      {
        od_enable, od_auto_enable, od_pt_enable,
      });
View Full Code Here

Examples of org.jabusuite.core.users.session.JbsUserGroupsRemote.createGroup()

            JbsUserGroupsRemote jbsUserGroups = (JbsUserGroupsRemote) ClientTools.getRemoteBean(JbsUserGroupsRemote.class);

            super.doSave();
            if (this.getDlgState() == DlgState.dsInsert) {
                System.out.println("Adding new entity");
                jbsUserGroups.createGroup(this.getUserGroup());
            } else if (this.getDlgState() == DlgState.dsEdit) {
                System.out.println("Saving existing entity " + this.getUserGroup().getId() + ".");
                jbsUserGroups.updateDataset(this.getUserGroup());
            }
            System.out.println("Entity saved.");
View Full Code Here

Examples of org.jahia.services.usermanager.JahiaGroupManagerService.createGroup()

                    site.setMixLanguagesActive(false);

                    // create default groups...
                    JahiaGroup usersGroup = jgms.lookupGroup(0, JahiaGroupManagerService.USERS_GROUPNAME);
                    if (usersGroup == null) {
                        usersGroup = jgms.createGroup(0, JahiaGroupManagerService.USERS_GROUPNAME, null, false);
                    }

                    JahiaGroup guestGroup = jgms.lookupGroup(0, JahiaGroupManagerService.GUEST_GROUPNAME);
                    if (guestGroup == null) {
                        guestGroup = jgms.createGroup(0, JahiaGroupManagerService.GUEST_GROUPNAME, null, false);
View Full Code Here

Examples of org.jbpm.pvm.internal.identity.spi.IdentitySession.createGroup()

    this.parentGroupId = parentGroupId;
  }

  public String execute(Environment environment) throws Exception {
    IdentitySession identitySession = environment.get(IdentitySession.class);
    return identitySession.createGroup(groupName, groupType, parentGroupId);
  }
}
View Full Code Here

Examples of org.jivesoftware.smack.Roster.createGroup()

                    if (groupName != null && !groupName.equals("")) {
                        RosterGroup newGroup = null;
                        newGroup = roster.getGroup(groupName);
                        if (newGroup == null) {
                            com.valhalla.Logger.debug("had to create new group" + groupName);
                            newGroup = roster.createGroup(groupName);
                        } else {
                            com.valhalla.Logger.debug("found group " + newGroup.getName());
                        }

                        if (c != 0) {
View Full Code Here

Examples of org.nemesis.forum.ProfileManager.createGroup()

       
        ForumFactory forumFactory = ForumFactory.getInstance(getAuthToken(request));
        ProfileManager manager = forumFactory.getProfileManager();
        User user = manager.getUser(getAuthToken(request).getUserID());
        try {
          Group newGroup = manager.createGroup(name);
          // add logged user as an administrator of the new group
          newGroup.addAdministrator(user);
          if( description != null ) {
            newGroup.setDescription( description );
          }
View Full Code Here

Examples of org.sonatype.nexus.test.utils.GroupMessageUtil.createGroup()

    resource.setFormat("maven2");
    resource.setId("emptygroup");
    resource.setName("emptygroup");
    resource.setProvider("maven2");

    resource = groupUtil.createGroup(resource);

    Assert.assertEquals(0, resource.getRepositories().size());
  }

  @Test
View Full Code Here

Examples of xregistry.impl.XregistryImpl.createGroup()

    public void testAddUser() throws Exception{
        GlobalContext globalContext = new GlobalContext(true);
        XregistryImpl registry = new XregistryImpl(globalContext);
       
        String user = "/C=US/O=National Center for Supercomputing Applications/CN=Hemapani Srinath Perera";
        registry.createGroup(user, "group1", "group1");
        registry.createGroup(user, "group2", "group1");
        registry.createUser(user, "user1", "User1");
        registry.createUser(user, "user2", "User1");
        registry.createUser(user, "user3", "User1");
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.