summaryrefslogtreecommitdiff
path: root/same/src/main/java/com/orbekk/same/SameInterface.java
blob: a0a789446be00741f6637ced0b2d1d4561b5171f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.orbekk.same;

import java.util.List;

import org.codehaus.jackson.type.TypeReference;

@Deprecated
public interface SameInterface {
    /**
     * Get the state with identifier 'id'.
     */
    String get(String id);
    
    /**
     * Get the state with identifier 'id', converted to a Java
     * object of type T using Jackson.
     */
    <T> T get(String id, TypeReference<T> type);
    
    /**
     * Get the state with identifier 'id' as a list.
     */
    List<String> getList(String id);
    
    /**
     * Set the state.
     * 
     * @throws UpdateConflictException
     */
    void set(String id, String data) throws UpdateConflict;

    /**
     * Set from an object: Pass it, e.g., a List<String>.
     */
    void setObject(String id, Object data);
    
    void addStateChangedListener(StateChangedListener listener);
    void removeStateChangedListener(StateChangedListener listener);
}