PageManager.java
4.1 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* javax.jcr.Node
* org.apache.sling.api.resource.Resource
*/
package com.day.cq.wcm.api;
import aQute.bnd.annotation.ProviderType;
import com.day.cq.wcm.api.Page;
import com.day.cq.wcm.api.Revision;
import com.day.cq.wcm.api.Template;
import com.day.cq.wcm.api.WCMException;
import com.day.cq.wcm.api.msm.Blueprint;
import java.util.Calendar;
import java.util.Collection;
import javax.jcr.Node;
import org.apache.sling.api.resource.Resource;
@ProviderType
public interface PageManager {
public Page getPage(String var1);
public Page getContainingPage(Resource var1);
public Page getContainingPage(String var1);
public Page create(String var1, String var2, String var3, String var4) throws WCMException;
public Page create(String var1, String var2, String var3, String var4, boolean var5) throws WCMException;
public Page move(Page var1, String var2, String var3, boolean var4, boolean var5, String[] var6) throws WCMException;
public Page move(Page var1, String var2, String var3, boolean var4, boolean var5, String[] var6, String[] var7) throws WCMException;
public Resource move(Resource var1, String var2, String var3, boolean var4, boolean var5, String[] var6) throws WCMException;
public Resource move(Resource var1, String var2, String var3, boolean var4, boolean var5, String[] var6, String[] var7) throws WCMException;
public Resource copy(CopyOptions var1) throws WCMException;
public Page copy(Page var1, String var2, String var3, boolean var4, boolean var5) throws WCMException;
public Page copy(Page var1, String var2, String var3, boolean var4, boolean var5, boolean var6) throws WCMException;
public Resource copy(Resource var1, String var2, String var3, boolean var4, boolean var5) throws WCMException;
public Resource copy(Resource var1, String var2, String var3, boolean var4, boolean var5, boolean var6) throws WCMException;
public void delete(Page var1, boolean var2) throws WCMException;
public void delete(Page var1, boolean var2, boolean var3) throws WCMException;
public void delete(Resource var1, boolean var2) throws WCMException;
public void delete(Resource var1, boolean var2, boolean var3) throws WCMException;
public void order(Page var1, String var2) throws WCMException;
public void order(Page var1, String var2, boolean var3) throws WCMException;
public void order(Resource var1, String var2) throws WCMException;
public void order(Resource var1, String var2, boolean var3) throws WCMException;
public Template getTemplate(String var1);
public Collection<Template> getTemplates(String var1);
@Deprecated
public Collection<Blueprint> getBlueprints(String var1);
public Revision createRevision(Page var1) throws WCMException;
public Revision createRevision(Page var1, String var2, String var3) throws WCMException;
public Collection<Revision> getRevisions(String var1, Calendar var2) throws WCMException;
public Collection<Revision> getRevisions(String var1, Calendar var2, boolean var3) throws WCMException;
public Collection<Revision> getChildRevisions(String var1, Calendar var2) throws WCMException;
public Collection<Revision> getChildRevisions(String var1, Calendar var2, boolean var3) throws WCMException;
public Collection<Revision> getChildRevisions(String var1, String var2, Calendar var3) throws WCMException;
public Page restore(String var1, String var2) throws WCMException;
public Page restoreTree(String var1, Calendar var2) throws WCMException;
public Page restoreTree(String var1, Calendar var2, boolean var3) throws WCMException;
public void touch(Node var1, boolean var2, Calendar var3, boolean var4) throws WCMException;
public static class CopyOptions {
public Page page;
public Resource resource;
public String destination;
public String beforeName;
public boolean shallow;
public boolean resolveConflict;
public boolean autoSave;
public boolean adjustReferences;
}
}