⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addressing.java

📁 java1.6众多例子参考
💻 JAVA
字号:
/* * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package javax.xml.ws.soap;import java.lang.annotation.Documented;import java.lang.annotation.Target;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import javax.xml.ws.Action;import javax.xml.ws.BindingProvider;import javax.xml.ws.FaultAction;import javax.xml.ws.spi.WebServiceFeatureAnnotation;/** * <p> * This feature represents the use of WS-Addressing with either * the SOAP 1.1/HTTP or SOAP 1.2/HTTP binding.  Using this feature * with any other binding is NOT required. * <p> * The following describes the effects of this feature with respect * to be enabled or disabled: * <ul> *  <li> ENABLED: In this Mode, WS-Addressing will be enabled. *       At runtime, WS-Addressing headers *       MUST be consumed by the receiver and produced by the *       sender even if the WSDL declares otherwise. The *       mustUnderstand="0" attribute MUST be used on the response WS-Addressing *       headers.  *  <li> DISABLED: In this Mode, WS-Addressing will be disabled *       even if an associated WSDL specifies otherwise. At runtime, *       WS-Addressing headers MUST NOT be used. WS-Addressing may be explicitly *       disabled to prevent a JAX-WS implementation from consuming and producing *       WS-Addressing headers. If an application *       has implemented WS-Addressing itself, it MUST explicitly disable this feature.*        Not doing so may break compatibility with future versions of JAX-WS. * </ul> * <p> * The <code>required</code> property can be used to * specify if WS-Addressing headers MUST * be present on incoming messages.  By default the * <code>required</code> property is <code>false</code>.  * <p> * The definition of this annotation is incomplete in this release of JAX-WS as * there is no standard way to convey the use of WS-Addressing via a WSDL and there is no * standard definition for the default value of WS-Addressing <code>Action</code> headers;  * however, the runtime behavior of this annotation is well-defined.  * It is intended that a future version of  * JAX-WS will require the use of the standard mechanism to convey the use * of WS-Addressing via WSDL and default values for WS-Addressing <code>Action</code> headers * as defined by the W3C WG on WS-Addressing.   * <p> * To write a portable endpoint and its corresponding client with this version of JAX-WS, * an endpoint MUST explicitly specify what WS-Addressing <code>Actions</code> are to be used  * via the {@link Action} and {@link FaultAction} annotations.  The client MUST explicitly  * enable addresssing via the {@link AddressingFeature}, and for each invocation, the client  * MUST explicitly set the {@link BindingProvider#SOAPACTION_URI_PROPERTY}. * After the W3C WG on WS-Addressing has specified how the use of WS-Addressing is specified in the WSDL, * and what the default value must be for Action headers, a future version of JAX-WS will remove these requirements. * <p> * See <a href="http://www.w3.org/TR/2006/REC-ws-addr-core-20060509/">Web Services Addressing - Core</a> * and <a href="http://www.w3.org/TR/2006/REC-ws-addr-soap-20060509/">Web Services Addressing 1.0 - SOAP Binding</a>  * for more information on WS-Addressing. *  * @since JAX-WS 2.1 */@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documented@WebServiceFeatureAnnotation(id=AddressingFeature.ID,bean=AddressingFeature.class)public @interface Addressing {    /**     * Specifies if this feature is enabled or disabled.     */    boolean enabled() default true;        /**     * Property to determine if WS-Addressing headers MUST     * be present on incoming messages.     */    boolean required() default false;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -