VaultFile.java
1.32 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
/*
* 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.Aggregate;
import com.day.jcr.vault.fs.api.Artifact;
import com.day.jcr.vault.fs.api.Dumpable;
import com.day.jcr.vault.fs.api.VaultFileSystem;
import java.io.IOException;
import java.util.Collection;
import javax.jcr.RepositoryException;
public interface VaultFile
extends Dumpable {
public String getPath();
public String getRepoRelPath();
public String getAggregatePath();
public String getName();
public Artifact getArtifact();
public boolean isDirectory();
public boolean isTransient();
public VaultFile getParent() throws IOException, RepositoryException;
public Aggregate getAggregate();
public Aggregate getControllingAggregate();
public VaultFile getChild(String var1) throws RepositoryException;
public Collection<? extends VaultFile> getChildren() throws RepositoryException;
public Collection<? extends VaultFile> getRelated() throws RepositoryException;
public boolean canRead();
public long lastModified();
public long length();
public String getContentType();
public VaultFileSystem getFileSystem();
public void invalidate() throws RepositoryException;
}