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

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

*** 39,49 **** * * Typically a <code>WebServiceContext</code> is injected * into an endpoint implementation class using the * <code>Resource</code> annotation. * ! * @since JAX-WS 2.0 * * @see javax.annotation.Resource **/ public interface WebServiceContext { --- 39,49 ---- * * Typically a <code>WebServiceContext</code> is injected * into an endpoint implementation class using the * <code>Resource</code> annotation. * ! * @since 1.6, JAX-WS 2.0 * * @see javax.annotation.Resource **/ public interface WebServiceContext {
*** 118,128 **** * if the method is called while no request is * being serviced. * * @see W3CEndpointReference * ! * @since JAX-WS 2.1 */ public EndpointReference getEndpointReference(Element... referenceParameters); /** * Returns the <code>EndpointReference</code> associated with --- 118,128 ---- * if the method is called while no request is * being serviced. * * @see W3CEndpointReference * ! * @since 1.6, JAX-WS 2.1 */ public EndpointReference getEndpointReference(Element... referenceParameters); /** * Returns the <code>EndpointReference</code> associated with
*** 142,151 **** * if the method is called while no request is * being serviced. * @throws WebServiceException If the <code>clazz</code> type of * <code>EndpointReference</code> is not supported. * ! * @since JAX-WS 2.1 **/ public <T extends EndpointReference> T getEndpointReference(Class<T> clazz, Element... referenceParameters); } --- 142,151 ---- * if the method is called while no request is * being serviced. * @throws WebServiceException If the <code>clazz</code> type of * <code>EndpointReference</code> is not supported. * ! * @since 1.6, JAX-WS 2.1 **/ public <T extends EndpointReference> T getEndpointReference(Class<T> clazz, Element... referenceParameters); }