~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/importexport/GroupMemberAssociation.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.importexport;
 
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
 
 
32
/**
 
33
 * @author Lars Helge Overland
 
34
 * @version $Id$
 
35
 */
 
36
public class GroupMemberAssociation
 
37
    implements Serializable
 
38
{
 
39
    private int groupId;
 
40
    
 
41
    private int memberId;
 
42
    
 
43
    private int sortOrder;
 
44
    
 
45
    private AssociationType associationType;
 
46
 
 
47
    // -------------------------------------------------------------------------
 
48
    // Constructors
 
49
    // -------------------------------------------------------------------------
 
50
 
 
51
    @SuppressWarnings( "unused" )
 
52
    private GroupMemberAssociation()
 
53
    {   
 
54
    }
 
55
    
 
56
    public GroupMemberAssociation( AssociationType associationType )
 
57
    {
 
58
        this.associationType = associationType;
 
59
    }
 
60
 
 
61
    public GroupMemberAssociation( int groupId, int memberId )
 
62
    {
 
63
        this.groupId = groupId;
 
64
        this.memberId = memberId;
 
65
        this.associationType = AssociationType.SET;
 
66
    }
 
67
 
 
68
    public GroupMemberAssociation( int groupId, int memberId, int sortOrder )
 
69
    {
 
70
        this.groupId = groupId;
 
71
        this.memberId = memberId;
 
72
        this.sortOrder = sortOrder;
 
73
        this.associationType = AssociationType.LIST;
 
74
    }
 
75
    
 
76
    // -------------------------------------------------------------------------
 
77
    // hashCode and equals
 
78
    // -------------------------------------------------------------------------
 
79
 
 
80
    @Override
 
81
    public int hashCode()
 
82
    {        
 
83
        return 31 * groupId * memberId;
 
84
    }
 
85
    
 
86
    @Override
 
87
    public boolean equals( Object o )
 
88
    {
 
89
        if ( this == o )
 
90
        {
 
91
            return true;
 
92
        }
 
93
 
 
94
        if ( o == null )
 
95
        {
 
96
            return false;
 
97
        }
 
98
 
 
99
        if ( !(o instanceof GroupMemberAssociation) )
 
100
        {
 
101
            return false;
 
102
        }
 
103
 
 
104
        final GroupMemberAssociation other = (GroupMemberAssociation) o;
 
105
 
 
106
        return groupId == other.getGroupId() && 
 
107
            memberId == other.getMemberId() && sortOrder == other.getSortOrder();
 
108
    }
 
109
    
 
110
    // -------------------------------------------------------------------------
 
111
    // Getters and setters
 
112
    // -------------------------------------------------------------------------
 
113
 
 
114
    public int getGroupId()
 
115
    {
 
116
        return groupId;
 
117
    }
 
118
 
 
119
    public void setGroupId( int groupId )
 
120
    {
 
121
        this.groupId = groupId;
 
122
    }
 
123
 
 
124
    public int getMemberId()
 
125
    {
 
126
        return memberId;
 
127
    }
 
128
 
 
129
    public void setMemberId( int memberId )
 
130
    {
 
131
        this.memberId = memberId;
 
132
    }
 
133
 
 
134
    public int getSortOrder()
 
135
    {
 
136
        return sortOrder;
 
137
    }
 
138
 
 
139
    public void setSortOrder( int sortOrder )
 
140
    {
 
141
        this.sortOrder = sortOrder;
 
142
    }
 
143
 
 
144
    public AssociationType getAssociationType()
 
145
    {
 
146
        return associationType;
 
147
    }
 
148
 
 
149
    public void setAssociationType( AssociationType associationType )
 
150
    {
 
151
        this.associationType = associationType;
 
152
    }    
 
153
}