Removed all DTO where possible
[pithos] / src / gr / ebs / gss / server / domain / dto / GroupDTO.java
1 /*
2  * Copyright 2007, 2008, 2009 Electronic Business Systems Ltd.
3  *
4  * This file is part of GSS.
5  *
6  * GSS is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * GSS is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with GSS.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 package gr.ebs.gss.server.domain.dto;
20
21 import java.io.Serializable;
22 import java.util.HashSet;
23 import java.util.Set;
24
25 /**
26  * @author chstath
27  */
28 public class GroupDTO implements Serializable {
29
30         /**
31          * The serial version UID.
32          */
33         private static final long serialVersionUID = 1L;
34
35         /**
36          * The persistence ID of the object.
37          */
38         private Long id;
39
40         /**
41          * The name of the group.
42          */
43         private String name;
44
45         /**
46          * The user that owns this group.
47          */
48         private UserDTO owner;
49
50         /**
51          * The set of users that belong to this group.
52          *
53          */
54         private Set<UserDTO> members = new HashSet<UserDTO>();
55
56         /**
57          * @return the id
58          */
59         public Long getId() {
60                 return id;
61         }
62
63         /**
64          * @param _id the id to set
65          */
66         public void setId(final Long _id) {
67                 id = _id;
68         }
69
70         /**
71          * @return the name
72          */
73         public String getName() {
74                 return name;
75         }
76
77         /**
78          * @param _name the name to set
79          */
80         public void setName(final String _name) {
81                 name = _name;
82         }
83
84         /**
85          * @return the owner
86          */
87         public UserDTO getOwner() {
88                 return owner;
89         }
90
91         /**
92          * @param _owner the owner to set
93          */
94         public void setOwner(final UserDTO _owner) {
95                 owner = _owner;
96         }
97
98         /**
99          * Retrieve the members.
100          *
101          * @return the members
102          */
103         public Set<UserDTO> getMembers() {
104                 return members;
105         }
106
107         /**
108          * Modify the members.
109          *
110          * @param newMembers the members to set
111          */
112         public void setMembers(final Set<UserDTO> newMembers) {
113                 members = newMembers;
114         }
115 }