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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-services/dhis-service-gis/src/main/java/org/hisp/dhis/gis/DefaultGISConfigurationService.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
import java.util.Collection;
 
4
 
 
5
public class DefaultGISConfigurationService
 
6
    implements GISConfigurationService
 
7
{
 
8
 
 
9
    // -------------------------------------------------------------------------
 
10
    // Dependencies
 
11
    // -------------------------------------------------------------------------
 
12
 
 
13
    private GISConfigurationStore gisConfigurationStore;
 
14
 
 
15
    public void setGisConfigurationStore( GISConfigurationStore gisConfigurationStore )
 
16
    {
 
17
        this.gisConfigurationStore = gisConfigurationStore;
 
18
    }
 
19
 
 
20
    public void add( String arg0, String arg1 )
 
21
    {
 
22
        gisConfigurationStore.add( arg0, arg1 );
 
23
    }
 
24
 
 
25
    public void delete( String arg0 )
 
26
    {
 
27
        gisConfigurationStore.delete( arg0 );
 
28
 
 
29
    }
 
30
 
 
31
    public GISConfiguration get( String arg0 )
 
32
    {
 
33
        // TODO Auto-generated method stub
 
34
        return gisConfigurationStore.get( arg0 );
 
35
    }
 
36
 
 
37
    public Collection<GISConfiguration> getALL()
 
38
    {
 
39
        // TODO Auto-generated method stub
 
40
        return gisConfigurationStore.getALL();
 
41
    }
 
42
 
 
43
    public String getValue( String arg0 )
 
44
    {
 
45
        // TODO Auto-generated method stub
 
46
        return gisConfigurationStore.getValue( arg0 );
 
47
    }
 
48
 
 
49
    public void update( String arg0, String arg1 )
 
50
    {
 
51
        gisConfigurationStore.update( arg0, arg1 );
 
52
    }
 
53
 
 
54
}