KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > PortletLifecycleListener


1 /*
2  * Copyright 2001-2003 The eXo platform SARL All rights reserved.
3  * Please look at license.txt in info directory for more license detail.
4  */

5
6 package org.exoplatform.services.portletcontainer;
7
8
9 import javax.portlet.PortletConfig;
10 import javax.servlet.ServletContext JavaDoc;
11 import org.exoplatform.services.portletcontainer.pci.model.PortletApp;
12
13 /**
14  * Created by the Exo Development team.
15  * Author : Mestrallet Benjamin
16  * benjamin.mestrallet@exoplatform.com
17  */

18 public interface PortletLifecycleListener {
19
20   public void preDeploy(String JavaDoc portletApplicationName, PortletApp portletApplication,
21                         ServletContext JavaDoc servletContext);
22   public void postDeploy(String JavaDoc portletApplicationName, PortletApp portletApplication,
23                          ServletContext JavaDoc servletContext);
24
25   public void preInit(PortletConfig portletConfig);
26   public void postInit(PortletConfig portletConfig);
27
28   public void preDestroy();
29   public void postDestroy();
30
31   public void preUndeploy(String JavaDoc portletApplicationName, PortletApp portletApplication,
32                           ServletContext JavaDoc servletContext);
33   public void postUndeploy(String JavaDoc portletApplicationName, PortletApp portletApplication,
34                            ServletContext JavaDoc servletContext);
35
36 }
37
Popular Tags