HtmlLibrary.java
1.26 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.servlet.http.HttpServletResponse
* org.apache.sling.api.SlingHttpServletRequest
* org.apache.sling.api.SlingHttpServletResponse
*/
package com.day.cq.widget;
import com.day.cq.widget.LibraryType;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.SlingHttpServletResponse;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
@Deprecated
public interface HtmlLibrary {
public String getPath();
public String getPath(boolean var1);
public String getLibraryPath();
public String getName();
public String getName(boolean var1);
public LibraryType getType();
public long getLastModified();
public long getLastModified(boolean var1);
@Deprecated
public void send(HttpServletResponse var1, boolean var2) throws IOException;
public void send(SlingHttpServletRequest var1, SlingHttpServletResponse var2) throws IOException;
public InputStream getInputStream() throws IOException;
public InputStream getInputStream(boolean var1) throws IOException;
public List<String> getScripts();
public String getScripts(String var1);
}