DPSEntity.java
1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* 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();
}