org.apache.pluto.descriptors.portlet
Class PortletAppDD

java.lang.Object
  extended by org.apache.pluto.descriptors.portlet.PortletAppDD

public class PortletAppDD
extends java.lang.Object

Portlet Application Configuration.

Since:
Mar 6, 2005

Java class for portlet-appType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="portlet-appType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="portlet" type="{http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd}portletType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="custom-portlet-mode" type="{http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd}custom-portlet-modeType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="custom-window-state" type="{http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd}custom-window-stateType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="user-attribute" type="{http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd}user-attributeType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="security-constraint" type="{http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd}security-constraintType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="resource-bundle" type="{http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd}resource-bundleType" minOccurs="0"/>
         <element name="filter" type="{http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd}filterType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="filter-mapping" type="{http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd}filter-mappingType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="event-definition" type="{http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd}event-definitionType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="public-render-parameter" type="{http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd}public-render-parameterType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 
Version:
$Id: PortletAppDD.java 157475 2005-03-14 22:13:18Z ddewolf $

Constructor Summary
PortletAppDD()
          Default Constructor.
 
Method Summary
 java.util.List<ContainerRuntimeOptionDD> getContainerRuntimeOption()
           
 java.util.List<CustomPortletModeDD> getCustomPortletMode()
           
 java.util.List<CustomWindowStateDD> getCustomWindowState()
           
 java.lang.String getDefaultNamespace()
           
 java.util.List<EventDefinitionDD> getEvents()
           
 java.util.List<FilterDD> getFilter()
           
 java.util.List<FilterMappingDD> getFilterMapping()
           
 java.util.List getPortlets()
          Retrieve the portlets which exist within this application.
 java.util.List<PublicRenderParamDD> getRender()
           
 java.lang.String getResourceBundle()
           
 java.util.List<SecurityConstraintDD> getSecurityConstraint()
           
 java.util.List<UserAttributeDD> getUserAttribute()
           
 java.lang.String getVersion()
           
 void setCustomPortletMode(java.util.List<CustomPortletModeDD> customPortletMode)
           
 void setCustomWindowState(java.util.List<CustomWindowStateDD> customWindowState)
           
 void setDefaultNamespace(java.lang.String defaultNamespace)
           
 void setEvents(java.util.List<EventDefinitionDD> events)
           
 void setFilter(java.util.List<FilterDD> filter)
           
 void setFilterMapping(java.util.List<FilterMappingDD> filterMapping)
           
 void setPortlets(java.util.List<PortletDD> portlets)
          Set the portlets that exist within this application.
 void setRender(java.util.List<PublicRenderParamDD> render)
           
 void setResourceBundle(java.lang.String resourceBundle)
           
 void setSecurityConstraint(java.util.List<SecurityConstraintDD> securityConstraint)
           
 void setUserAttribute(java.util.List<UserAttributeDD> userAttribute)
           
 void setVersion(java.lang.String version)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PortletAppDD

public PortletAppDD()
Default Constructor.

Method Detail

getPortlets

public java.util.List getPortlets()
Retrieve the portlets which exist within this application.

Returns:

setPortlets

public void setPortlets(java.util.List<PortletDD> portlets)
Set the portlets that exist within this application.

Parameters:
portlets -

getEvents

public java.util.List<EventDefinitionDD> getEvents()
Returns:
Returns the events.

setEvents

public void setEvents(java.util.List<EventDefinitionDD> events)
Parameters:
events - The events to set.

getRender

public java.util.List<PublicRenderParamDD> getRender()
Returns:
Returns the public render parameter.

setRender

public void setRender(java.util.List<PublicRenderParamDD> render)
Parameters:
render - The public render parameter to set.

getVersion

public java.lang.String getVersion()

setVersion

public void setVersion(java.lang.String version)

getCustomPortletMode

public java.util.List<CustomPortletModeDD> getCustomPortletMode()

setCustomPortletMode

public void setCustomPortletMode(java.util.List<CustomPortletModeDD> customPortletMode)

getCustomWindowState

public java.util.List<CustomWindowStateDD> getCustomWindowState()

setCustomWindowState

public void setCustomWindowState(java.util.List<CustomWindowStateDD> customWindowState)

getUserAttribute

public java.util.List<UserAttributeDD> getUserAttribute()

setUserAttribute

public void setUserAttribute(java.util.List<UserAttributeDD> userAttribute)

getSecurityConstraint

public java.util.List<SecurityConstraintDD> getSecurityConstraint()

setSecurityConstraint

public void setSecurityConstraint(java.util.List<SecurityConstraintDD> securityConstraint)

getResourceBundle

public java.lang.String getResourceBundle()

setResourceBundle

public void setResourceBundle(java.lang.String resourceBundle)

getFilter

public java.util.List<FilterDD> getFilter()

setFilter

public void setFilter(java.util.List<FilterDD> filter)

getFilterMapping

public java.util.List<FilterMappingDD> getFilterMapping()

setFilterMapping

public void setFilterMapping(java.util.List<FilterMappingDD> filterMapping)

getDefaultNamespace

public java.lang.String getDefaultNamespace()

setDefaultNamespace

public void setDefaultNamespace(java.lang.String defaultNamespace)

getContainerRuntimeOption

public java.util.List<ContainerRuntimeOptionDD> getContainerRuntimeOption()


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