Package org.exoplatform.container.RootContainer

Examples of org.exoplatform.container.RootContainer.PortalContainerPostCreateTask


   /**
    * @see org.exoplatform.container.web.AbstractHttpServlet#afterInit(javax.servlet.ServletConfig)
    */
   public void afterInit(final ServletConfig config) throws ServletException
   {
      final PortalContainerPostCreateTask task = new PortalContainerPostCreateTask()
      {

         public void execute(ServletContext context, PortalContainer portalContainer)
         {
            onInit(config, portalContainer);
View Full Code Here


     * Register onInit callback to PortalContainerPostCreateTask and register the servlet context with RootContainer.
     * So that portal.war don't need PortalContainerConfigOwner listener. (extension project will need this listener)
     * @see org.exoplatform.container.web.AbstractHttpServlet#afterInit(javax.servlet.ServletConfig)
     */
    public void afterInit(final ServletConfig config) throws ServletException {
        final PortalContainerPostCreateTask task = new PortalContainerPostCreateTask() {

            public void execute(ServletContext context, PortalContainer portalContainer) {
                onInit(config, portalContainer);
            }
        };
View Full Code Here

    /**
     * @see org.exoplatform.container.web.AbstractHttpServlet#afterInit(javax.servlet.ServletConfig)
     */
    public void afterInit(final ServletConfig config) throws ServletException {
        final PortalContainerPostCreateTask task = new PortalContainerPostCreateTask() {

            public void execute(ServletContext context, PortalContainer portalContainer) {
                onInit(config, portalContainer);
            }
        };
View Full Code Here

   /**
    * @see org.exoplatform.container.web.AbstractHttpServlet#afterInit(javax.servlet.ServletConfig)
    */
   public void afterInit(final ServletConfig config) throws ServletException
   {
      final PortalContainerPostCreateTask task = new PortalContainerPostCreateTask()
      {

         public void execute(ServletContext context, PortalContainer portalContainer)
         {
            onInit(config, portalContainer);
View Full Code Here

TOP

Related Classes of org.exoplatform.container.RootContainer.PortalContainerPostCreateTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.