com.caucho.burlap.server
类 BurlapServlet

java.lang.Object
  继承者 GenericServlet
      继承者 com.caucho.burlap.server.BurlapServlet

public class BurlapServlet
extends GenericServlet

Servlet for serving Burlap services.


构造方法摘要
BurlapServlet()
           
 
方法摘要
 java.lang.String getServletInfo()
           
 void init(ServletConfig config)
          Initialize the service, including the service object.
 void service(ServletRequest request, ServletResponse response)
          Execute a request.
 void setAPIClass(java.lang.Class<?> apiClass)
          Sets the api-class.
 void setService(java.lang.Object service)
          Sets the service class.
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

BurlapServlet

public BurlapServlet()
方法详细信息

getServletInfo

public java.lang.String getServletInfo()

setService

public void setService(java.lang.Object service)
Sets the service class.


setAPIClass

public void setAPIClass(java.lang.Class<?> apiClass)
Sets the api-class.


init

public void init(ServletConfig config)
          throws ServletException
Initialize the service, including the service object.

抛出:
ServletException

service

public void service(ServletRequest request,
                    ServletResponse response)
             throws java.io.IOException,
                    ServletException
Execute a request. The path-info of the request selects the bean. Once the bean's selected, it will be applied.

抛出:
java.io.IOException
ServletException