Launch.java
1.04 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.apache.sling.api.resource.Resource
*/
package com.adobe.cq.launches.api;
import com.adobe.cq.launches.api.LaunchSource;
import java.util.Calendar;
import java.util.List;
import org.apache.sling.api.resource.Resource;
public interface Launch
extends Comparable<Launch> {
public Resource getResource();
public Resource getRootResource();
public List<LaunchSource> getLaunchSources();
@Deprecated
public Resource getSourceRootResource();
public String getTitle();
public Calendar getLiveDate();
public boolean isProductionReady();
public boolean isLiveCopy();
@Deprecated
public boolean isDeep();
public Calendar getCreated();
public String getCreatedBy();
public Calendar getModified();
public String getModifiedBy();
public Calendar getLastPromoted();
public String getLastPromotedBy();
public boolean containsResource(Resource var1);
@Override
public int compareTo(Launch var1);
}