Examples of CheckType


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

  @Override
  protected CheckType newCheckNode() {
    ComplexCheckType currentContext = stack.peek();

    CheckType retval;
    if (currentContext == null) {
      retval = getOutputBuilder().newCheckResult(getRuleResult());
    } else {
      retval = getOutputBuilder().newCheckResultChild(currentContext);
    }
View Full Code Here

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

        }

        do {
            XmlObject xmlObject = cursor.getObject();
            if (xmlObject instanceof CheckType) {
              CheckType checkType = (CheckType)xmlObject;

            if (checkType.isSetCheckContent()) {
              throw new ComplexCheckException(CheckedItem.Result.NOTCHECKED,
                  "In-line check content not supported");
            }

            XCCDFCheck check = RuleImpl.newCheck(document, checkType);
View Full Code Here

Examples of org.jboss.jms.server.security.CheckType

      final Set principals = checkType == CheckType.READ ? securityMetadata.getReadPrincipals() :
                       checkType == CheckType.WRITE ? securityMetadata.getWritePrincipals() :
                       securityMetadata.getCreatePrincipals();
      try
      {
        final CheckType tmpCheckType = checkType;
       
         if (!SecurityActions.authorize(sm, conn.getUsername(), principals, checkType))
         {
            String msg = "User: " + conn.getUsername() +
               " is not authorized to " +
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.