com.caucho.services.server
类 GenericService

java.lang.Object
  继承者 com.caucho.services.server.GenericService
所有已实现的接口:
Service

public class GenericService
extends java.lang.Object
implements Service

Interface for a service, including lifecycle.


构造方法摘要
GenericService()
           
 
方法摘要
 void destroy()
          Cleanup the service instance.
 java.lang.String getInitParameter(java.lang.String name)
          Returns the named initialization parameter.
 java.lang.String getObjectId()
          Returns the object identifier for the request.
 ServletRequest getRequest()
          Returns the servlet request object for the request.
 java.lang.String getServiceId()
          已过时。  
 java.lang.String getServiceName()
          Returns the service identifier for the request.
 ServletConfig getServletConfig()
          Returns the servlet context.
 ServletContext getServletContext()
          Returns the servlet context.
 void init()
          Initialize the service instance.
 void init(ServletConfig config)
          Initialize the service instance.
 void log(java.lang.String message)
          Logs a message to the error stream.
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

GenericService

public GenericService()
方法详细信息

init

public void init(ServletConfig config)
          throws ServletException
Initialize the service instance.

指定者:
接口 Service 中的 init
参数:
config - the configuration for the service.
抛出:
ServletException

init

public void init()
          throws ServletException
Initialize the service instance.

抛出:
ServletException

getInitParameter

public java.lang.String getInitParameter(java.lang.String name)
Returns the named initialization parameter.


getServletConfig

public ServletConfig getServletConfig()
Returns the servlet context.


getServletContext

public ServletContext getServletContext()
Returns the servlet context.


log

public void log(java.lang.String message)
Logs a message to the error stream.


getRequest

public ServletRequest getRequest()
Returns the servlet request object for the request.


getServiceName

public java.lang.String getServiceName()
Returns the service identifier for the request.


getServiceId

public java.lang.String getServiceId()
已过时。 

Returns the service identifier for the request.


getObjectId

public java.lang.String getObjectId()
Returns the object identifier for the request.


destroy

public void destroy()
Cleanup the service instance.

指定者:
接口 Service 中的 destroy