LiveStatus.java
854 Bytes
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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* com.day.cq.commons.JSONItem
*/
package com.day.cq.wcm.msm.api;
import aQute.bnd.annotation.ProviderType;
import com.day.cq.commons.JSONItem;
import java.util.Date;
import java.util.List;
import java.util.Map;
@ProviderType
public interface LiveStatus
extends JSONItem {
public boolean isCancelled();
public boolean isCancelledForChildren();
public boolean isEditable();
public boolean isSourceExisting();
public boolean isTargetExisting();
public Map<String, Boolean> getAdvancedStatus();
public Boolean getAdvancedStatus(String var1);
public boolean isPage();
public List<String> getCanceledProperties();
public String getLastRolledOutBy();
public Date getLastRolledOut();
}