DPSPageExporter.java 957 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 *  com.day.cq.wcm.api.Page
 *  com.day.cq.wcm.api.WCMException
 *  javax.jcr.Session
 *  javax.servlet.http.HttpServletResponse
 *  org.apache.sling.api.SlingHttpServletRequest
 */
package com.adobe.cq.mobile.dps.impl;

import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.mobile.dps.impl.export.ExportOptions;
import com.day.cq.wcm.api.Page;
import com.day.cq.wcm.api.WCMException;
import java.io.OutputStream;
import javax.jcr.Session;
import javax.servlet.http.HttpServletResponse;
import org.apache.sling.api.SlingHttpServletRequest;

@ProviderType
public interface DPSPageExporter {
    public void export(Page var1, SlingHttpServletRequest var2, HttpServletResponse var3, ExportOptions var4) throws WCMException;

    public void export(Page var1, Session var2, OutputStream var3, ExportOptions var4) throws WCMException;
}