org.apache.wsrp4j.producer.provider.pluto
Interface WSRPDynamicInformationProvider

All Superinterfaces:
org.apache.pluto.services.information.DynamicInformationProvider
All Known Implementing Classes:
DynamicInformationProviderImpl

public interface WSRPDynamicInformationProvider
extends org.apache.pluto.services.information.DynamicInformationProvider

Extends the DynamicInformationProvider-interface of Pluto. Provides two additional constants representing attributes to be inserted into the servlet request needed to instantiate the DynamicInformationProvider.

Version:
$Id: WSRPDynamicInformationProvider.java,v 1.5 2005/08/10 15:10:25 cziegeler Exp $
Author:
Stefan Behl

Field Summary
static java.lang.String PROVIDER
          String constant representing an attribute name of a servlet request.
static java.lang.String RENDER_PARAMS
          String constant representing an attribute name of a servlet request.
static java.lang.String REQUEST
          String constant representing an attribute name of a servlet request.
 
Methods inherited from interface org.apache.pluto.services.information.DynamicInformationProvider
getPortletActionProvider, getPortletMode, getPortletURLProvider, getResourceURLProvider, getResponseContentType, getResponseContentTypes, getWindowState, isPortletModeAllowed, isWindowStateAllowed
 

Field Detail

REQUEST

public static final java.lang.String REQUEST
String constant representing an attribute name of a servlet request. Serves to store the getMarkup-, performInteraction- or performBlockingInteraction- request within the current ServletRequest.

See Also:
Constant Field Values

PROVIDER

public static final java.lang.String PROVIDER
String constant representing an attribute name of a servlet request. Serves to store the Provider within the current ServletRequest.

See Also:
Constant Field Values

RENDER_PARAMS

public static final java.lang.String RENDER_PARAMS
String constant representing an attribute name of a servlet request. Serves to store the render params within the current ServletRequest

See Also:
Constant Field Values


--