DataManagerPOATie.java
2.99 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.service;
import com.adobe.service.*;
import org.omg.CORBA.ORB;
import org.omg.PortableServer.POA;
public class DataManagerPOATie
extends DataManagerPOA {
private DataManagerOperations _delegate;
private POA _poa;
public DataManagerPOATie(DataManagerOperations delegate) {
this._delegate = delegate;
}
public DataManagerPOATie(DataManagerOperations delegate, POA poa) {
this._delegate = delegate;
this._poa = poa;
}
public DataManager _this() {
return DataManagerHelper.narrow(this._this_object());
}
public DataManager _this(ORB orb) {
return DataManagerHelper.narrow(this._this_object(orb));
}
public DataManagerOperations _delegate() {
return this._delegate;
}
public void _delegate(DataManagerOperations delegate) {
this._delegate = delegate;
}
public POA _default_POA() {
if (this._poa != null) {
return this._poa;
}
return super._default_POA();
}
public int getTransactionMaxInlineSize() {
return this._delegate.getTransactionMaxInlineSize();
}
public void setTransactionPropertyBytes(String name, byte[] data) {
this._delegate.setTransactionPropertyBytes(name, data);
}
public void setTransactionPropertyString(String name, String data) {
this._delegate.setTransactionPropertyString(name, data);
}
public int getTransactionPropertyLong(String name) {
return this._delegate.getTransactionPropertyLong(name);
}
public FileDataBuffer createFileDataBuffer(String filePath) throws InvalidSourceException {
return this._delegate.createFileDataBuffer(filePath);
}
public void setInvocationContext(byte[] invocationContext) {
this._delegate.setInvocationContext(invocationContext);
}
public String getTransactionPropertyString(String name) {
return this._delegate.getTransactionPropertyString(name);
}
public String getTempFileName(boolean create) {
return this._delegate.getTempFileName(create);
}
public byte[] getTransactionPropertyBytes(String name) {
return this._delegate.getTransactionPropertyBytes(name);
}
public void setTransactionMaxInlineSize(int data) {
this._delegate.setTransactionMaxInlineSize(data);
}
public FileDataBuffer createFileDataBufferFromUrl(String url) throws InvalidSourceException {
return this._delegate.createFileDataBufferFromUrl(url);
}
public void setTransactionPropertyLong(String name, int data) {
this._delegate.setTransactionPropertyLong(name, data);
}
public byte[] getInvocationContext() {
return this._delegate.getInvocationContext();
}
public void manageTempFile(String filePath) throws InvalidSourceException {
this._delegate.manageTempFile(filePath);
}
public int getDefaultMaxInlineSize() {
return this._delegate.getDefaultMaxInlineSize();
}
}