~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/dhis14/object/Dhis14OrganisationUnitStructure.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.dhis14.object;
 
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
/**
 
31
 * @author Lars Helge Overland
 
32
 * @version $Id: Dhis14OrganisationUnitStructure.java 4646 2008-02-26 14:54:29Z larshelg $
 
33
 */
 
34
public class Dhis14OrganisationUnitStructure
 
35
{
 
36
    private String organisationUnitName;
 
37
    
 
38
    private int level;
 
39
    
 
40
    private String nameLevel1;
 
41
    
 
42
    private String nameLevel2;
 
43
    
 
44
    private String nameLevel3;
 
45
    
 
46
    private String nameLevel4;
 
47
    
 
48
    private String nameLevel5;
 
49
    
 
50
    private String nameLevel6;
 
51
    
 
52
    private String nameLevel7;
 
53
    
 
54
    private String nameLevel8;
 
55
    
 
56
    // ----------------------------------------------------------------------
 
57
    // Constructor
 
58
    // ----------------------------------------------------------------------
 
59
    
 
60
    public Dhis14OrganisationUnitStructure()
 
61
    {        
 
62
    }
 
63
 
 
64
    // ----------------------------------------------------------------------
 
65
    // Getters & setters
 
66
    // ----------------------------------------------------------------------
 
67
 
 
68
    public String getOrganisationUnitName()
 
69
    {
 
70
        return organisationUnitName;
 
71
    }
 
72
 
 
73
    public void setOrganisationUnitName( String organisationUnitName )
 
74
    {
 
75
        this.organisationUnitName = organisationUnitName;
 
76
    }
 
77
 
 
78
    public int getLevel()
 
79
    {
 
80
        return level;
 
81
    }
 
82
 
 
83
    public void setLevel( int level )
 
84
    {
 
85
        this.level = level;
 
86
    }
 
87
 
 
88
    public String getNameLevel1()
 
89
    {
 
90
        return nameLevel1;
 
91
    }
 
92
 
 
93
    public void setNameLevel1( String nameLevel1 )
 
94
    {
 
95
        this.nameLevel1 = nameLevel1;
 
96
    }
 
97
 
 
98
    public String getNameLevel2()
 
99
    {
 
100
        return nameLevel2;
 
101
    }
 
102
 
 
103
    public void setNameLevel2( String nameLevel2 )
 
104
    {
 
105
        this.nameLevel2 = nameLevel2;
 
106
    }
 
107
 
 
108
    public String getNameLevel3()
 
109
    {
 
110
        return nameLevel3;
 
111
    }
 
112
 
 
113
    public void setNameLevel3( String nameLevel3 )
 
114
    {
 
115
        this.nameLevel3 = nameLevel3;
 
116
    }
 
117
 
 
118
    public String getNameLevel4()
 
119
    {
 
120
        return nameLevel4;
 
121
    }
 
122
 
 
123
    public void setNameLevel4( String nameLevel4 )
 
124
    {
 
125
        this.nameLevel4 = nameLevel4;
 
126
    }
 
127
 
 
128
    public String getNameLevel5()
 
129
    {
 
130
        return nameLevel5;
 
131
    }
 
132
 
 
133
    public void setNameLevel5( String nameLevel5 )
 
134
    {
 
135
        this.nameLevel5 = nameLevel5;
 
136
    }
 
137
 
 
138
    public String getNameLevel6()
 
139
    {
 
140
        return nameLevel6;
 
141
    }
 
142
 
 
143
    public void setNameLevel6( String nameLevel6 )
 
144
    {
 
145
        this.nameLevel6 = nameLevel6;
 
146
    }
 
147
 
 
148
    public String getNameLevel7()
 
149
    {
 
150
        return nameLevel7;
 
151
    }
 
152
 
 
153
    public void setNameLevel7( String nameLevel7 )
 
154
    {
 
155
        this.nameLevel7 = nameLevel7;
 
156
    }
 
157
 
 
158
    public String getNameLevel8()
 
159
    {
 
160
        return nameLevel8;
 
161
    }
 
162
 
 
163
    public void setNameLevel8( String nameLevel8 )
 
164
    {
 
165
        this.nameLevel8 = nameLevel8;
 
166
    }
 
167
}