Interface JerseyContainer


  • public interface JerseyContainer
    This class represents our interface to Jersey pluggable container mechanism. This allows us to use our ReST admin resources in more than containers, e.g., jersey-grizzly-container, jersey-servlet-container, etc. Ideally we should have abstracted out Request and Response as well, but that will be done separately. For now, while using our ReST admin resources in any other container, we will have to adapt their Request and Response interfaces to Grizzly Request and Response interfaces.
    Author:
    [email protected]
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void service​(org.glassfish.grizzly.http.server.Request request, org.glassfish.grizzly.http.server.Response response)  
    • Method Detail

      • service

        void service​(org.glassfish.grizzly.http.server.Request request,
                     org.glassfish.grizzly.http.server.Response response)
              throws Exception
        Throws:
        Exception