~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/dataset/CompleteDataSetRegistration.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.dataset;
 
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.Date;
 
32
 
 
33
import org.hisp.dhis.period.Period;
 
34
import org.hisp.dhis.source.Source;
 
35
 
 
36
/**
 
37
 * @author Lars Helge Overland
 
38
 * @version $Id$
 
39
 */
 
40
public class CompleteDataSetRegistration
 
41
    implements Serializable
 
42
{
 
43
    private DataSet dataSet;
 
44
 
 
45
    private Period period;
 
46
    
 
47
    private Source source;
 
48
    
 
49
    private Date date;
 
50
    
 
51
    // -------------------------------------------------------------------------
 
52
    // Constructors
 
53
    // -------------------------------------------------------------------------
 
54
 
 
55
    public CompleteDataSetRegistration()
 
56
    {   
 
57
    }
 
58
 
 
59
    public CompleteDataSetRegistration( DataSet dataSet, Period period, Source source, Date date )
 
60
    {
 
61
        this.dataSet = dataSet;
 
62
        this.period = period;
 
63
        this.source = source;
 
64
        this.date = date;
 
65
    }
 
66
 
 
67
    // -------------------------------------------------------------------------
 
68
    // HashCode and equals
 
69
    // -------------------------------------------------------------------------
 
70
 
 
71
    @Override
 
72
    public int hashCode()
 
73
    {
 
74
        final int prime = 31;
 
75
        
 
76
        int result = 1;
 
77
        
 
78
        result = prime * result + ( ( dataSet == null ) ? 0 : dataSet.hashCode() );
 
79
        result = prime * result + ( ( period == null ) ? 0 : period.hashCode() );
 
80
        result = prime * result + ( ( source == null ) ? 0 : source.hashCode() );
 
81
        
 
82
        return result;
 
83
    }
 
84
 
 
85
    @Override
 
86
    public boolean equals( Object object )
 
87
    {
 
88
        if ( this == object )
 
89
        {
 
90
            return true;
 
91
        }
 
92
        
 
93
        if ( object == null )
 
94
        {
 
95
            return false;
 
96
        }
 
97
        
 
98
        if ( getClass() != object.getClass() )
 
99
        {
 
100
            return false;
 
101
        }
 
102
        
 
103
        final CompleteDataSetRegistration other = (CompleteDataSetRegistration) object;
 
104
        
 
105
        if ( dataSet == null )
 
106
        {
 
107
            if ( other.dataSet != null )
 
108
            {
 
109
                return false;
 
110
            }
 
111
        }
 
112
        else if ( !dataSet.equals( other.dataSet ) )
 
113
        {
 
114
            return false;
 
115
        }
 
116
        
 
117
        if ( period == null )
 
118
        {
 
119
            if ( other.period != null )
 
120
            {
 
121
                return false;
 
122
            }
 
123
        }
 
124
        else if ( !period.equals( other.period ) )
 
125
        {
 
126
            return false;
 
127
        }
 
128
        
 
129
        if ( source == null )
 
130
        {
 
131
            if ( other.source != null )
 
132
            {
 
133
                return false;
 
134
            }
 
135
        }
 
136
        else if ( !source.equals( other.source ) )
 
137
        {
 
138
            return false;
 
139
        }
 
140
        
 
141
        return true;
 
142
    }
 
143
    
 
144
    @Override
 
145
    public String toString()
 
146
    {
 
147
        String toString = "[" + dataSet + ", " + period + ", " + source + ", " + date + "]";
 
148
        
 
149
        return toString;
 
150
    }
 
151
        
 
152
    // -------------------------------------------------------------------------
 
153
    // Getters and setters
 
154
    // -------------------------------------------------------------------------
 
155
 
 
156
    public DataSet getDataSet()
 
157
    {
 
158
        return dataSet;
 
159
    }
 
160
 
 
161
    public void setDataSet( DataSet dataSet )
 
162
    {
 
163
        this.dataSet = dataSet;
 
164
    }
 
165
 
 
166
    public Period getPeriod()
 
167
    {
 
168
        return period;
 
169
    }
 
170
 
 
171
    public void setPeriod( Period period )
 
172
    {
 
173
        this.period = period;
 
174
    }
 
175
    
 
176
    public Source getSource()
 
177
    {
 
178
        return source;
 
179
    }
 
180
 
 
181
    public void setSource( Source source )
 
182
    {
 
183
        this.source = source;
 
184
    }
 
185
 
 
186
    public Date getDate()
 
187
    {
 
188
        return date;
 
189
    }
 
190
 
 
191
    public void setDate( Date date )
 
192
    {
 
193
        this.date = date;
 
194
    }
 
195
}