DPSProject.java 1.4 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 *  com.day.cq.wcm.webservicesupport.Configuration
 *  org.apache.sling.api.resource.Resource
 */
package com.adobe.cq.mobile.dps;

import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.mobile.dps.DPSArticle;
import com.adobe.cq.mobile.dps.DPSBanner;
import com.adobe.cq.mobile.dps.DPSCollection;
import com.adobe.cq.mobile.dps.DPSException;
import com.adobe.cq.mobile.dps.DPSObject;
import com.day.cq.wcm.webservicesupport.Configuration;
import java.util.Date;
import java.util.List;
import org.apache.sling.api.resource.Resource;

@ProviderType
public interface DPSProject
extends DPSObject {
    public String getDescription();

    public List<DPSArticle> getArticles();

    public List<DPSArticle> getArticles(Resource var1);

    public DPSArticle getArticle(String var1);

    public List<DPSBanner> getBanners();

    public List<DPSBanner> getBanners(Resource var1);

    public DPSBanner getBanner(String var1);

    public List<DPSCollection> getCollections();

    public List<DPSCollection> getCollections(Resource var1);

    public DPSCollection getCollection(String var1);

    public String getExportTemplatePath();

    public Configuration getDPSConfiguration() throws DPSException;

    public Date getLastHTMLResourceDPSUpload();

    public String getLastHTMLResourceDPSUploadBy();
}