Interface PortletFilterObject
-
- All Superinterfaces:
PortletFilter
- All Known Implementing Classes:
PortletFilterImpl
public interface PortletFilterObject extends PortletFilter
- Version:
- $Revision: 630 $
- Author:
- Julien Viet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate()Creates the portlet filter.voiddestroy()Destroys the portlet filter.voidsetContext(PortletFilterContext context)Set the context required by that filter.voidsetPortletApplication(PortletApplication application)Set the application on the portlet filter.voidstart()Starts the portlet filer.voidstop()Stops the portlet filter.-
Methods inherited from interface org.gatein.pc.portlet.container.PortletFilter
getContext, getId, getPortletApplication
-
-
-
-
Method Detail
-
setPortletApplication
void setPortletApplication(PortletApplication application)
Set the application on the portlet filter.- Parameters:
application- the application
-
setContext
void setContext(PortletFilterContext context)
Set the context required by that filter.- Parameters:
context- the context
-
create
void create() throws ExceptionCreates the portlet filter.- Throws:
Exception- any exception preventing the creation
-
start
void start() throws ExceptionStarts the portlet filer.- Throws:
Exception- any exception preventing the start
-
stop
void stop()
Stops the portlet filter.
-
destroy
void destroy()
Destroys the portlet filter.
-
-