DPSArticle.java 884 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 */
package com.adobe.cq.mobile.dps;

import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.mobile.dps.AdType;
import com.adobe.cq.mobile.dps.DPSEntity;
import com.adobe.cq.mobile.dps.ProtectedAccess;

@ProviderType
public interface DPSArticle
extends DPSEntity {
    public String getAuthor();

    public String getAuthorURL();

    public boolean isHiddenFromBrowsePage();

    public boolean isTrustedContent();

    public ProtectedAccess getAccess();

    public boolean isAdvertisement();

    public AdType getAdType();

    public String getAdCategory();

    public String getAdvertiser();

    public String getArticleText();

    public String getSocialShareURL();

    public String getWebArticleURL();

    public String getSocialImagePath();
}