Template.java
1.47 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* com.day.cq.commons.JSONItem
* com.day.cq.commons.LabeledResource
* org.apache.sling.api.adapter.Adaptable
* org.apache.sling.api.resource.Resource
* org.apache.sling.api.resource.ValueMap
* org.apache.sling.commons.json.JSONException
* org.apache.sling.commons.json.io.JSONWriter
*/
package com.day.cq.wcm.api;
import aQute.bnd.annotation.ProviderType;
import com.day.cq.commons.JSONItem;
import com.day.cq.commons.LabeledResource;
import org.apache.sling.api.adapter.Adaptable;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ValueMap;
import org.apache.sling.commons.json.JSONException;
import org.apache.sling.commons.json.io.JSONWriter;
@ProviderType
public interface Template
extends Adaptable,
LabeledResource,
JSONItem {
public String getPath();
public String getTitle();
public String getShortTitle();
public String getDescription();
public String getIconPath();
public String getThumbnailPath();
public Long getRanking();
public boolean isAllowed(String var1);
public boolean isAllowed(Resource var1);
public boolean isAllowedChild(Template var1);
public void write(JSONWriter var1) throws JSONException;
public String getInitialContentPath();
public ValueMap getProperties();
public boolean hasStructureSupport();
public String getPageTypePath();
}