< prev index next >

src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/WSEndpoint.java

Print this page

        

*** 471,481 **** * * <p> * This method works like the following: * <ol> * <li>{@link ServiceDefinition} is modeleed from the given SEI type. ! * <li>{@link Invoker} that always serves <tt>implementationObject</tt> will be used. * </ol> * @param implType * Endpoint class(not SEI). Enpoint class must have @WebService or @WebServiceProvider * annotation. * @param processHandlerAnnotation --- 471,481 ---- * * <p> * This method works like the following: * <ol> * <li>{@link ServiceDefinition} is modeleed from the given SEI type. ! * <li>{@link Invoker} that always serves {@code implementationObject} will be used. * </ol> * @param implType * Endpoint class(not SEI). Enpoint class must have @WebService or @WebServiceProvider * annotation. * @param processHandlerAnnotation
*** 519,529 **** * @param resolver * Optional resolver used to de-reference resources referenced from * WSDL. Must be null if the {@code url} is null. * @param isTransportSynchronous * If the caller knows that the returned {@link WSEndpoint} is going to be ! * used by a synchronous-only transport, then it may pass in <tt>true</tt> * to allow the callee to perform an optimization based on that knowledge * (since often synchronous version is cheaper than an asynchronous version.) * This value is visible from {@link ServerTubeAssemblerContext#isSynchronous()}. * * @return newly constructed {@link WSEndpoint}. --- 519,529 ---- * @param resolver * Optional resolver used to de-reference resources referenced from * WSDL. Must be null if the {@code url} is null. * @param isTransportSynchronous * If the caller knows that the returned {@link WSEndpoint} is going to be ! * used by a synchronous-only transport, then it may pass in {@code true} * to allow the callee to perform an optimization based on that knowledge * (since often synchronous version is cheaper than an asynchronous version.) * This value is visible from {@link ServerTubeAssemblerContext#isSynchronous()}. * * @return newly constructed {@link WSEndpoint}.
*** 581,591 **** return endpoint; } /** ! * Deprecated version that assumes <tt>isTransportSynchronous==false</tt> */ @Deprecated public static <T> WSEndpoint<T> create( @NotNull Class<T> implType, boolean processHandlerAnnotation, --- 581,591 ---- return endpoint; } /** ! * Deprecated version that assumes {@code isTransportSynchronous==false} */ @Deprecated public static <T> WSEndpoint<T> create( @NotNull Class<T> implType, boolean processHandlerAnnotation,
*** 602,612 **** /** * The same as * {@link #create(Class, boolean, Invoker, QName, QName, Container, WSBinding, SDDocumentSource, Collection, EntityResolver)} ! * except that this version takes an url of the <tt>jax-ws-catalog.xml</tt>. * * @param catalogUrl * if not null, an {@link EntityResolver} is created from it and used. * otherwise no resolution will be performed. */ --- 602,612 ---- /** * The same as * {@link #create(Class, boolean, Invoker, QName, QName, Container, WSBinding, SDDocumentSource, Collection, EntityResolver)} ! * except that this version takes an url of the {@code jax-ws-catalog.xml}. * * @param catalogUrl * if not null, an {@link EntityResolver} is created from it and used. * otherwise no resolution will be performed. */
< prev index next >