com.supermap.services.wfs

Class WFSServlet

  • java.lang.Object
    • HttpServlet
      • com.supermap.services.wfs.WFSServlet
  • All Implemented Interfaces:
    InterfaceContextAware


    public class WFSServlet
    extends HttpServlet
    implements InterfaceContextAware
    

    WFS Servlet。

    This class inherits from HttpServlet, mainly used to receive the HTTP request of WFS service from the client side, and return the HTTP response to the client side.

    • Constructor Summary

      Constructors 
      Constructor and Description
      WFSServlet() 
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      void init(ServletConfig config)
      Initialization.
      void service(HttpServletRequest request, HttpServletResponse response)
      Responds to client requests.
      void setInterfaceContext(InterfaceContext context)
      Set the context of the WFS service interface.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • WFSServlet

        public WFSServlet()
        
    • Method Detail

      • init

        public void init(ServletConfig config)
                  throws ServletException
        

        Initialization.

        Throws:
        ServletException
      • service

        public void service(HttpServletRequest request,
                   HttpServletResponse response)
        

        Responds to client requests.

        Parameters:
        request - the HTTP request information of WFS service from the client side.
        response - the server returns the HTTP response result to the client side.