Blueprint.java
3.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.day.cq.commons.Filter
* com.day.cq.commons.JSONItem
* com.day.cq.commons.LabeledResource
* com.day.cq.tagging.Tag
* com.day.cq.wcm.api.Page
* com.day.cq.wcm.api.PageManager
* com.day.cq.wcm.api.Template
* com.day.cq.wcm.api.WCMException
* com.day.cq.wcm.api.msm.Blueprint
* org.apache.sling.api.adapter.Adaptable
* org.apache.sling.api.resource.Resource
* org.apache.sling.api.resource.ValueMap
*/
package com.day.cq.wcm.msm.api;
import com.day.cq.commons.Filter;
import com.day.cq.commons.JSONItem;
import com.day.cq.commons.LabeledResource;
import com.day.cq.tagging.Tag;
import com.day.cq.wcm.api.Page;
import com.day.cq.wcm.api.PageManager;
import com.day.cq.wcm.api.Template;
import com.day.cq.wcm.api.WCMException;
import com.day.cq.wcm.msm.api.RolloutConfig;
import java.util.Calendar;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import org.apache.sling.api.adapter.Adaptable;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ValueMap;
public interface Blueprint
extends com.day.cq.wcm.api.msm.Blueprint,
LabeledResource,
Adaptable,
JSONItem {
public String getIconPath();
public String getThumbnailPath();
public Long getRanking();
public String getSitePath();
public List<RolloutConfig> getBlueprintRolloutConfig(String var1, boolean var2) throws WCMException;
@Deprecated
public PageManager getPageManager();
@Deprecated
public Resource getContentResource();
@Deprecated
public Resource getContentResource(String var1);
@Deprecated
public Iterator<Page> listChildren();
@Deprecated
public Iterator<Page> listChildren(Filter<Page> var1);
@Deprecated
public boolean hasChild(String var1);
@Deprecated
public int getDepth();
@Deprecated
public Page getParent();
@Deprecated
public Page getParent(int var1);
@Deprecated
public Page getAbsoluteParent(int var1);
@Deprecated
public ValueMap getProperties();
@Deprecated
public ValueMap getProperties(String var1);
@Deprecated
public String getPageTitle();
@Deprecated
public String getNavigationTitle();
@Deprecated
public boolean isHideInNav();
@Deprecated
public boolean hasContent();
@Deprecated
public boolean isValid();
@Deprecated
public long timeUntilValid();
@Deprecated
public Calendar getOnTime();
@Deprecated
public Calendar getOffTime();
@Deprecated
public String getLastModifiedBy();
@Deprecated
public Calendar getLastModified();
@Deprecated
public String getVanityUrl();
@Deprecated
public Tag[] getTags();
@Deprecated
public void lock() throws WCMException;
@Deprecated
public boolean isLocked();
@Deprecated
public String getLockOwner();
@Deprecated
public boolean canUnlock();
@Deprecated
public void unlock() throws WCMException;
@Deprecated
public Template getTemplate();
@Deprecated
public Locale getLanguage(boolean var1);
}