ManagerPOATie.java
3.68 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.service;
import com.adobe.service.*;
import com.adobe.service.ManagerPackage.JdkLogEntry;
import com.adobe.service.ManagerPackage.LogEntry;
import org.omg.CORBA.ORB;
import org.omg.CORBA.Object;
import org.omg.PortableServer.POA;
public class ManagerPOATie
extends ManagerPOA {
private ManagerOperations _delegate;
private POA _poa;
public ManagerPOATie(ManagerOperations delegate) {
this._delegate = delegate;
}
public ManagerPOATie(ManagerOperations delegate, POA poa) {
this._delegate = delegate;
this._poa = poa;
}
public Manager _this() {
return ManagerHelper.narrow(this._this_object());
}
public Manager _this(ORB orb) {
return ManagerHelper.narrow(this._this_object(orb));
}
public ManagerOperations _delegate() {
return this._delegate;
}
public void _delegate(ManagerOperations delegate) {
this._delegate = delegate;
}
public POA _default_POA() {
if (this._poa != null) {
return this._poa;
}
return super._default_POA();
}
public String getDeployPropertyString(String bundle, String name) throws NoSuchPropertyException {
return this._delegate.getDeployPropertyString(bundle, name);
}
public float getConfigPropertyFloat(String name) throws NoSuchPropertyException {
return this._delegate.getConfigPropertyFloat(name);
}
public void signalIntValue(String name, int value) {
this._delegate.signalIntValue(name, value);
}
public int getJdkLogLevel(String category) {
return this._delegate.getJdkLogLevel(category);
}
public void signalStringValue(String name, String value) {
this._delegate.signalStringValue(name, value);
}
public void setConfigPropertyBoolean(String name, boolean val) throws NoSuchPropertyException {
this._delegate.setConfigPropertyBoolean(name, val);
}
public String getNativeDirPath() {
return this._delegate.getNativeDirPath();
}
public String getPersistentDirPath() {
return this._delegate.getPersistentDirPath();
}
public void signalEvent(String event) {
this._delegate.signalEvent(event);
}
public int getConfigPropertyInt(String name) throws NoSuchPropertyException {
return this._delegate.getConfigPropertyInt(name);
}
public void logJdk(JdkLogEntry[] jdkLogEntries) {
this._delegate.logJdk(jdkLogEntries);
}
public boolean getConfigPropertyBoolean(String name) throws NoSuchPropertyException {
return this._delegate.getConfigPropertyBoolean(name);
}
public String getConfigPropertyString(String name) throws NoSuchPropertyException {
return this._delegate.getConfigPropertyString(name);
}
public String getProcessTempDirPath() {
return this._delegate.getProcessTempDirPath();
}
public void setConfigPropertyString(String name, String val) throws NoSuchPropertyException {
this._delegate.setConfigPropertyString(name, val);
}
public void setConfigPropertyFloat(String name, float val) throws NoSuchPropertyException {
this._delegate.setConfigPropertyFloat(name, val);
}
public void registerController(ControlAgent cb) {
this._delegate.registerController(cb);
}
public Object getResource(String resourceType) {
return this._delegate.getResource(resourceType);
}
public void setConfigPropertyInt(String name, int val) throws NoSuchPropertyException {
this._delegate.setConfigPropertyInt(name, val);
}
public void log(LogEntry[] logEntries) {
this._delegate.log(logEntries);
}
}