src/share/jaxws_classes/javax/xml/ws/Service.java

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

*** 55,65 **** * to gain better control over the threads used to dispatch asynchronous * callbacks. For instance, thread pooling with certain parameters * can be enabled by creating a <code>ThreadPoolExecutor</code> and * registering it with the service. * ! * @since JAX-WS 2.0 * * @see javax.xml.ws.spi.Provider * @see javax.xml.ws.handler.HandlerResolver * @see java.util.concurrent.Executor **/ --- 55,65 ---- * to gain better control over the threads used to dispatch asynchronous * callbacks. For instance, thread pooling with certain parameters * can be enabled by creating a <code>ThreadPoolExecutor</code> and * registering it with the service. * ! * @since 1.6, JAX-WS 2.0 * * @see javax.xml.ws.spi.Provider * @see javax.xml.ws.handler.HandlerResolver * @see java.util.concurrent.Executor **/
*** 151,161 **** * </UL> * @see java.lang.reflect.Proxy * @see java.lang.reflect.InvocationHandler * @see WebServiceFeature * ! * @since JAX-WS 2.1 **/ public <T> T getPort(QName portName, Class<T> serviceEndpointInterface, WebServiceFeature... features) { return delegate.getPort(portName, serviceEndpointInterface, features); } --- 151,161 ---- * </UL> * @see java.lang.reflect.Proxy * @see java.lang.reflect.InvocationHandler * @see WebServiceFeature * ! * @since 1.6, JAX-WS 2.1 **/ public <T> T getPort(QName portName, Class<T> serviceEndpointInterface, WebServiceFeature... features) { return delegate.getPort(portName, serviceEndpointInterface, features); }
*** 217,227 **** * with this port or is unsupported. * </UL> * * @see WebServiceFeature * ! * @since JAX-WS 2.1 **/ public <T> T getPort(Class<T> serviceEndpointInterface, WebServiceFeature... features) { return delegate.getPort(serviceEndpointInterface, features); } --- 217,227 ---- * with this port or is unsupported. * </UL> * * @see WebServiceFeature * ! * @since 1.6, JAX-WS 2.1 **/ public <T> T getPort(Class<T> serviceEndpointInterface, WebServiceFeature... features) { return delegate.getPort(serviceEndpointInterface, features); }
*** 295,305 **** * is specified. * <LI>If a feature is enabled that is not compatible * with this port or is unsupported. * </UL> * ! * @since JAX-WS 2.1 **/ public <T> T getPort(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features) { return delegate.getPort(endpointReference, serviceEndpointInterface, features); } --- 295,305 ---- * is specified. * <LI>If a feature is enabled that is not compatible * with this port or is unsupported. * </UL> * ! * @since 1.6, JAX-WS 2.1 **/ public <T> T getPort(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features) { return delegate.getPort(endpointReference, serviceEndpointInterface, features); }
*** 379,389 **** * * @see javax.xml.transform.Source * @see javax.xml.soap.SOAPMessage * @see WebServiceFeature * ! * @since JAX-WS 2.1 **/ public <T> Dispatch<T> createDispatch(QName portName, Class<T> type, Service.Mode mode, WebServiceFeature... features) { return delegate.createDispatch(portName, type, mode, features); } --- 379,389 ---- * * @see javax.xml.transform.Source * @see javax.xml.soap.SOAPMessage * @see WebServiceFeature * ! * @since 1.6, JAX-WS 2.1 **/ public <T> Dispatch<T> createDispatch(QName portName, Class<T> type, Service.Mode mode, WebServiceFeature... features) { return delegate.createDispatch(portName, type, mode, features); }
*** 454,464 **** * * @see javax.xml.transform.Source * @see javax.xml.soap.SOAPMessage * @see WebServiceFeature * ! * @since JAX-WS 2.1 **/ public <T> Dispatch<T> createDispatch(EndpointReference endpointReference, Class<T> type, Service.Mode mode, WebServiceFeature... features) { return delegate.createDispatch(endpointReference, type, mode, features); --- 454,464 ---- * * @see javax.xml.transform.Source * @see javax.xml.soap.SOAPMessage * @see WebServiceFeature * ! * @since 1.6, JAX-WS 2.1 **/ public <T> Dispatch<T> createDispatch(EndpointReference endpointReference, Class<T> type, Service.Mode mode, WebServiceFeature... features) { return delegate.createDispatch(endpointReference, type, mode, features);
*** 512,522 **** * this port or is unsupported. * * @see javax.xml.bind.JAXBContext * @see WebServiceFeature * ! * @since JAX-WS 2.1 **/ public Dispatch<Object> createDispatch(QName portName, JAXBContext context, Service.Mode mode, WebServiceFeature... features) { return delegate.createDispatch(portName, context, mode, features); } --- 512,522 ---- * this port or is unsupported. * * @see javax.xml.bind.JAXBContext * @see WebServiceFeature * ! * @since 1.6, JAX-WS 2.1 **/ public Dispatch<Object> createDispatch(QName portName, JAXBContext context, Service.Mode mode, WebServiceFeature... features) { return delegate.createDispatch(portName, context, mode, features); }
*** 585,595 **** * </UL> * * @see javax.xml.bind.JAXBContext * @see WebServiceFeature * ! * @since JAX-WS 2.1 **/ public Dispatch<Object> createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features) { return delegate.createDispatch(endpointReference, context, mode, features); --- 585,595 ---- * </UL> * * @see javax.xml.bind.JAXBContext * @see WebServiceFeature * ! * @since 1.6, JAX-WS 2.1 **/ public Dispatch<Object> createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features) { return delegate.createDispatch(endpointReference, context, mode, features);
*** 720,730 **** * @param features Web Service features that must be configured on * the service. If the provider doesn't understand a feature, * it must throw a WebServiceException. * @throws WebServiceException If any error in creation of the * specified service. ! * @since JAX-WS 2.2 **/ public static Service create( java.net.URL wsdlDocumentLocation, QName serviceName, WebServiceFeature ... features) { return new Service(wsdlDocumentLocation, serviceName, features); --- 720,730 ---- * @param features Web Service features that must be configured on * the service. If the provider doesn't understand a feature, * it must throw a WebServiceException. * @throws WebServiceException If any error in creation of the * specified service. ! * @since 1.7, JAX-WS 2.2 **/ public static Service create( java.net.URL wsdlDocumentLocation, QName serviceName, WebServiceFeature ... features) { return new Service(wsdlDocumentLocation, serviceName, features);
*** 750,760 **** * the service. If the provider doesn't understand a feature, * it must throw a WebServiceException. * @throws WebServiceException If any error in creation of the * specified service * ! * @since JAX-WS 2.2 */ public static Service create(QName serviceName, WebServiceFeature ... features) { return new Service(null, serviceName, features); } } --- 750,760 ---- * the service. If the provider doesn't understand a feature, * it must throw a WebServiceException. * @throws WebServiceException If any error in creation of the * specified service * ! * @since 1.7, JAX-WS 2.2 */ public static Service create(QName serviceName, WebServiceFeature ... features) { return new Service(null, serviceName, features); } }