Examples of RefineRuleProfileSelector


Examples of gov.nist.scap.xccdf.document.selector.RefineRuleProfileSelector

              result.add(selector);
            } else if (ProfileRefineRuleType.type.isAssignableFrom(xmlObject.schemaType())) {
              ProfileRefineRuleType nodeData = (ProfileRefineRuleType)xmlObject;

              RefineRuleProfileSelector selector = new RefineRuleProfileSelectorImpl(this, nodeData.getIdref());
              selector.setWeight(nodeData.getWeight());
              selector.setSelector(nodeData.getSelector());
              selector.setSeverity(RuleImpl.mapSeverity(nodeData.getSeverity()));
              selector.setRole(RuleImpl.mapRole(nodeData.getRole()));

              result.add(selector);
            } else if (ProfileSetValueType.type.isAssignableFrom(xmlObject.schemaType())) {
              ProfileSetValueType nodeData = (ProfileSetValueType)xmlObject;
View Full Code Here

Examples of gov.nist.scap.xccdf.document.selector.RefineRuleProfileSelector

              result.add(selector);
            } else if (ProfileRefineRuleType.type.isAssignableFrom(xmlObject.schemaType())) {
              ProfileRefineRuleType nodeData = (ProfileRefineRuleType)xmlObject;

              RefineRuleProfileSelector selector = new RefineRuleProfileSelectorImpl(this, nodeData.getIdref());
              selector.setWeight(nodeData.getWeight());
              selector.setSelector(nodeData.getSelector());
              selector.setSeverity(RuleImpl.mapSeverity(nodeData.getSeverity()));
              selector.setRole(RuleImpl.mapRole(nodeData.getRole()));

              result.add(selector);
            } else if (ProfileSetValueType.type.isAssignableFrom(xmlObject.schemaType())) {
              ProfileSetValueType nodeData = (ProfileSetValueType)xmlObject;
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.