Examples of Group

@author Robert "kebernet" Cooper
  • org.sbml.jsbml.ext.groups.Group
    @author Nicolas Rodriguez @author Clemens Wrzodek @since 1.0 @version $Rev: 1639 $
  • org.sbml.jsbml.ext.render.Group
    @author Eugen Netz @author Alexander Diamantikos @author Jakob Matthes @author Jan Rudolph @version $Rev: 1639 $ @since 1.0 @date 08.05.2012
  • org.springframework.data.neo4j.Group
  • org.springframework.data.neo4j.aspects.Group
  • org.springframework.data.neo4j.model.Group
  • org.structr.core.entity.Group
    @author amorgner
  • org.uberfire.backend.group.Group
  • org.voltdb.catalog.Group
  • org.wildfly.clustering.group.Group
    Represents a groups of nodes. @author Paul Ferraro
  • org.xith3d.scenegraph.Group
  • org.zkoss.zul.Group
    Adds the ability for single level grouping to the Grid.

    Available in ZK PE and EE.

    Event:

    1. onOpen is sent when this listgroup is opened or closed by user.

    Default {@link #getZclass}: z-group.

    Note: All the child of this component are automatically applied the group-cell CSS, if you don't want this CSS, you can invoke the {@link Label#setSclass(String)}after the child added. @author jumperchen @since 3.5.0

  • project.entities.institute.Group
  • projectatlast.group.Group
  • quickfix.Group
  • ro.isdc.wro.model.group.Group
    A group is an entity holding a list of resources.

    This class is thread safe. @author Alex Objelean @created Created on Oct 30, 2008

  • ru.org.linux.group.Group
  • simpleserver.config.xml.Group
  • sk.netmap.bo.Group
    BO group of servers @author Matej Zachar, $Date: 2006-04-23 20:42:47 +0000 (Ne, 23 apr 2006) $
  • storm.trident.graph.Group
  • tripleplay.ui.Group
    A grouping element that contains other elements and lays them out according to a layout policy.
  • ua.ck.geekhub.entity.Group
    Created by Vladimir on 3/11/14.
  • ucar.nc2.Group
    A Group is a logical collection of Variables. The Groups in a Dataset form a hierarchical tree, like directories on a disk. A Group has a name and optionally a set of Attributes. There is always at least one Group in a dataset, the root Group, whose name is the empty string.

    Immutable if setImmutable() was called. @author caron

  • xregistry.group.Group
    Represent a Group, group may have Users and child groups. The symantics of child groups are resolved by assuming of foo is in G1 and G1 is in G2, it is same as foo is in G1 (G1,G2 are groups and foo is a user). @author Srinath Perera(hperera@cs.indiana.edu)
  • zendeskapi.models.groups.Group
    @author jgroth

  • Examples of com.eaglegenomics.simlims.core.Group

        return new UserImpl();
      }

      @Override
      public Group getGroup() {
        return new Group();
      }
    View Full Code Here

    Examples of com.ecyrd.jspwiki.auth.authorize.Group

            GroupManager manager = m_engine.getGroupManager();
            SecurityEventTrap trap = new SecurityEventTrap();
            manager.addWikiEventListener( trap );

            // Create two groups; one with Janne in it, and one without
            Group groupTest1 = m_groupMgr.parseGroup( "Test1", "JanneJalkanen \n Bob \n Charlie", true );
            m_groupMgr.setGroup( m_session, groupTest1 );
            groupTest1 = m_groupMgr.getGroup( "Test1" );
            Principal principalTest1 = groupTest1.getPrincipal();

            Group groupTest2 = m_groupMgr.parseGroup( "Test2", "Alice \n Bob \n Charlie", true );
            m_groupMgr.setGroup( m_session, groupTest2 );
            groupTest2 = m_groupMgr.getGroup( "Test2" );
            Principal principalTest2 = groupTest2.getPrincipal();

            // We should see two security events (one for each group create)
            // We should also see a GroupPrincipal for group Test1, but not Test2
            assertEquals( 2, trap.events().length );
            assertTrue( session.hasPrincipal( principalTest1 ) );
            assertFalse( session.hasPrincipal( principalTest2 ) );

            // If we remove Test1, the GroupPrincipal should disappear
            m_groupMgr.removeGroup( "Test1" );
            assertFalse( session.hasPrincipal( principalTest1 ) );
            assertFalse( session.hasPrincipal( principalTest2 ) );

            // Now, add 'JanneJalkanen' to Test2 group manually; we should see the
            // GroupPrincipal
            groupTest2.add( new WikiPrincipal( "JanneJalkanen" ) );
            m_groupMgr.setGroup( session, groupTest2 );
            assertFalse( session.hasPrincipal( principalTest1 ) );
            assertTrue( session.hasPrincipal( principalTest2 ) );

            // Remove 'JanneJalkenen' manually; the GroupPrincipal should disappear
            groupTest2.remove( new WikiPrincipal( "JanneJalkanen" ) );
            m_groupMgr.setGroup( session, groupTest2 );
            assertFalse( session.hasPrincipal( principalTest1 ) );
            assertFalse( session.hasPrincipal( principalTest2 ) );

            // Clean up
    View Full Code Here

    Examples of com.esri.gpt.framework.security.principal.Group

    public void readUserGroups(User user)
      throws IdentityException, NamingException, SQLException {
      if ((user != null) && (user.getDistinguishedName().equalsIgnoreCase(getDN()))) {
        Roles cfgRoles = getApplicationConfiguration().getIdentityConfiguration().getConfiguredRoles();
        for (Role role: cfgRoles.values()) {
          Group group = new Group();
          group.setDistinguishedName(role.getKey());
          group.setKey(role.getKey());
          group.setName(role.getKey());
          user.getGroups().add(group);
        }
      }
    }
    View Full Code Here

    Examples of com.filenet.api.security.Group

      public static IUser createUserWithShortName(String shortName) {
        String userName = shortName + "@" + TestConnection.domain;
        String distinguishedName = getDistinguishedName(userName);

        Map<String,Group> groups = new HashMap<String,Group>();
        Group everyone = createEveryoneGroup();
        groups.put(everyone.get_Name(), everyone);

        FileUserMock user = new FileUserMock(shortName, userName, distinguishedName,
            userName, groups);
        return user;
      }
    View Full Code Here

    Examples of com.foundationdb.ais.model.Group

                                                       AISValidationOutput output) {
            if (!(object instanceof Group)) {
                output.reportFailure(new AISValidationFailure(new StorageDescriptionInvalidException(object, "is not a Group and cannot use Protocol Buffers")));
                return null;
            }
            Group group = (Group)object;
            if (formatType == ProtobufRowFormat.Type.SINGLE_TABLE) {
                if (!group.getRoot().getChildJoins().isEmpty()) {
                    output.reportFailure(new AISValidationFailure(new StorageDescriptionInvalidException(object, "has more than one table")));
                    return null;
                }
            }
            int currentVersion = sumTableVersions(group.getRoot());
            if (fileProto != null) {
                int storedVersion = fileProto.getOptions()
                    .getExtension(CustomOptions.GroupOptions.fdbsql).getVersion();
                if (storedVersion == currentVersion) {
                    return fileProto;
    View Full Code Here

    Examples of com.foxconn.gds.security.model.Group

              acc = new UserAccount(i + "-acc-" + j, "Foxconn88");
              acc.setProfile(pfl);
              //accMgr.createUserAccount(acc);
             
              //同時創建一個組與account相同,並將此account加到此組中
              Group group = new Group(acc.getAccount());
              accMgr.createGroup(group);
             
              //
              UserGroup userGroup = new UserGroup(acc, group);
              Collection<UserGroup> inGroups = new ArrayList<UserGroup>();
    View Full Code Here

    Examples of com.github.dactiv.showcase.entity.account.Group

       
        List<Group> result = new ArrayList<Group>();
       
        for (Group r : list) {
          if (r.getParent() == null) {
            Group temp = new Group();
            BeanUtils.copyProperties(r, temp);
            mergeToParent(list,temp);
            result.add(temp);
          }
        }
    View Full Code Here

    Examples of com.github.sardine.model.Group

        HttpPropFind entity = new HttpPropFind(url);
        entity.setDepth("0");
        Propfind body = new Propfind();
        Prop prop = new Prop();
        prop.setOwner(new Owner());
        prop.setGroup(new Group());
        prop.setAcl(new Acl());
        body.setProp(prop);
        entity.setEntity(new StringEntity(SardineUtil.toXml(body), UTF_8));
        Multistatus multistatus = this.execute(entity, new MultiStatusResponseHandler());
        List<Response> responses = multistatus.getResponse();
    View Full Code Here

    Examples of com.google.appengine.tools.pipeline.impl.backend.UpdateSpec.Group

        // Register the newly created objects with the UpdateSpec.
        // The slots in the run Barrier have already been registered
        // and the finalize Barrier doesn't have any slots yet.
        // Any HandleSlotFilledTasks have also been registered already.
        Group updateGroup = updateSpec.getNonTransactionalGroup();
        updateGroup.includeBarrier(jobRecord.getRunBarrierInflated());
        updateGroup.includeBarrier(jobRecord.getFinalizeBarrierInflated());
        updateGroup.includeSlot(jobRecord.getOutputSlotInflated());
        updateGroup.includeJob(jobRecord);
        updateGroup.includeJobInstanceRecord(jobRecord.getJobInstanceInflated());

        return jobRecord;
      }
    View Full Code Here

    Examples of com.google.eclipse.protobuf.protobuf.Group

      // import "types.proto";
      //
      // extend .google.proto.test.TopMessage.MidGroup.BottomGroup {}
      @Test public void should_extend_group_inside_group() {
        ExtensibleTypeLink link = xtext.find("BottomGroup", " {", ExtensibleTypeLink.class);
        Group group = (Group) link.getTarget();
        assertThat(group.getName(), equalTo("BottomGroup"));
      }
    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.