All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.ws.developer.SchemaValidation Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package com.sun.xml.ws.developer;

import com.sun.xml.ws.server.DraconianValidationErrorHandler;

import javax.jws.WebService;
import javax.xml.ws.spi.WebServiceFeatureAnnotation;
import java.lang.annotation.Documented;
import static java.lang.annotation.ElementType.TYPE;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Target;
import java.lang.annotation.ElementType;

/**
 * Validates all request and response messages payload(SOAP:Body) for a {@link WebService}
 * against the XML schema. To use this feature, annotate the endpoint class with
 * this annotation.
 *
 * 
 * for e.g.:
 *
 * @WebService
 * @SchemaValidation
 * public class HelloImpl {
 *   ...
 * }
 * 
* * At present, schema validation works for doc/lit web services only. * * @since JAX-WS 2.1.3 * @author Jitendra Kotamraju * @see SchemaValidationFeature */ @Retention(RUNTIME) @Target({TYPE, ElementType.METHOD, ElementType.FIELD}) @Documented @WebServiceFeatureAnnotation(id = SchemaValidationFeature.ID, bean = SchemaValidationFeature.class) public @interface SchemaValidation { /** * Configure the validation behaviour w.r.t error handling. The default handler * just rejects any invalid schema intances. If the application want to change * this default behaviour(say just log the errors), it can do so by providing * a custom implementation of {@link ValidationErrorHandler}. */ Class handler() default DraconianValidationErrorHandler.class; /** * Turns validation on/off for inbound messages * * @since JAX-WS RI 2.2.2 */ boolean inbound() default true; /** * Turns validation on/off for outbound messages * * @since JAX-WS RI 2.2.2 */ boolean outbound() default true; /** * Does validation for bound headers in a SOAP message. * boolean headers() default false; */ /** * Additional schema documents that are used to create {@link Schema} object. Useful * when the application adds additional SOAP headers to the message. This is a list * of system-ids, that are used to create {@link Source} objects and used in creation * of {@link Schema} object * * for e.g.: * @SchemaValidation(schemaLocations={"http://bar.foo/b.xsd", "http://foo.bar/a.xsd"} * String[] schemaLocations() default {}; */ }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy