HtmlLibrary.java 1.36 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 *  javax.servlet.http.HttpServletResponse
 *  org.apache.sling.api.SlingHttpServletRequest
 *  org.apache.sling.api.SlingHttpServletResponse
 */
package com.adobe.granite.ui.clientlibs;

import aQute.bnd.annotation.ProviderType;
import com.adobe.granite.ui.clientlibs.LibraryType;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.SlingHttpServletResponse;

@ProviderType
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);
}