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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-services/dhis-service-importexport/src/main/java/org/hisp/dhis/importexport/IbatisConfiguration.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: IbatisConfiguration.java 6028 2008-10-24 13:44:34Z larshelg $
 
35
 */
 
36
public class IbatisConfiguration
 
37
    implements Serializable
 
38
{
 
39
    private String dataFile;
 
40
 
 
41
    private String userName;
 
42
 
 
43
    private String password;
 
44
 
 
45
    private String levels;
 
46
 
 
47
    // -------------------------------------------------------------------------
 
48
    // Constructors
 
49
    // -------------------------------------------------------------------------
 
50
 
 
51
    public IbatisConfiguration()
 
52
    {
 
53
    }
 
54
 
 
55
    // -------------------------------------------------------------------------
 
56
    // hashCode and equals
 
57
    // -------------------------------------------------------------------------
 
58
 
 
59
    @Override
 
60
    public int hashCode()
 
61
    {
 
62
        final int prime = 31;
 
63
 
 
64
        int result = 1;
 
65
 
 
66
        result = prime * result + ( ( dataFile == null) ? 0 : dataFile.hashCode() );
 
67
        result = prime * result + ( ( levels == null) ? 0 : levels.hashCode() );
 
68
        result = prime * result + ( ( password == null) ? 0 : password.hashCode() );
 
69
        result = prime * result + ( ( userName == null) ? 0 : userName.hashCode() );
 
70
 
 
71
        return result;
 
72
    }
 
73
 
 
74
    @Override
 
75
    public boolean equals( Object object )
 
76
    {
 
77
        if ( this == object )
 
78
        {
 
79
            return true;
 
80
        }
 
81
        
 
82
        if ( object == null )
 
83
        {
 
84
            return false;
 
85
        }
 
86
        
 
87
        if ( getClass() != object.getClass() )
 
88
        {
 
89
            return false;
 
90
        }
 
91
        
 
92
        final IbatisConfiguration other = (IbatisConfiguration) object;
 
93
        
 
94
        if ( dataFile == null )
 
95
        {
 
96
            if ( other.dataFile != null )
 
97
            {
 
98
                return false;
 
99
            }
 
100
        }
 
101
        else if ( !dataFile.equals( other.dataFile ) )
 
102
        {
 
103
            return false;
 
104
        }
 
105
        
 
106
        if ( levels == null )
 
107
        {
 
108
            if ( other.levels != null )
 
109
            {
 
110
                return false;
 
111
            }
 
112
        }
 
113
        else if ( !levels.equals( other.levels ) )
 
114
        {
 
115
            return false;
 
116
        }
 
117
        
 
118
        if ( password == null )
 
119
        {
 
120
            if ( other.password != null )
 
121
            {
 
122
                return false;
 
123
            }
 
124
        }
 
125
        else if ( !password.equals( other.password ) )
 
126
        {
 
127
            return false;
 
128
        }
 
129
        
 
130
        if ( userName == null )
 
131
        {
 
132
            if ( other.userName != null )
 
133
            {
 
134
                return false;
 
135
            }
 
136
        }
 
137
        else if ( !userName.equals( other.userName ) )
 
138
        {
 
139
            return false;
 
140
        }
 
141
        
 
142
        return true;
 
143
    }
 
144
 
 
145
    // -------------------------------------------------------------------------
 
146
    // Getters and setters
 
147
    // -------------------------------------------------------------------------
 
148
 
 
149
    public String getDataFile()
 
150
    {
 
151
        return dataFile;
 
152
    }
 
153
 
 
154
    public void setDataFile( String dataFile )
 
155
    {
 
156
        this.dataFile = dataFile;
 
157
    }
 
158
 
 
159
    public String getUserName()
 
160
    {
 
161
        return userName;
 
162
    }
 
163
 
 
164
    public void setUserName( String userName )
 
165
    {
 
166
        this.userName = userName;
 
167
    }
 
168
 
 
169
    public String getPassword()
 
170
    {
 
171
        return password;
 
172
    }
 
173
 
 
174
    public void setPassword( String password )
 
175
    {
 
176
        this.password = password;
 
177
    }
 
178
 
 
179
    public String getLevels()
 
180
    {
 
181
        return levels;
 
182
    }
 
183
 
 
184
    public void setLevels( String levels )
 
185
    {
 
186
        this.levels = levels;
 
187
    }
 
188
}