com.ibm.wps.pe.pc.legacy.cmpf
Class PortletFilter.Method

java.lang.Object
  extended by com.ibm.wps.pe.pc.legacy.cmpf.PortletFilter.Method
All Implemented Interfaces:
java.io.Serializable
Enclosing interface:
PortletFilter

public static class PortletFilter.Method
extends java.lang.Object
implements java.io.Serializable

The Method class is a finite enumeration of the possible methods that a filter can invoke.

See Also:
Serialized Form

Field Summary
static PortletFilter.Method ACTIONEVENT
          Represents the actionPerformed method of the ActionListener.
static PortletFilter.Method BEGINPAGE
          Represents the beginPage method of the PortletPageListener.
static PortletFilter.Method DOTITLE
          Represents the doTitle method of the PortletTitleListener.
static PortletFilter.Method ENDPAGE
          Represents the endPage method of the PortletPageListener.
static PortletFilter.Method LOGIN
          Represents the login method of the PortletSessionListener.
static PortletFilter.Method MESSAGEEVENT
          Represents the messagePerformed method of the MessageListener.
static PortletFilter.Method SERVICE
          Represents the service method of the Portlet Interface.
static PortletFilter.Method WINDOWEVENT
          Deprecated.  
 
Method Summary
 int getId()
          Returns the integer representation of the method object that a filter can invoke.
 java.lang.String toString()
          Returns the string representation of the method object that a filter can invoke.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

LOGIN

public static final PortletFilter.Method LOGIN
Represents the login method of the PortletSessionListener. The PortletResponse is NULL for this method.


BEGINPAGE

public static final PortletFilter.Method BEGINPAGE
Represents the beginPage method of the PortletPageListener.


SERVICE

public static final PortletFilter.Method SERVICE
Represents the service method of the Portlet Interface.


ENDPAGE

public static final PortletFilter.Method ENDPAGE
Represents the endPage method of the PortletPageListener.


DOTITLE

public static final PortletFilter.Method DOTITLE
Represents the doTitle method of the PortletTitleListener.


ACTIONEVENT

public static final PortletFilter.Method ACTIONEVENT
Represents the actionPerformed method of the ActionListener. The PortletResponse is null for this method.


MESSAGEEVENT

public static final PortletFilter.Method MESSAGEEVENT
Represents the messagePerformed method of the MessageListener. The PortletResponse is null for this method.


WINDOWEVENT

public static final PortletFilter.Method WINDOWEVENT
Deprecated. 
Represents the windowPerformed method of the WindowListener. The PortletResponse is null for this method.

Method Detail

getId

public int getId()
Returns the integer representation of the method object that a filter can invoke.

Returns:
integer representation of the method object.

toString

public java.lang.String toString()
Returns the string representation of the method object that a filter can invoke.

Overrides:
toString in class java.lang.Object
Returns:
the string representation of the method object.