Examples of GroupType


Examples of com.vmware.bdd.apitypes.GroupType

         ngEntity.setNodeType(instanceType);
      } else {
         logger.debug("instance type is " + instanceType.toString());
      }
      if (group.getStorage().getSizeGB() <= 0) {
         GroupType groupType = null;
         if (softwareManager.hasMgmtRole(group.getRoles())) {
            groupType = GroupType.MANAGEMENTGROUP;
         } else {
            groupType = GroupType.WORKGROUP;
         }
View Full Code Here

Examples of de.tobject.findbugs.view.explorer.GroupType

        }
        id = id.substring(ACTION_ID_PREFIX.length());
        String[] typesArr = id.split("\\.");
        List<GroupType> types = new ArrayList<GroupType>();
        for (String string : typesArr) {
            GroupType type = GroupType.valueOf(string);
            types.add(type);
        }
        return Grouping.createFrom(types);
    }
View Full Code Here

Examples of gov.nist.checklists.xccdf.x11.GroupType

                XmlObject xmlObject = cursor.getObject();
                if (SelectableItemType.type.isAssignableFrom(xmlObject.schemaType())) {
                    SelectableItemType item = (SelectableItemType) xmlObject;

                    if (item instanceof GroupType) {
                        GroupType node = (GroupType) item;
                  GroupImpl group = new GroupImpl(node, this);
                  addGroupInternal(group);
                    } else if (item instanceof RuleType) {
                      RuleType node = (RuleType) item;
                  RuleImpl rule = new RuleImpl(node, this);
View Full Code Here

Examples of gov.nist.checklists.xccdf.x11.GroupType

                XmlObject xmlObject = cursor.getObject();
                if (SelectableItemType.type.isAssignableFrom(xmlObject.schemaType())) {
                    SelectableItemType item = (SelectableItemType) xmlObject;

                    if (item instanceof GroupType) {
                        GroupType node = (GroupType) item;
                  GroupImpl group = new GroupImpl(node, this);
                  addGroupInternal(group);
                    } else if (item instanceof RuleType) {
                      RuleType node = (RuleType) item;
                  RuleImpl rule = new RuleImpl(node, this);
View Full Code Here

Examples of gov.nist.checklists.xccdf.x12.GroupType

                XmlObject xmlObject = cursor.getObject();
                if (SelectableItemType.type.isAssignableFrom(xmlObject.schemaType())) {
                    SelectableItemType item = (SelectableItemType) xmlObject;

                    if (item instanceof GroupType) {
                        GroupType node = (GroupType) item;
                  GroupImpl group = new GroupImpl(node, this);
                  addGroupInternal(group);
                    } else if (item instanceof RuleType) {
                      RuleType node = (RuleType) item;
                  RuleImpl rule = new RuleImpl(node, this);
View Full Code Here

Examples of gov.nist.checklists.xccdf.x12.GroupType

                XmlObject xmlObject = cursor.getObject();
                if (SelectableItemType.type.isAssignableFrom(xmlObject.schemaType())) {
                    SelectableItemType item = (SelectableItemType) xmlObject;

                    if (item instanceof GroupType) {
                        GroupType node = (GroupType) item;
                  GroupImpl group = new GroupImpl(node, this);
                  addGroupInternal(group);
                    } else if (item instanceof RuleType) {
                      RuleType node = (RuleType) item;
                  RuleImpl rule = new RuleImpl(node, this);
View Full Code Here

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

      return new SimpleIdentity(identityObject.getName(), identityObject.getId());
   }

   protected Group createGroup(IdentityObject identityObject)
   {
      GroupType groupType = getSessionContext().getIdentityObjectTypeMapper().getGroupType(identityObject.getIdentityType());
      return new SimpleGroup(identityObject.getName(), identityObject.getId(), groupType);
   }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.wizard.model.GroupType

    final GroupDefinition[] groupDefinitions = wizardSpecification.getGroupDefinitions();
    for (int i = 0; i < groupDefinitions.length; i++)
    {
      final GroupDefinition groupDefinition = groupDefinitions[i];
      final GroupType type = groupDefinition.getGroupType();
      if (type != null && GroupType.RELATIONAL.equals(type) == false)
      {
        continue;
      }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.wizard.model.GroupType

  {
    final GroupDefinition[] groupDefinitions = wizardSpecification.getGroupDefinitions();
    for (int i = 0; i < groupDefinitions.length; i++)
    {
      final GroupDefinition groupDefinition = groupDefinitions[i];
      final GroupType groupType = groupDefinition.getGroupType();
      if (GroupType.CT_COLUMN.equals(groupType) ||
          GroupType.CT_ROW.equals(groupType))
      {
        return true;
      }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.wizard.model.GroupType

      final String groupTotalsLabel = definition.getGroupTotalsLabel();
      if (groupTotalsLabel != null)
      {
        attList.setAttribute(WizardCoreModule.NAMESPACE, "group-totals-label", String.valueOf(groupTotalsLabel));
      }
      final GroupType groupType = definition.getGroupType();
      attList.setAttribute(WizardCoreModule.NAMESPACE, "group-type", groupType.getType());

      xmlWriter.writeTag(WizardCoreModule.NAMESPACE, "group-definition", attList, XmlWriter.CLOSE);

    }
    catch (BeanException e)
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.