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.opensymphony.module.user.Group

      UserManager um = UserManager.getInstance();

      if (request.getParameter("addGroup") != null)
      {
        Group newgroup = um.createGroup(request.getParameter("name"));
      }
      else if (request.getParameter("delGroup") != null)
      {
        Group removegroup = um.getGroup(request.getParameter("delGroup"));
        removegroup.remove();
      }
          out.write("\r\n\r\n");
          out.write("<h1>Groups");
          out.write("</h1>\r\n");
          out.write("<hr>\r\n");
          out.write("<ol>\r\n");

      Collection groups = um.getGroups();
      for (Iterator iterator = groups.iterator(); iterator.hasNext();)
      {
        Group group = (Group) iterator.next();
              out.write("\r\n\t\t");
          out.write("<li>");
          out.print( group.getName() );
          out.write(" [");
          out.write("<a href=\"viewgroup.jsp?name=");
          out.print( URLEncoder.encode(group.getName()) );
          out.write("\">View");
          out.write("</a> | ");
          out.write("<a href=\"groups.jsp?delGroup=");
          out.print( URLEncoder.encode(group.getName()) );
          out.write("\">Del");
          out.write("</a>]");
          out.write("</li>\r\n\t\t");

      }
    View Full Code Here

    Examples of com.opensymphony.user.Group

      private boolean isBuildable(String user) {
        UserManager userManager = UserManager.getInstance();
        try {
          for (Iterator i = userManager.getGroups().iterator(); i.hasNext();) {
            Group g = (Group) i.next();
            if (g.containsUser(dto.getName()) && g.containsUser(user))
              return true;
          }
        } catch (Exception e) {
          log.warn("error while checking if " + user + " has access to build " + dto.getName(), e);
        }
    View Full Code Here

    Examples of com.overmc.overpermissions.Group

            return value;
        }

        @Override
        public void setGroupInfoString(String world, String groupName, String node, String value) {
            Group group = overPerms.getGroupManager().getGroup(groupName);
            if (group == null) {
                return;
            }
            group.setMeta(node, value);
            group.recalculatePermissions();
        }
    View Full Code Here

    Examples of com.platymuus.bukkit.permissions.Group

                        return g.getInfo().getWorlds().contains(world);
                    }
                }
                return false;
            }
            Group g = perms.getGroup(group);
            if (g == null) {
                return false;
            }
            return g.getPlayers().contains(player);
        }
    View Full Code Here

    Examples of com.saasovation.identityaccess.domain.model.identity.Group

        public void testUserIsInRole() throws Exception {
            Tenant tenant = this.tenantAggregate();
            User user = this.userAggregate();
            DomainRegistry.userRepository().add(user);
            Role managerRole = tenant.provisionRole("Manager", "A manager role.", true);
            Group group = new Group(user.tenantId(), "Managers", "A group of managers.");
            DomainRegistry.groupRepository().add(group);
            managerRole.assignGroup(group, DomainRegistry.groupMemberService());
            DomainRegistry.roleRepository().add(managerRole);
            group.addUser(user);

            assertTrue(group.isMember(user, DomainRegistry.groupMemberService()));
            assertTrue(managerRole.isInRole(user, DomainRegistry.groupMemberService()));
        }
    View Full Code Here

    Examples of com.sishuok.es.sys.group.entity.Group

        @Autowired
        private OrganizationService organizationService;

        @Test
        public void testClearDeletedGroupRelation() {
            Group group = new Group();
            group.setType(GroupType.organization);
            group.setShow(false);
            group.setName("123");
            groupService.save(group);

            Organization organization1 = new Organization();
            organization1.setName("test1");
            Organization organization2 = new Organization();
            organization2.setName("test2");
            organizationService.save(organization1);
            organizationService.save(organization2);

            GroupRelation groupRelation1 = new GroupRelation();
            groupRelation1.setGroupId(group.getId());
            groupRelation1.setOrganizationId(organization1.getId());
            GroupRelation groupRelation2 = new GroupRelation();
            groupRelation2.setGroupId(group.getId());
            groupRelation2.setOrganizationId(organization2.getId());

            groupRelationService.save(groupRelation1);
            groupRelationService.save(groupRelation2);

            Searchable searchable = Searchable.newSearchable();
            searchable.addSearchFilter("groupId", SearchOperator.eq, group.getId());
            Assert.assertEquals(2, groupRelationService.count());

            organizationService.delete(organization1);

            groupClearRelationTask.clearDeletedGroupRelation();
    View Full Code Here

    Examples of com.sparc.knappsack.components.entities.Group

            when(mockImageValidator.isValidImageSize(Matchers.any(MultipartFile.class), Matchers.anyLong())).thenReturn(true);
            when(mockImageValidator.isValidImageType(Matchers.any(MultipartFile.class))).thenReturn(true);
            when(mockImageValidator.isValidMinDimensions(Matchers.any(BufferedImage.class), Matchers.anyLong(), Matchers.anyLong())).thenReturn(true);
            when(mockImageValidator.isSquare(Matchers.any(BufferedImage.class))).thenReturn(true);
            when(mockUserService.getUserFromSecurityContext()).thenReturn(user);
            when(mockGroupService.get(anyLong())).thenReturn(new Group());
            doNothing().when(mockApplicationVersionValidator).validateVersionName(any(Errors.class), any(ApplicationVersionForm.class));
            doNothing().when(mockApplicationVersionValidator).validateRecentChanges(any(Errors.class), any(ApplicationVersionForm.class));
            doNothing().when(mockApplicationVersionValidator).validateOrganizationLimits(any(Errors.class), any(ApplicationVersionForm.class), any(Application.class), any(Organization.class));
            doNothing().when(mockApplicationVersionValidator).validateInstallFile(any(Errors.class), any(ApplicationVersionForm.class), any(ApplicationType.class));
            doNothing().when(mockApplicationVersionValidator).validateResign(any(ApplicationVersionForm.class), any(Group.class), any(ApplicationType.class), any(Errors.class));
    View Full Code Here

    Examples of com.stripbandunk.tutorial.simpleapp.entity.Group

        @Test
        public void testProcessCreate() {
            Long size = repository.count();

            Group group = new Group();
            group.setName("Administrator");

            controller.processCreate(group);

            Assert.assertNotNull(group.getId());
            Assert.assertNotNull(group.getCreatedDate());
            Assert.assertNotNull(group.getLastModifiedDate());

            if (size == repository.count()) {
                Assert.fail();
            }
    View Full Code Here

    Examples of com.sun.enterprise.admin.servermgmt.xml.stringsubs.Group

                throws StringSubstitutionException {
            if (!isValid(groups)) {
                throw new StringSubstitutionException(_strings.get("missingGroupIdentifiers"));
            }
            for (String groupId : groups) {
                Group group = findGroupById(groupId);
                if (group == null) {
                    _logger.log(Level.WARNING, _strings.get("missingGroup", groupId));
                    continue;
                }
                doSubstitution(group);
    View Full Code Here

    Examples of com.sun.enterprise.deployment.Group

            /* populate the group in the subject and clean out the slate at the same
             * time
             */
            for(int i = 0; i<_groupsList.length; i++){
                if(_groupsList[i] != null){
                    Group g =
                        PrincipalGroupFactory.getGroupInstance(_groupsList[i], realm_name);
                    if(!principalSet.contains(g)){
                        principalSet.add(g);
                    }
                   
    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.