ConfigManager.java
850 Bytes
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
40
41
42
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.replication;
import com.day.cq.replication.AgentConfig;
import com.day.cq.replication.AgentConfigGroup;
import java.util.Map;
public interface ConfigManager {
public Map<String, AgentConfigGroup> getConfigGroups();
public Map<String, AgentConfig> getConfigurations();
public void registerListener(ConfigEventListener var1);
public void unregisterListener(ConfigEventListener var1);
public static interface ConfigEvent {
public Type getType();
public String getId();
public static enum Type {
ADDED,
UPDATED,
REMOVED;
private Type() {
}
}
}
public static interface ConfigEventListener {
public void onConfigEvent(ConfigEvent var1);
}
}