org.apache.pluto
Class Constants

java.lang.Object
  extended byorg.apache.pluto.Constants

public class Constants
extends java.lang.Object

Constant values used to bind internal portlet objects as attributes, typically to a request.

Version:
1.0

Field Summary
static java.lang.String KEYWORDS_KEY
           
static java.lang.Integer METHOD_ACTION
          The unique method identifier for render requests.
static java.lang.Integer METHOD_ADMIN
          The unique method identifier for admin requests.
static java.lang.String METHOD_ID
          The key used to bind the method of processing being requested by the container to the underlying PortletRquest.
static java.lang.Integer METHOD_NOOP
          The unique method identifier for noop (load) requests.
static java.lang.Integer METHOD_RENDER
          The unique method identifier for render requests.
static java.lang.String PORTLET_CONFIG
          The key used to bind the PortletConfig to the underlying PortletConfig.
static java.lang.String PORTLET_REQUEST
          The key used to bind the PortletRequest to the underlying HttpServletRequest.
static java.lang.String PORTLET_RESPONSE
          The key used to bind the PortletResponse to the underlying HttpServletRequest.
static java.lang.String SHORT_TITLE_KEY
           
static java.lang.String TITLE_KEY
           
 
Constructor Summary
Constants()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

PORTLET_REQUEST

public static final java.lang.String PORTLET_REQUEST
The key used to bind the PortletRequest to the underlying HttpServletRequest.

See Also:
Constant Field Values

PORTLET_RESPONSE

public static final java.lang.String PORTLET_RESPONSE
The key used to bind the PortletResponse to the underlying HttpServletRequest.

See Also:
Constant Field Values

PORTLET_CONFIG

public static final java.lang.String PORTLET_CONFIG
The key used to bind the PortletConfig to the underlying PortletConfig.

See Also:
Constant Field Values

TITLE_KEY

public static final java.lang.String TITLE_KEY
See Also:
Constant Field Values

SHORT_TITLE_KEY

public static final java.lang.String SHORT_TITLE_KEY
See Also:
Constant Field Values

KEYWORDS_KEY

public static final java.lang.String KEYWORDS_KEY
See Also:
Constant Field Values

METHOD_ID

public static final java.lang.String METHOD_ID
The key used to bind the method of processing being requested by the container to the underlying PortletRquest.

See Also:
Constant Field Values

METHOD_RENDER

public static final java.lang.Integer METHOD_RENDER
The unique method identifier for render requests. Render requests are requested through a call to the PortletContainer.doRender(org.apache.pluto.PortletWindow, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) method.


METHOD_ACTION

public static final java.lang.Integer METHOD_ACTION
The unique method identifier for render requests. Render requests are requested through a call to the PortletContainer.doAction(org.apache.pluto.PortletWindow, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) method.


METHOD_NOOP

public static final java.lang.Integer METHOD_NOOP
The unique method identifier for noop (load) requests. Load requests are requested through a call to the PortletContainer.doLoad(org.apache.pluto.PortletWindow, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) method.


METHOD_ADMIN

public static final java.lang.Integer METHOD_ADMIN
The unique method identifier for admin requests. Admin requests are requested through a call to the PortletContainer.doAdmin(PortletWindow, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse) method.

Constructor Detail

Constants

public Constants()


Copyright © 2003-2008 Apache Software Foundation. All Rights Reserved.