src/share/jaxws_classes/javax/xml/ws/wsaddressing/W3CEndpointReferenceBuilder.java

Print this page
rev 507 : 8047724: @since tag cleanup in jaxws
Reviewed-by:

*** 60,70 **** * When the <code>wsdlDocumentLocation</code> is specified it MUST refer * to a valid WSDL document and the <code>serviceName</code> and * <code>endpointName</code> (if specified) MUST match a service and port * in the WSDL document. * ! * @since JAX-WS 2.1 */ public final class W3CEndpointReferenceBuilder { /** * Creates a new <code>W3CEndpointReferenceBuilder</code> instance. */ --- 60,70 ---- * When the <code>wsdlDocumentLocation</code> is specified it MUST refer * to a valid WSDL document and the <code>serviceName</code> and * <code>endpointName</code> (if specified) MUST match a service and port * in the WSDL document. * ! * @since 1.6, JAX-WS 2.1 */ public final class W3CEndpointReferenceBuilder { /** * Creates a new <code>W3CEndpointReferenceBuilder</code> instance. */
*** 108,117 **** --- 108,118 ---- * by the returned <code>W3CEndpointReference</code>. * * @return A <code>W3CEndpointReferenceBuilder</code> instance with * the <code>interfaceName</code> as <code>wsam:InterfaceName</code> * element added to the <code>wsa:Metadata</code> element + * @since 1.7 */ public W3CEndpointReferenceBuilder interfaceName(QName interfaceName) { this.interfaceName = interfaceName; return this; }
*** 251,261 **** * the extension <code>element</code> added to the * <code>W3CEndpointReference</code> instance. * @throws java.lang.IllegalArgumentException if <code>element</code> * is <code>null</code>. * ! * @since JAX-WS 2.2 */ public W3CEndpointReferenceBuilder element(Element element) { if (element == null) { throw new IllegalArgumentException("The extension element cannot be null."); } --- 252,262 ---- * the extension <code>element</code> added to the * <code>W3CEndpointReference</code> instance. * @throws java.lang.IllegalArgumentException if <code>element</code> * is <code>null</code>. * ! * @since 1.7, JAX-WS 2.2 */ public W3CEndpointReferenceBuilder element(Element element) { if (element == null) { throw new IllegalArgumentException("The extension element cannot be null."); }
*** 275,285 **** * the extension attribute added to the <code>W3CEndpointReference</code> * instance. * @throws java.lang.IllegalArgumentException if <code>name</code> * or <code>value</code> is <code>null</code>. * ! * @since JAX-WS 2.2 */ public W3CEndpointReferenceBuilder attribute(QName name, String value) { if (name == null || value == null) { throw new IllegalArgumentException("The extension attribute name or value cannot be null."); } --- 276,286 ---- * the extension attribute added to the <code>W3CEndpointReference</code> * instance. * @throws java.lang.IllegalArgumentException if <code>name</code> * or <code>value</code> is <code>null</code>. * ! * @since 1.7, JAX-WS 2.2 */ public W3CEndpointReferenceBuilder attribute(QName name, String value) { if (name == null || value == null) { throw new IllegalArgumentException("The extension attribute name or value cannot be null."); }