Artifact.java
1.14 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
/*
* 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.AccessType;
import com.day.jcr.vault.fs.api.ArtifactType;
import com.day.jcr.vault.fs.api.Dumpable;
import com.day.jcr.vault.fs.api.SerializationType;
import com.day.jcr.vault.fs.api.VaultInputSource;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import javax.jcr.RepositoryException;
public interface Artifact
extends Dumpable {
public String getPlatformPath();
public String getExtension();
public String getRelativePath();
public ArtifactType getType();
public SerializationType getSerializationType();
public AccessType getPreferredAccess();
public long getContentLength();
public String getContentType();
public long getLastModified();
public void spool(OutputStream var1) throws IOException, RepositoryException;
public InputStream getInputStream() throws IOException, RepositoryException;
public VaultInputSource getInputSource() throws IOException, RepositoryException;
}