Package com.orchestranetworks.module
Class ModuleRegistrationServlet
- java.lang.Object
- javax.servlet.GenericServlet
- javax.servlet.http.HttpServlet
- com.orchestranetworks.module.ModuleRegistrationServlet
 
 
 
- All Implemented Interfaces:
- ModuleRegistration,- Serializable,- Servlet,- ServletConfig
 
 - public abstract class ModuleRegistrationServlet extends HttpServlet implements ModuleRegistration Ensures the EBX® module registration from a HTTP servlet.- If further initialization or termination is required, see - ModuleRegistrationfor more information.- Since:
- 5.7.1
- See Also:
- Module registration, ModuleRegistrationListener
 
-   Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddestroy()Called by the servlet container to indicate to a servlet that the servlet is being taken out of service.voidinit (ServletConfig aServletConfig)Called by the servlet container to indicate to a servlet that the servlet is being placed into service.-   Methods inherited from class javax.servlet.http.HttpServletservice
 -   Methods inherited from class javax.servlet.GenericServletgetInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
 -   Methods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 -   Methods inherited from interface com.orchestranetworks.module.ModuleRegistrationdestroyBeforeUnregisterModule, handleRepositoryShutdown, handleRepositoryStartup, handleSearchRegistration, handleServiceRegistration
 
-   
 
-   
-   Method Detail- init- public final void init(ServletConfig aServletConfig) throws ServletException Called by the servlet container to indicate to a servlet that the servlet is being placed into service.- This implementation adds the EBX® module registration to the super implementation. - If further initialization is required, the methods - GenericServlet.init()or- ModuleRegistration.handleRepositoryStartup(ModuleContextOnRepositoryStartup)can be overridden.- Specified by:
- initin interface- Servlet
- Overrides:
- initin class- GenericServlet
- Throws:
- ServletException
 
 - destroy- public final void destroy() Called by the servlet container to indicate to a servlet that the servlet is being taken out of service.- This 'final' implementation invokes the method - ModuleRegistration.destroyBeforeUnregisterModule()and then unregisters the current module.- Specified by:
- destroyin interface- Servlet
- Overrides:
- destroyin class- GenericServlet
 
 
 
-