InstallContext.java
823 Bytes
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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.jcr.Session
*/
package com.day.jcr.vault.packaging;
import com.day.jcr.vault.packaging.ImportOptions;
import com.day.jcr.vault.packaging.VaultPackage;
import javax.jcr.Session;
@Deprecated
public interface InstallContext {
public Phase getPhase();
public Session getSession();
public VaultPackage getPackage();
public ImportOptions getImportOptions();
public com.day.jcr.vault.fs.io.ImportOptions getOptions();
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
public static enum Phase {
PREPARE,
PREPARE_FAILED,
INSTALLED,
INSTALL_FAILED,
END;
private Phase() {
}
}
}