~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/period/Period.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.period;
 
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
/**
 
34
 * @author Kristian Nordal
 
35
 * @version $Id: Period.java 5277 2008-05-27 15:48:42Z larshelg $
 
36
 */
 
37
public class Period
 
38
    implements Serializable
 
39
{
 
40
    private int id;
 
41
 
 
42
    /**
 
43
     * Required.
 
44
     */
 
45
    private PeriodType periodType;
 
46
 
 
47
    /**
 
48
     * Required. Must be unique together with endDate.
 
49
     */
 
50
    private Date startDate;
 
51
 
 
52
    /**
 
53
     * Required. Must be unique together with startDate.
 
54
     */
 
55
    private Date endDate;
 
56
    
 
57
    /**
 
58
     * Convenience property.
 
59
     */
 
60
    private transient String name;
 
61
 
 
62
    // -------------------------------------------------------------------------
 
63
    // Constructors
 
64
    // -------------------------------------------------------------------------
 
65
 
 
66
    public Period()
 
67
    {
 
68
    }
 
69
 
 
70
    public Period( PeriodType periodType, Date startDate, Date endDate )
 
71
    {
 
72
        this.periodType = periodType;
 
73
        this.startDate = startDate;
 
74
        this.endDate = endDate;
 
75
    }
 
76
 
 
77
    // -------------------------------------------------------------------------
 
78
    // hashCode, equals and toString
 
79
    // -------------------------------------------------------------------------
 
80
 
 
81
    @Override
 
82
    public int hashCode()
 
83
    {
 
84
        int prime = 31;
 
85
        int result = 1;
 
86
 
 
87
        result = result * prime + startDate.hashCode();
 
88
        result = result * prime + endDate.hashCode();
 
89
        result = result * prime + periodType.hashCode();
 
90
        
 
91
        return result;
 
92
    }
 
93
 
 
94
    @Override
 
95
    public boolean equals( Object o )
 
96
    {
 
97
        if ( this == o )
 
98
        {
 
99
            return true;
 
100
        }
 
101
 
 
102
        if ( o == null )
 
103
        {
 
104
            return false;
 
105
        }
 
106
 
 
107
        if ( !(o instanceof Period) )
 
108
        {
 
109
            return false;
 
110
        }
 
111
 
 
112
        final Period other = (Period) o;
 
113
 
 
114
        return startDate.equals( other.getStartDate() ) && 
 
115
            endDate.equals( other.getEndDate() ) && 
 
116
            periodType.equals( other.getPeriodType() );
 
117
    }
 
118
 
 
119
    @Override
 
120
    public String toString()
 
121
    {
 
122
        return "[" + periodType.getName() + ": " + startDate + " - " + endDate + "]";
 
123
    }
 
124
 
 
125
    // -------------------------------------------------------------------------
 
126
    // Getters and setters
 
127
    // -------------------------------------------------------------------------
 
128
 
 
129
    public int getId()
 
130
    {
 
131
        return id;
 
132
    }
 
133
 
 
134
    public void setId( int id )
 
135
    {
 
136
        this.id = id;
 
137
    }
 
138
 
 
139
    public void setEndDate( Date endDate )
 
140
    {
 
141
        this.endDate = endDate;
 
142
    }
 
143
 
 
144
    public Date getEndDate()
 
145
    {
 
146
        return endDate;
 
147
    }
 
148
 
 
149
    public PeriodType getPeriodType()
 
150
    {
 
151
        return periodType;
 
152
    }
 
153
 
 
154
    public void setPeriodType( PeriodType periodType )
 
155
    {
 
156
        this.periodType = periodType;
 
157
    }
 
158
 
 
159
    public Date getStartDate()
 
160
    {
 
161
        return startDate;
 
162
    }
 
163
 
 
164
    public void setStartDate( Date startDate )
 
165
    {
 
166
        this.startDate = startDate;
 
167
    }
 
168
 
 
169
    public String getName()
 
170
    {
 
171
        return name;
 
172
    }
 
173
 
 
174
    public void setName( String name )
 
175
    {
 
176
        this.name = name;
 
177
    }
 
178
}