ProcessingOptions.java
1.41 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.service.InlinedDataBuffer
*/
package com.adobe.document.xmlform;
import com.adobe.service.InlinedDataBuffer;
import com.adobe.xmlformcallback.WSPair;
import org.omg.CORBA.portable.IDLEntity;
public final class ProcessingOptions
implements IDLEntity {
private static final long serialVersionUID = 1;
public InlinedDataBuffer resourceMap;
public boolean reGeneratePDF;
public byte[] callBackContext;
public WSPair[][] resourceInfo;
public boolean signablePrintPDF;
public boolean restoreDeltas;
public boolean forceRestore;
public boolean runInitializeScripts;
public InlinedDataBuffer userXCI;
public ProcessingOptions() {
}
public ProcessingOptions(InlinedDataBuffer resourceMap, boolean reGeneratePDF, byte[] callBackContext, WSPair[][] resourceInfo, boolean signablePrintPDF, boolean restoreDeltas, boolean forceRestore, boolean runInitializeScripts, InlinedDataBuffer userXCI) {
this.resourceMap = resourceMap;
this.reGeneratePDF = reGeneratePDF;
this.callBackContext = callBackContext;
this.resourceInfo = resourceInfo;
this.signablePrintPDF = signablePrintPDF;
this.restoreDeltas = restoreDeltas;
this.forceRestore = forceRestore;
this.runInitializeScripts = runInitializeScripts;
this.userXCI = userXCI;
}
}