~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/gis/GISConfiguration.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.gis;
 
2
 
 
3
public class GISConfiguration
 
4
{
 
5
    public static final String AggregationService = "aggregation_service";
 
6
    
 
7
    public static final String AggregatedIndicatorValue  = "aggregated_indicator_value";
 
8
    
 
9
    public static final String KEY_DIRECTORY = "directory";
 
10
    
 
11
    public static final String KEY_GETINDICATOR = "getindicator";
 
12
    
 
13
    private int id;
 
14
    
 
15
    private String key;
 
16
    
 
17
    private String value;    
 
18
 
 
19
    public GISConfiguration( String key, String value )
 
20
    {
 
21
        super();
 
22
        this.key = key;
 
23
        this.value = value;
 
24
    }
 
25
 
 
26
 
 
27
    public String getKey()
 
28
    {
 
29
        return key;
 
30
    }
 
31
 
 
32
 
 
33
    public void setKey( String key )
 
34
    {
 
35
        this.key = key;
 
36
    }
 
37
 
 
38
 
 
39
    public String getValue()
 
40
    {
 
41
        return value;
 
42
    }
 
43
 
 
44
 
 
45
    public void setValue( String value )
 
46
    {
 
47
        this.value = value;
 
48
    }
 
49
 
 
50
 
 
51
    public GISConfiguration()
 
52
    {
 
53
        super();
 
54
    }
 
55
 
 
56
  
 
57
    public int getId()
 
58
    {
 
59
        return id;
 
60
    }
 
61
 
 
62
    public void setId( int id )
 
63
    {
 
64
        this.id = id;
 
65
    }
 
66
 
 
67
   
 
68
    
 
69
    
 
70
}