|
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
|
package com.mumfrey.webprefs.interfaces;
import java.io.Serializable;
import java.util.Map;
import java.util.Set;
public interface IWebPreferencesResponse extends Serializable
{
public abstract String getResponse();
public abstract String getMessage();
public abstract Throwable getThrowable();
public abstract String getUUID();
public abstract String getServerId();
public abstract boolean hasSetters();
public abstract Set<String> getSetters();
public abstract boolean hasValues();
public abstract Map<String, String> getValues();
}
|