PageExporter.java
897 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.day.cq.wcm.api.Page
* com.day.cq.wcm.api.WCMException
* javax.servlet.http.HttpServletResponse
* org.apache.sling.api.SlingHttpServletRequest
* org.apache.sling.api.resource.ResourceResolver
*/
package com.day.cq.wcm.contentsync;
import com.day.cq.wcm.api.Page;
import com.day.cq.wcm.api.WCMException;
import javax.servlet.http.HttpServletResponse;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.resource.ResourceResolver;
public interface PageExporter {
public void export(Page var1, ResourceResolver var2, HttpServletResponse var3) throws WCMException;
public void export(Page var1, SlingHttpServletRequest var2, HttpServletResponse var3) throws WCMException;
public void export(Page var1, ResourceResolver var2, String var3) throws WCMException;
}