ManagerOperations.java
1.64 KB
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
43
44
45
46
47
48
49
50
51
52
53
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.service;
import com.adobe.service.ControlAgent;
import com.adobe.service.ManagerPackage.JdkLogEntry;
import com.adobe.service.ManagerPackage.LogEntry;
import com.adobe.service.NoSuchPropertyException;
import org.omg.CORBA.Object;
public interface ManagerOperations {
public void registerController(ControlAgent var1);
public void signalEvent(String var1);
public void signalStringValue(String var1, String var2);
public void signalIntValue(String var1, int var2);
public String getConfigPropertyString(String var1) throws NoSuchPropertyException;
public int getConfigPropertyInt(String var1) throws NoSuchPropertyException;
public boolean getConfigPropertyBoolean(String var1) throws NoSuchPropertyException;
public float getConfigPropertyFloat(String var1) throws NoSuchPropertyException;
public void setConfigPropertyBoolean(String var1, boolean var2) throws NoSuchPropertyException;
public void setConfigPropertyString(String var1, String var2) throws NoSuchPropertyException;
public void setConfigPropertyInt(String var1, int var2) throws NoSuchPropertyException;
public void setConfigPropertyFloat(String var1, float var2) throws NoSuchPropertyException;
public String getDeployPropertyString(String var1, String var2) throws NoSuchPropertyException;
public Object getResource(String var1);
public String getProcessTempDirPath();
public String getPersistentDirPath();
public String getNativeDirPath();
public void log(LogEntry[] var1);
public void logJdk(JdkLogEntry[] var1);
public int getJdkLogLevel(String var1);
}