Examples of ValidationType


Examples of org.aavso.tools.vstar.data.ValidationType

   * Good, Y = Deleted (filtered out via SQL). Our query converts any
   * occurrence of 'T' to 'D'. Currently we convert everything to Good (V,G),
   * Discrepant (D), or Prevalidated (Z) below.
   */
  private ValidationType getNextValidationType() throws SQLException {
    ValidationType type;

    String valflag = getNextPossiblyNullString("valflag");

    if ("Z".equals(valflag)) {
      type = ValidationType.PREVALIDATION;
View Full Code Here

Examples of org.apache.cxf.fediz.core.config.jaxb.ValidationType

    public void setSubject(String subject) {
        trustedIssuerType.setSubject(subject);
    }

    public CertificateValidationMethod getCertificateValidationMethod() {
        ValidationType certificateValidation = trustedIssuerType.getCertificateValidation();
        if (ValidationType.CHAIN_TRUST.equals(certificateValidation)) {
            return CertificateValidationMethod.CHAIN_TRUST;
        } else if (ValidationType.PEER_TRUST.equals(certificateValidation)) {
            return CertificateValidationMethod.PEER_TRUST;
        } else {
            throw new IllegalStateException(
                    "Not supported certificate validation type: " + certificateValidation.value()
            );
        }
    }
View Full Code Here

Examples of org.dynalang.dynalink.beans.GuardedInvocationComponent.ValidationType

                // overloaded in a subclass. Therefore, we can discover the most abstract superclass that has the
                // method, and use that as the guard with Guards.isInstance() for a more stably linked call site. If
                // we're linking against a field getter, don't make the assumption.
                // NOTE: No delegation to the next component operation if we have a property with this name, even if its
                // value is null.
                final ValidationType validationType = annGetter.validationType;
                // TODO: we aren't using the type that declares the most generic getter here!
                return new GuardedInvocationComponent(linkerServices.asType(getter, type), getGuard(validationType,
                        type), clazz, validationType);
            }
            default: {
View Full Code Here

Examples of org.talend.esb.policy.schemavalidate.SchemaValidationPolicy.ValidationType

        }

        for (AssertionInfo ai : ais) {
            if (ai.getAssertion() instanceof SchemaValidationPolicy) {
                SchemaValidationPolicy vPolicy = (SchemaValidationPolicy) ai.getAssertion();
                ValidationType vldType = vPolicy.getValidationType();
                AppliesToType appliesToType = vPolicy.getApplyToType();
                MessageType msgType = vPolicy.getMessageType();
                String customSchemaPath = vPolicy.getCustomSchemaPath();

                if (vldType != ValidationType.WSDLSchema) {
View Full Code Here

Examples of org.talend.esb.policy.schemavalidate.SchemaValidationPolicy.ValidationType

    }


    protected void handleMessageWithoutAssertionInfo(Message message) throws Fault {

        ValidationType vldType = policy.getValidationType();
        AppliesToType appliesToType = policy.getApplyToType();
        MessageType msgType = policy.getMessageType();
        String customSchemaPath = policy.getCustomSchemaPath();

        if (shouldSchemaValidate(message, msgType, appliesToType)) {
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.