< prev index next >

src/java.xml.ws/share/classes/javax/xml/ws/spi/http/package-info.java

Print this page

        

@@ -45,11 +45,11 @@
   callback to handle incoming requests or
   {@link javax.xml.ws.spi.http.HttpExchange} objects. The HttpExchange
   object encapsulates a HTTP request and a response.
   </ol>
 
-  <pre>
+  <pre>{@literal
   Container                               JAX-WS runtime
   ---------                               --------------
   1. Creates Invoker1, ... InvokerN
   2. Provider.createEndpoint(...)     --> 3. creates Endpoint1
      configures Endpoint1

@@ -62,30 +62,30 @@
                                           HttpContext1.setHandler(HttpHandler1)
      ...
  10. EndpointN.publish(HttpContextN)  --> 11. creates HttpHandlerN
                                          HttpContextN.setHandler(HttpHandlerN)
 
-  </pre>
+  }</pre>
 
   The request processing is done as below(for every request):
-  <pre>
+  <pre>{@literal
   Container                               JAX-WS runtime
   ---------                               --------------
   1. Creates a HttpExchange
   2. Gets handler from HttpContext
   3. HttpHandler.handle(HttpExchange) --> 4. reads request from HttpExchange
                                       <-- 5. Calls Invoker
   6. Invokes the actual instance
                                           7. Writes the response to HttpExchange
-  </pre>
+  }</pre>
 
   <p>
   The portable undeployment is done as below:
   <pre>
   Container
   ---------
-  1. @preDestroy on instances
+  1. {@literal @}preDestroy on instances
   2. Endpoint1.stop()
   ...
   3. EndpointN.stop()
   </pre>
 
< prev index next >