VaultFileSystem.java
1.03 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.jcr.RepositoryException
*/
package com.day.jcr.vault.fs.api;
import com.day.jcr.vault.fs.api.AggregateManager;
import com.day.jcr.vault.fs.api.VaultFile;
import com.day.jcr.vault.fs.api.VaultFsConfig;
import com.day.jcr.vault.fs.api.VaultFsTransaction;
import com.day.jcr.vault.fs.api.WorkspaceFilter;
import java.io.IOException;
import javax.jcr.RepositoryException;
public interface VaultFileSystem {
public void unmount() throws RepositoryException;
public boolean isMounted();
public VaultFile getRoot();
public AggregateManager getAggregateManager();
public VaultFile getFile(String var1) throws IOException, RepositoryException;
public VaultFile getFile(VaultFile var1, String var2) throws IOException, RepositoryException;
public VaultFsTransaction startTransaction();
public void invalidate() throws RepositoryException;
public VaultFsConfig getConfig();
public WorkspaceFilter getWorkspaceFilter();
}