Aggregate.java
1.39 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.jcr.Node
* javax.jcr.Property
* 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.ArtifactSet;
import com.day.jcr.vault.fs.api.Dumpable;
import com.day.jcr.vault.fs.api.RepositoryAddress;
import java.util.Collection;
import java.util.List;
import javax.jcr.Node;
import javax.jcr.Property;
import javax.jcr.RepositoryException;
public interface Aggregate
extends Dumpable {
public Node getNode() throws RepositoryException;
public boolean hasNode() throws RepositoryException;
public Aggregate getParent();
public String getPath();
public RepositoryAddress getRepositoryAddress() throws RepositoryException;
public boolean allowsChildren();
public String getRelPath();
public String getName();
public List<? extends Aggregate> getLeaves() throws RepositoryException;
public Aggregate getAggregate(String var1) throws RepositoryException;
public ArtifactSet getArtifacts() throws RepositoryException;
public AggregateManager getManager();
public boolean isAttached() throws RepositoryException;
public String[] getNamespacePrefixes();
public String getNamespaceURI(String var1) throws RepositoryException;
public Collection<Property> getBinaries();
}