001/*
002 * This library is part of OpenCms -
003 * the Open Source Content Management System
004 *
005 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
006 *
007 * This library is free software; you can redistribute it and/or
008 * modify it under the terms of the GNU Lesser General Public
009 * License as published by the Free Software Foundation; either
010 * version 2.1 of the License, or (at your option) any later version.
011 *
012 * This library is distributed in the hope that it will be useful,
013 * but WITHOUT ANY WARRANTY; without even the implied warranty of
014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
015 * Lesser General Public License for more details.
016 *
017 * For further information about Alkacon Software, please see the
018 * company website: http://www.alkacon.com
019 *
020 * For further information about OpenCms, please see the
021 * project website: http://www.opencms.org
022 *
023 * You should have received a copy of the GNU Lesser General Public
024 * License along with this library; if not, write to the Free Software
025 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
026 */
027
028package org.opencms.xml.containerpage;
029
030import java.util.List;
031import java.util.Set;
032
033/**
034 * A group container.<p>
035 *
036 * @since 8.0.0
037 */
038public class CmsGroupContainerBean {
039
040    /** The group container description. */
041    private String m_description;
042
043    /** The group container elements.*/
044    private List<CmsContainerElementBean> m_elements;
045
046    /** The group container title. */
047    private String m_title;
048
049    /** The supported container types. */
050    private Set<String> m_types;
051
052    /**
053     * Creates a new group container bean.<p>
054     *
055     * @param title the group container title
056     * @param description the group container description
057     * @param elements the group container elements
058     * @param types the supported container types
059     */
060    public CmsGroupContainerBean(
061        String title,
062        String description,
063        List<CmsContainerElementBean> elements,
064        Set<String> types) {
065
066        m_title = title;
067        m_description = description;
068        m_elements = elements;
069        m_types = types;
070    }
071
072    /**
073     * Returns the description.<p>
074     *
075     * @return the description
076     */
077    public String getDescription() {
078
079        return m_description;
080    }
081
082    /**
083     * Returns the elements.<p>
084     *
085     * @return the elements
086     */
087    public List<CmsContainerElementBean> getElements() {
088
089        return m_elements;
090    }
091
092    /**
093     * Returns the title.<p>
094     *
095     * @return the title
096     */
097    public String getTitle() {
098
099        return m_title;
100    }
101
102    /**
103     * Returns the types.<p>
104     *
105     * @return the types
106     */
107    public Set<String> getTypes() {
108
109        return m_types;
110    }
111}