Response.java
1.61 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.day.jcr.vault.fs.api.ProgressTrackerListener
* javax.servlet.http.HttpServletResponse
*/
package com.day.crx.packaging.impl.response;
import com.day.crx.packaging.ProxyTracker;
import com.day.crx.packaging.impl.RequestWrapper;
import com.day.jcr.vault.fs.api.ProgressTrackerListener;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
public interface Response
extends ProgressTrackerListener {
public static final String TEXT_HTML_UTF8 = "text/html; charset=utf-8";
public static final String APPLICATION_JSON_UTF8 = "application/json; charset=utf-8";
public void setCRXRequestResponse(RequestWrapper var1, HttpServletResponse var2);
public RequestWrapper getServletRequest();
public HttpServletResponse getServletResponse();
public void init() throws IOException;
public void start(String var1) throws IOException;
public /* varargs */ void log(String var1, Object ... var2);
public void setPath(String var1) throws IOException;
public void setAlertMessage(String var1) throws IOException;
public void success(String var1) throws IOException;
public void success(String var1, String var2) throws IOException;
public void error(String var1) throws IOException;
public void error(String var1, Throwable var2) throws IOException;
public ShareTracker getTracker(String var1, String var2);
public void send() throws IOException;
public static interface ShareTracker
extends ProxyTracker {
public void message(String var1, String var2);
}
}