jaxws/src/share/jaxws_classes/javax/xml/ws/soap/Addressing.java
changeset 25840 c2002453eec3
parent 22678 ac1ea46be942
equal deleted inserted replaced
25686:615e5efca19c 25840:c2002453eec3
    55  * annotation.
    55  * annotation.
    56  * <p>
    56  * <p>
    57  * This annotation's behaviour is defined by the corresponding feature
    57  * This annotation's behaviour is defined by the corresponding feature
    58  * {@link AddressingFeature}.
    58  * {@link AddressingFeature}.
    59  *
    59  *
    60  * @since JAX-WS 2.1
    60  * @since 1.6, JAX-WS 2.1
    61  */
    61  */
    62 @Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
    62 @Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
    63 @Retention(RetentionPolicy.RUNTIME)
    63 @Retention(RetentionPolicy.RUNTIME)
    64 @Documented
    64 @Documented
    65 @WebServiceFeatureAnnotation(id=AddressingFeature.ID,bean=AddressingFeature.class)
    65 @WebServiceFeatureAnnotation(id=AddressingFeature.ID,bean=AddressingFeature.class)
   104      * responses. It will result into
   104      * responses. It will result into
   105      * wsam:NonAnonymousResponses nested assertion as specified in
   105      * wsam:NonAnonymousResponses nested assertion as specified in
   106      * <a href="http://www.w3.org/TR/ws-addr-metadata/#wspolicynonanonresponses">
   106      * <a href="http://www.w3.org/TR/ws-addr-metadata/#wspolicynonanonresponses">
   107      * 3.1.3 NonAnonymousResponses Assertion</a> in the generated WSDL.
   107      * 3.1.3 NonAnonymousResponses Assertion</a> in the generated WSDL.
   108      *
   108      *
   109      * @since JAX-WS 2.2
   109      * @since 1.7, JAX-WS 2.2
   110      */
   110      */
   111     Responses responses() default Responses.ALL;
   111     Responses responses() default Responses.ALL;
   112 
   112 
   113 }
   113 }