JcrPackageDefinition.java
4.05 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.jcr.Node
* javax.jcr.RepositoryException
*/
package com.day.jcr.vault.packaging;
import com.day.jcr.vault.fs.api.ProgressTrackerListener;
import com.day.jcr.vault.fs.api.WorkspaceFilter;
import com.day.jcr.vault.fs.config.MetaInf;
import com.day.jcr.vault.fs.io.AccessControlHandling;
import com.day.jcr.vault.packaging.Dependency;
import com.day.jcr.vault.packaging.PackageId;
import com.day.jcr.vault.packaging.VaultPackage;
import java.io.IOException;
import java.util.Calendar;
import javax.jcr.Node;
import javax.jcr.RepositoryException;
@Deprecated
public interface JcrPackageDefinition {
public static final String PN_LAST_UNPACKED = "lastUnpacked";
public static final String PN_LAST_UNPACKED_BY = "lastUnpackedBy";
public static final String PN_CREATED = "jcr:created";
public static final String PN_CREATED_BY = "jcr:createdBy";
public static final String PN_LASTMODIFIED = "jcr:lastModified";
public static final String PN_LASTMODIFIED_BY = "jcr:lastModifiedBy";
public static final String PN_LAST_WRAPPED = "lastWrapped";
public static final String PN_LAST_WRAPPED_BY = "lastWrappedBy";
public static final String PN_DESCRIPTION = "jcr:description";
public static final String PN_VERSION = "version";
public static final String PN_BUILD_COUNT = "buildCount";
@Deprecated
public static final String PN_PATH = "path";
public static final String PN_NAME = "name";
public static final String PN_GROUP = "group";
public static final String PN_REQUIRES_ROOT = "requiresRoot";
public static final String PN_REQUIRES_RESTART = "requiresRestart";
public static final String PN_DEPENDENCIES = "dependencies";
public static final String PN_SUB_PACKAGES = "subPackages";
public static final String PN_LAST_UNWRAPPED = "lastUnwrapped";
public static final String PN_LAST_UNWRAPPED_BY = "lastUnwrappedBy";
public static final String PN_AC_HANDLING = "acHandling";
public static final String PN_CND_PATTERN = "cndPattern";
public static final String NN_FILTER = "filter";
public static final String PN_ROOT = "root";
public static final String PN_MODE = "mode";
public static final String PN_RULES = "rules";
public static final String PN_TYPE = "type";
public static final String PN_PATTERN = "pattern";
public static final String PN_DISABLE_INTERMEDIATE_SAVE = "noIntermediateSaves";
public Node getNode();
public PackageId getId();
public void setId(PackageId var1, boolean var2);
public boolean isUnwrapped();
public boolean isModified();
@Deprecated
public void unwrap(VaultPackage var1, boolean var2) throws RepositoryException, IOException;
public void unwrap(VaultPackage var1, boolean var2, boolean var3) throws RepositoryException, IOException;
public void dumpCoverage(ProgressTrackerListener var1) throws RepositoryException;
public Dependency[] getDependencies();
public String get(String var1);
public boolean getBoolean(String var1);
public Calendar getCalendar(String var1);
public void set(String var1, String var2, boolean var3);
public void set(String var1, Calendar var2, boolean var3);
public void set(String var1, boolean var2, boolean var3);
public void touch(Calendar var1, boolean var2);
public void setFilter(WorkspaceFilter var1, boolean var2);
public Calendar getLastModified();
public String getLastModifiedBy();
public Calendar getCreated();
public String getCreatedBy();
public Calendar getLastWrapped();
public String getLastWrappedBy();
public Calendar getLastUnwrapped();
public String getLastUnwrappedBy();
public Calendar getLastUnpacked();
public String getLastUnpackedBy();
@Deprecated
public boolean requiresRoot();
public boolean requiresRestart();
public AccessControlHandling getAccessControlHandling();
public String getDescription();
public long getBuildCount();
public MetaInf getMetaInf() throws RepositoryException;
}