~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/GISConfigurationStore.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 interface GISConfigurationStore
 
6
{
 
7
    public void add( String key, String value );
 
8
 
 
9
    public void delete( String key );
 
10
 
 
11
    public void update( String key, String value );
 
12
 
 
13
    public GISConfiguration get( String key );
 
14
 
 
15
    public Collection<GISConfiguration> getALL();
 
16
 
 
17
    public String getValue( String key );
 
18
 
 
19
}