blob: c885ff958ee71688145079474fe214bd69996068 [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.pluto.descriptors.portlet;
import java.util.ArrayList;
import java.util.List;
/**
* Portlet Application Configuration.
*
* @author <a href="ddewolf@apache.org">David H. DeWolf</a>
* @version $Id: PortletAppDD.java 157475 2005-03-14 22:13:18Z ddewolf $
* @since Mar 6, 2005
*/
public class PortletAppDD {
/** The defined portlets within the system. */
private List portlets = new ArrayList();
/**
* Default Constructor.
*/
public PortletAppDD() {
}
/**
* Retrieve the portlets which exist within this application.
* @return
*/
public List getPortlets() {
return portlets;
}
/**
* Set the portlets that exist within this application.
* @param portlets
*/
public void setPortlets(List portlets) {
this.portlets = portlets;
}
}