DPSEntity.java 1.11 KB
/*
 * 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.DPSObject;
import com.adobe.cq.mobile.dps.DPSProject;
import com.adobe.cq.mobile.dps.Importance;
import java.util.Date;
import java.util.Set;

@ProviderType
public interface DPSEntity
extends DPSObject {
    public DPSProject getProject();

    public String getEntityName();

    public Date getLastDPSUpload();

    public String getLastDPSUploadBy();

    public Date getLastDPSPublished();

    public String getLastDPSPublishedBy();

    public Date getLastDPSSynced();

    public boolean isImported();

    public String getShortTitle();

    public String getAbstract();

    public String getShortAbstract();

    public String getDepartment();

    public String getCategory();

    public Set<String> getKeywords();

    public Set<String> getInternalKeywords();

    public Importance getImportance();

    public String getImagePath();

    @Deprecated
    public String getTOCImagePath();
}