001    /*
002     * Cumulus4j - Securing your data in the cloud - http://cumulus4j.org
003     * Copyright (C) 2011 NightLabs Consulting GmbH
004     *
005     * This program is free software: you can redistribute it and/or modify
006     * it under the terms of the GNU Affero General Public License as
007     * published by the Free Software Foundation, either version 3 of the
008     * License, or (at your option) any later version.
009     *
010     * This program is distributed in the hope that it will be useful,
011     * but WITHOUT ANY WARRANTY; without even the implied warranty of
012     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
013     * GNU Affero General Public License for more details.
014     *
015     * You should have received a copy of the GNU Affero General Public License
016     * along with this program.  If not, see <http://www.gnu.org/licenses/>.
017     */
018    package org.cumulus4j.keymanager.front.shared;
019    
020    import java.util.ArrayList;
021    import java.util.List;
022    
023    import javax.xml.bind.annotation.XmlRootElement;
024    
025    /**
026     * <p>
027     * DTO representing a list of {@link User}s.
028     * </p>
029     * @author Marco หงุ่ยตระกูล-Schulze - marco at nightlabs dot de
030     */
031    @XmlRootElement
032    public class UserList
033    {
034            private List<User> users = new ArrayList<User>();
035    
036            /**
037             * Get the users. This property is initialised to an empty {@link List}
038             * by the default constructor (i.e. never <code>null</code>, if not explicitly set).
039             * @return the users.
040             * @see #setUsers(List)
041             */
042            public List<User> getUsers() {
043                    return users;
044            }
045            /**
046             * Set the users.
047             * @param users the users.
048             * @see #getUsers()
049             */
050            public void setUsers(List<User> users) {
051                    this.users = users;
052            }
053    }