IOutputContext.java
1 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.idp.Document
*/
package com.adobe.livecycle.formsservice.client.interfaces;
import com.adobe.idp.Document;
import java.io.Serializable;
import java.io.UnsupportedEncodingException;
import java.util.List;
public interface IOutputContext
extends Serializable {
public Document getOutputContent() throws UnsupportedEncodingException;
public String getContentType();
public String getCharSet();
public String getClickedBtn();
public String getOutputString();
public Document getOutputXML();
public void setOutputXML(Document var1);
public Document getValidationErrorsList();
public short getAction();
public String getTransformationID();
public String getOptions();
public String getOption(String var1);
public Document getXMLData();
public String getFormQuery();
public long getPageNumber();
public long getPageCount();
public List getAttachments();
}