DataManagerOperations.java
1.12 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.service;
import com.adobe.service.FileDataBuffer;
import com.adobe.service.InvalidSourceException;
public interface DataManagerOperations {
public String getTempFileName(boolean var1);
public void manageTempFile(String var1) throws InvalidSourceException;
public FileDataBuffer createFileDataBuffer(String var1) throws InvalidSourceException;
public FileDataBuffer createFileDataBufferFromUrl(String var1) throws InvalidSourceException;
public byte[] getInvocationContext();
public void setInvocationContext(byte[] var1);
public int getDefaultMaxInlineSize();
public int getTransactionMaxInlineSize();
public void setTransactionMaxInlineSize(int var1);
public int getTransactionPropertyLong(String var1);
public String getTransactionPropertyString(String var1);
public byte[] getTransactionPropertyBytes(String var1);
public void setTransactionPropertyLong(String var1, int var2);
public void setTransactionPropertyString(String var1, String var2);
public void setTransactionPropertyBytes(String var1, byte[] var2);
}