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.infoglue.cms.entities.management.Group

        return groupVOList;
      }

        public GroupVO create(GroupVO groupVO) throws ConstraintException, SystemException
        {
            Group group = new GroupImpl();
            group.setValueObject(groupVO);
            group = (Group) createEntity(group);
            return group.getValueObject();
        }    
    View Full Code Here

    Examples of org.j2cms.model.group.Group

            LinkedHashMap<String, String> orderby = new LinkedHashMap<String, String>();
          orderby.put(sortType==null?"id":sortType, "desc");
          if(selector.getGroup()!=null&&selector.getGroup().getId()!=null&&selector.getGroup().getId()!=0){
            if(params.size()>0) jpql.append(" and ");
            jpql.append(" o.group=?").append((params.size()+1));
            params.add(new Group(selector.getGroup().getId()));
          }
          if(selector.getGender()!=null &&!"".equals(selector.getGender())){
            if(params.size()>0) jpql.append(" and ");
            jpql.append(" o.gender=?").append((params.size()+1));
            params.add(selector.getGender());
    View Full Code Here

    Examples of org.japura.controller.Group

      }

      private String getGroupId(TaskExecutionUIEvent event) {
      TaskExecutor owner = event.getTaskOwner();
      if (owner instanceof Group) {
        Group group = (Group) owner;
        Controller c = group.getRootController();
        if (c != null && Application.getControllerManager().contains(c)) {
        return group.getId();
        }
      }
      return null;
      }
    View Full Code Here

    Examples of org.jayasoft.woj.common.model.Group

        DataSource getDataSource() {
            return DSManager.getInstance().getUserDS();
        }
       
        protected Object[] getInsertParameters(Object o) {
            Group g = (Group) o;
            List parameters = new ArrayList();
            parameters.add(new Long(g.getId()));
            parameters.add(g.getName());
            if (g.getParent()==null) {
                parameters.add(null);
            } else {
                parameters.add(new Long(g.getParent().getId()));
            }
            parameters.add(g.getWojServer());
            parameters.add(new Long(g.getCreationTime()));
            parameters.add(new Long(System.currentTimeMillis()));
            parameters.add(new Integer(g.getDedicatedSpace()));
            return parameters.toArray();
        }
    View Full Code Here

    Examples of org.jboss.identity.idm.api.Group

          checkNotNullArgument(roleTypeName, "RoleType name");
          checkNotNullArgument(userName, "User name");
          checkNotNullArgument(groupId, "Group Id");

          User user = createUserFromId(userName);
          Group group = createGroupFromId(groupId);

          return createRole(new SimpleRoleType(roleTypeName), user, group);
       }
    View Full Code Here

    Examples of org.jboss.soa.esb.services.security.principals.Group

      public void authenticateWithExistingRole() throws ConfigurationException, SecurityServiceException
      {
        Builder builder = new SecurityConfig.Builder("SuccessfulLogin");
        builder.runAs("adminRole");
        SecurityConfig configInfo = builder.build();
        Group group = new Group("Roles");
        group.addMember(new Role("adminRole1"));

        subject.getPrincipals().add(group);

        SecurityContext context = new SecurityContext(subject, SecurityContext.getConfigurationTimeout());
        service.authenticate(configInfo, context, null);
    View Full Code Here

    Examples of org.jbpm.api.identity.Group

            List<Group> results = new ArrayList<Group>();
            JahiaUser user = this.userService.lookupUserByKey(userId);
            if (user != null) {
                List<String> l = groupService.getUserMembership(user);
                for (String groupKey : l) {
                    Group groupById = findGroupById(groupKey);
                    if (groupById != null) {
                        results.add(groupById);
                    }
                }
            }
    View Full Code Here

    Examples of org.jbpm.identity.Group

        public void handleAction(JbpmJsfContext context, ActionEvent event) {
            try {
                final FacesContext facesContext = FacesContext.getCurrentInstance();
                final ELContext elContext = facesContext.getELContext();
                final Group group = (Group) groupExpression.getValue(elContext);
                context.getJbpmContext().getSession().delete(group);
                context.addSuccessMessage("Successfully deleted group");
            } catch (Exception ex) {
                context.setError("Failed to delete group", ex);
            }
    View Full Code Here

    Examples of org.jbpm.task.Group

       
            String groupId = (String) workItem.getParameter("GroupId");
        if (groupId != null && groupId.trim().length() > 0) {
          String[] groupIds = groupId.split(",");
          for (String id: groupIds) {
            potentialOwners.add(new Group(id.trim()));
          }
        }

            assignments.setPotentialOwners(potentialOwners);
        List<OrganizationalEntity> businessAdministrators = new ArrayList<OrganizationalEntity>();
    View Full Code Here

    Examples of org.jbpm.userprofile.Group

     
      public List<Group> getGroups() {
        List<OrganizationalEntity> members = new ArrayList<OrganizationalEntity>();
        members.add(new User());
       
        Group group = new Group();
        group.setMembers(members);

        List<Group> result = new ArrayList<Group>();
       
        result.add(group);
        return null;
    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.