~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-api/src/main/java/org/hisp/dhis/dataelement/DataElementGroup.java

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hisp.dhis.dataelement;
 
2
 
 
3
/*
 
4
 * Copyright (c) 2004-2007, University of Oslo
 
5
 * All rights reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions are met:
 
9
 * * Redistributions of source code must retain the above copyright notice, this
 
10
 *   list of conditions and the following disclaimer.
 
11
 * * Redistributions in binary form must reproduce the above copyright notice,
 
12
 *   this list of conditions and the following disclaimer in the documentation
 
13
 *   and/or other materials provided with the distribution.
 
14
 * * Neither the name of the HISP project nor the names of its contributors may
 
15
 *   be used to endorse or promote products derived from this software without
 
16
 *   specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
20
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
21
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 
22
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
23
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
24
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 
25
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
27
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
 */
 
29
 
 
30
import java.io.Serializable;
 
31
import java.util.HashSet;
 
32
import java.util.Set;
 
33
 
 
34
/**
 
35
 * @author Kristian Nordal
 
36
 * @version $Id: DataElementGroup.java 5540 2008-08-19 10:47:07Z larshelg $
 
37
 */
 
38
public class DataElementGroup
 
39
    implements Serializable
 
40
{
 
41
    /**
 
42
     * The database internal identifier for this DataElementGroup.
 
43
     */
 
44
    private int id;
 
45
 
 
46
    /**
 
47
     * The Universally Unique Identifer for this DataElementGroup. 
 
48
     */    
 
49
    private String uuid;
 
50
    
 
51
    /**
 
52
     * The name of the DataElementGroup. Required and unique.
 
53
     */
 
54
    private String name;
 
55
 
 
56
    /**
 
57
     * The members of the DataElementGroup.
 
58
     */
 
59
    private Set<DataElement> members = new HashSet<DataElement>();
 
60
 
 
61
    // -------------------------------------------------------------------------
 
62
    // Constructors
 
63
    // -------------------------------------------------------------------------
 
64
 
 
65
    public DataElementGroup()
 
66
    {
 
67
    }
 
68
 
 
69
    public DataElementGroup( String name )
 
70
    {
 
71
        this.name = name;
 
72
    }
 
73
 
 
74
    // -------------------------------------------------------------------------
 
75
    // hashCode and equals
 
76
    // -------------------------------------------------------------------------
 
77
 
 
78
    @Override
 
79
    public int hashCode()
 
80
    {
 
81
        return name.hashCode();
 
82
    }
 
83
 
 
84
    @Override
 
85
    public boolean equals( Object o )
 
86
    {
 
87
        if ( this == o )
 
88
        {
 
89
            return true;
 
90
        }
 
91
 
 
92
        if ( o == null )
 
93
        {
 
94
            return false;
 
95
        }
 
96
 
 
97
        if ( !(o instanceof DataElementGroup) )
 
98
        {
 
99
            return false;
 
100
        }
 
101
 
 
102
        final DataElementGroup other = (DataElementGroup) o;
 
103
 
 
104
        return name.equals( other.getName() );
 
105
    }
 
106
 
 
107
    @Override
 
108
    public String toString()
 
109
    {
 
110
        return "[" + name + "]";
 
111
    }
 
112
 
 
113
    // -------------------------------------------------------------------------
 
114
    // Getters and setters
 
115
    // -------------------------------------------------------------------------
 
116
 
 
117
    public int getId()
 
118
    {
 
119
        return id;
 
120
    }
 
121
 
 
122
    public void setId( int id )
 
123
    {
 
124
        this.id = id;
 
125
    }
 
126
 
 
127
    public String getUuid()
 
128
    {
 
129
        return uuid;
 
130
    }
 
131
 
 
132
    public void setUuid( String uuid )
 
133
    {
 
134
        this.uuid = uuid;
 
135
    }
 
136
 
 
137
    public String getName()
 
138
    {
 
139
        return name;
 
140
    }
 
141
 
 
142
    public void setName( String name )
 
143
    {
 
144
        this.name = name;
 
145
    }
 
146
 
 
147
    public Set<DataElement> getMembers()
 
148
    {
 
149
        return members;
 
150
    }
 
151
 
 
152
    public void setMembers( Set<DataElement> members )
 
153
    {
 
154
        this.members = members;
 
155
    }
 
156
}