Proxy.java
2.13 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.jcr.Binary
* javax.servlet.http.HttpServletRequest
* org.apache.http.Header
* org.apache.http.auth.Credentials
*/
package com.day.crx.packaging;
import com.day.crx.packaging.ProxyTracker;
import org.apache.http.Header;
import org.apache.http.auth.Credentials;
import javax.jcr.Binary;
import javax.servlet.http.HttpServletRequest;
import java.io.*;
public interface Proxy {
public ProxyTracker getTracker();
public void setTracker(ProxyTracker var1);
public void setContextPath(String var1);
public void setIdString(String var1);
public void addExtraParameter(String var1, String var2);
public void addExtraHeader(String var1, String var2);
public void addExtraParameters(HttpServletRequest var1);
public void addExtraFile(String var1, File var2) throws FileNotFoundException;
public void addExtraFile(String var1, File var2, String var3) throws FileNotFoundException;
public void addExtraFile(String var1, Binary var2, String var3) throws FileNotFoundException;
public boolean isIgnoreTypeAttribute();
public void setIgnoreTypeAttribute(boolean var1);
public void setWriter(PrintWriter var1);
public String rewriteURL(String var1, boolean var2);
public Credentials getCredentials();
public void setCredentials(Credentials var1);
public int doGet(String var1) throws IOException;
public int doPost(String var1) throws IOException;
public void close();
public boolean isHtml();
public String getContentType();
public String getLastModified();
public void setLastModified(String var1);
public long getContentLength();
public String getLocation(boolean var1, boolean var2);
public Header getResponseHeader(String var1);
public String getResponseHeaderValue(String var1);
public void rewrite(Writer var1) throws IOException;
public int spool(OutputStream var1) throws IOException;
public void spoolCss(Writer var1) throws IOException;
public String fetch() throws IOException;
public void setFollowRedirects(boolean var1);
}