Page.java
2.33 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* com.day.cq.commons.Filter
* com.day.cq.commons.LabeledResource
* com.day.cq.tagging.Tag
* org.apache.sling.api.adapter.Adaptable
* org.apache.sling.api.resource.Resource
* org.apache.sling.api.resource.ValueMap
*/
package com.day.cq.wcm.api;
import aQute.bnd.annotation.ProviderType;
import com.day.cq.commons.Filter;
import com.day.cq.commons.LabeledResource;
import com.day.cq.tagging.Tag;
import com.day.cq.wcm.api.PageManager;
import com.day.cq.wcm.api.Template;
import com.day.cq.wcm.api.WCMException;
import java.util.Calendar;
import java.util.Iterator;
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;
@ProviderType
public interface Page
extends Adaptable,
LabeledResource {
public String getPath();
public PageManager getPageManager();
public Resource getContentResource();
public Resource getContentResource(String var1);
public Iterator<Page> listChildren();
public Iterator<Page> listChildren(Filter<Page> var1);
public Iterator<Page> listChildren(Filter<Page> var1, boolean var2);
public boolean hasChild(String var1);
public int getDepth();
public Page getParent();
public Page getParent(int var1);
public Page getAbsoluteParent(int var1);
public ValueMap getProperties();
public ValueMap getProperties(String var1);
public String getName();
public String getTitle();
public String getPageTitle();
public String getNavigationTitle();
public boolean isHideInNav();
public boolean hasContent();
public boolean isValid();
public long timeUntilValid();
public Calendar getOnTime();
public Calendar getOffTime();
public Calendar getDeleted();
public String getDeletedBy();
public String getLastModifiedBy();
public Calendar getLastModified();
public String getVanityUrl();
public Tag[] getTags();
public void lock() throws WCMException;
public boolean isLocked();
public String getLockOwner();
public boolean canUnlock();
public void unlock() throws WCMException;
public Template getTemplate();
public Locale getLanguage(boolean var1);
}