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 org.apache.bval.jsr303.groups.Group

    * @author Roman Stumm
    */
    public class DefaultGroupSequenceTest extends TestCase {
        public void testAssertDefaultGroupSequenceIsExpandableWithDefaultAtEndOfSequence() {
            // create a dummy sequence
            Group a = new Group(GroupA.class);
            Group b = new Group(GroupB.class);
            Group c = new Group(GroupC.class);
            Group defaultGroup = new Group(Default.class);
            List<Group> sequence = new ArrayList<Group>();
            sequence.add(a);
            sequence.add(b);
            sequence.add(c);
            sequence.add(defaultGroup);

            Groups chain = new Groups();
            chain.insertSequence(sequence);

            // create test default sequence
            List<Group> defaultSequence = new ArrayList<Group>();
            defaultSequence.add(Group.DEFAULT);
            defaultSequence.add(new Group(GroupA.class));
            try {
                chain.assertDefaultGroupSequenceIsExpandable(defaultSequence);
                fail();
            } catch (GroupDefinitionException e) {
                // success
            }

            defaultSequence.clear();
            defaultSequence.add(new Group(GroupA.class));
            defaultSequence.add(new Group(Default.class));
            try {
                chain.assertDefaultGroupSequenceIsExpandable(defaultSequence);
                fail();
            } catch (GroupDefinitionException e) {
                // success
            }

            defaultSequence.clear();
            defaultSequence.add(Group.DEFAULT);
            defaultSequence.add(new Group(GroupC.class));
            try {
                chain.assertDefaultGroupSequenceIsExpandable(defaultSequence);
                fail();
            } catch (GroupDefinitionException e) {
                // success
            }

            defaultSequence.clear();
            defaultSequence.add(new Group(GroupC.class));
            defaultSequence.add(Group.DEFAULT);
            chain.assertDefaultGroupSequenceIsExpandable(defaultSequence);
        }
    View Full Code Here

    Examples of org.apache.catalina.Group

        public void removeRole(Role role) {

            synchronized (roles) {
                Iterator<Group> groups = getGroups();
                while (groups.hasNext()) {
                    Group group = groups.next();
                    group.removeRole(role);
                }
                Iterator<User> users = getUsers();
                while (users.hasNext()) {
                    User user = users.next();
                    user.removeRole(role);
    View Full Code Here

    Examples of org.apache.cayenne.testdo.inheritance_flat.Group

        public void testGroupActions() throws Exception {

            User user = context.newObject(User.class);
            user.setName("test_user");

            Group group1 = context.newObject(Group.class);
            group1.setName("test_group1");

            Group group2 = context.newObject(Group.class);
            group2.setName("test_group2");

            group1.addToGroupMembers(user);
            group2.addToGroupMembers(group1);

            group2.getObjectContext().commitChanges();

            // Per CAY-1379 removing user and then refetching resulted in a FFE downstream
            group1.removeFromGroupMembers(user);
            Expression exp = ExpressionFactory.matchExp(Role.ROLE_GROUPS_PROPERTY, group2);
            SelectQuery query = new SelectQuery(Group.class, exp);
    View Full Code Here

    Examples of org.apache.cocoon.forms.formmodel.Group

         * Narrows the scope on the form-model to the member widget-field, and
         * narrows the scope on the object-model to the member xpath-context
         * before continuing the binding over the child-bindings.
         */
        public void doLoad(Widget frmModel, JXPathContext jxpc) throws BindingException {
            Group groupWidget = (Group)selectWidget(frmModel, this.widgetId);
            super.doLoad(groupWidget, jxpc);
        }
    View Full Code Here

    Examples of org.apache.commons.cli2.Group

        Option outputOpt = obuilder.withLongName("output").withRequired(true).withArgument(
          abuilder.withName("output").withMinimum(1).withMaximum(1).create()).withDescription(
          "The output directory").withShortName("o").create();
       
       
        Group group = gbuilder.withName("Options").withOption(helpOpt).withOption(
            inputDirOpt).withOption(outputOpt).create();
       
        //.withOption(gramSizeOpt).withOption(typeOpt)
       
        try {
    View Full Code Here

    Examples of org.apache.fulcrum.intake.model.Group

                    if (foundGroups != null)
                    {
                        for (Iterator iter = foundGroups.iterator();
                             iter.hasNext();)
                        {
                            Group group = (Group) iter.next();
                            groups.put(group.getObjectKey(), group);
                        }
                    }
                }
                catch (IntakeException e)
                {
    View Full Code Here

    Examples of org.apache.hadoop.fs.shell.find.Group

        conf = fs.getConf();
        fileStatus = mock(FileStatus.class);
        fs.setFileStatus("test", fileStatus);
        item = new PathData("/one/two/test", conf);

        group = new Group();
        addArgument(group, "group");
        group.initialise(new FindOptions());
      }
    View Full Code Here

    Examples of org.apache.hadoop.mapred.Counters.Group

              if (counters == null) {
                System.out.println("Counters not available for retired job " +
                    jobid);
                exitCode = -1;
              } else {
                Group group = counters.getGroup(counterGroupName);
                Counter counter = group.getCounterForName(counterName);
                System.out.println(counter.getCounter());
                exitCode = 0;
              }
            }
          } else if (killJob) {
    View Full Code Here

    Examples of org.apache.hadoop.security.Group

              for (String user : acl.getUsers()) {
                addPermission(newPermissions, new User(user), service.getPermission());
              }

              for (String group : acl.getGroups()) {
                addPermission(newPermissions, new Group(group), service.getPermission());
              }
            }
          }
        }
    View Full Code Here

    Examples of org.apache.jackrabbit.api.security.user.Group

            // remove_child_node privilege is missing on the direct ancestor.
            assertFalse(testSession.hasPermission(gcPath, Session.ACTION_REMOVE));
        }

        public void testInheritedGroupPermissions() throws NotExecutableException, RepositoryException {
            Group testGroup = getTestGroup();
            AccessControlManager testAcMgr = getTestACManager();
            /*
             precondition:
             testuser must have READ-only permission on test-node and below
            */
            checkReadOnly(path);

            Privilege[] privileges = privilegesFromName(Privilege.JCR_MODIFY_PROPERTIES);

            /* give MODIFY_PROPERTIES privilege for testGroup at 'path' */
            givePrivileges(path, testGroup.getPrincipal(), privileges, getRestrictions(superuser, path));
            /*
             withdraw MODIFY_PROPERTIES privilege for everyone at 'childNPath'
             */
            withdrawPrivileges(childNPath, EveryonePrincipal.getInstance(), privileges, getRestrictions(superuser, path));

    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.