Uses of Interface
org.apache.jackrabbit.vault.fs.api.Artifact
- 
Packages that use Artifact Package Description org.apache.jackrabbit.vault.fs.api org.apache.jackrabbit.vault.fs.impl 
- 
- 
Uses of Artifact in org.apache.jackrabbit.vault.fs.apiSubinterfaces of Artifact in org.apache.jackrabbit.vault.fs.api Modifier and Type Interface Description interfaceExportArtifactMarker interface that denotes an artifact that is exported by jcr fs.interfaceImportArtifactMarker interface that denotes an artifact that is imported into jcr fs.Methods in org.apache.jackrabbit.vault.fs.api that return Artifact Modifier and Type Method Description ArtifactVaultFile. getArtifact()Returns the underlying artifact for this os file.ArtifactArtifactSet. getDirectory()Returns the directory artifact ornull.ArtifactArtifactSet. getPrimaryData()Returns the primary data artifact ornull.ArtifactArtifactIterator. nextArtifact()Returns the next artifact in the iteration.Methods in org.apache.jackrabbit.vault.fs.api that return types with arguments of type Artifact Modifier and Type Method Description Collection<Artifact>ArtifactSet. removed()Returns the collection of removed artifactsCollection<Artifact>ArtifactSet. values()Returns a collection of all artifactsCollection<Artifact>ArtifactSet. values(ArtifactType type)Returns a collection of all artifacts that have the given type.Methods in org.apache.jackrabbit.vault.fs.api with parameters of type Artifact Modifier and Type Method Description voidArtifactSet. add(Artifact artifact)Adds an artifactsMethod parameters in org.apache.jackrabbit.vault.fs.api with type arguments of type Artifact Modifier and Type Method Description voidArtifactSet. addAll(Collection<? extends Artifact> artifacts)Adds a collection of artifacts
- 
Uses of Artifact in org.apache.jackrabbit.vault.fs.implClasses in org.apache.jackrabbit.vault.fs.impl that implement Artifact Modifier and Type Class Description classAbstractArtifactImplements a generic abstract artifactclassDirectoryArtifactImplements a generic directory artifact.classHintArtifactImplements a generic hint artifact.classPropertyValueArtifactImplements a artifact that is based on a property value.classSerializerArtifactImplements an output artifact that is based on a serializer, i.e. the preferred access method isAccessType.SPOOLMethods in org.apache.jackrabbit.vault.fs.impl that return Artifact Modifier and Type Method Description ArtifactArtifactSetImpl. getArtifact(String path)Returns the artifact with the given path ornullif it does not exist.ArtifactVaultFileImpl. getArtifact()ArtifactArtifactSetImpl. getDirectory()ArtifactArtifactSetImpl. getPrimaryData()ArtifactArtifactSetImpl. put(Artifact a)Puts the given artifact to this set.Methods in org.apache.jackrabbit.vault.fs.impl that return types with arguments of type Artifact Modifier and Type Method Description Collection<Artifact>ArtifactSetImpl. removed()Returns the collection of removed artifactsCollection<Artifact>ArtifactSetImpl. values()Returns a collection of all artifactsCollection<Artifact>ArtifactSetImpl. values(ArtifactType type)Returns a collection of all artifacts that have the given type.Methods in org.apache.jackrabbit.vault.fs.impl with parameters of type Artifact Modifier and Type Method Description voidArtifactSetImpl. add(Artifact artifact)Collection<PropertyValueArtifact>ArtifactSetImpl. add(Artifact parent, String relPath, String ext, ArtifactType type, Property prop, long lastModified)Adds anPropertyValueArtifactwith the given name, type and serializerSerializerArtifactArtifactSetImpl. add(Artifact parent, String name, String ext, ArtifactType type, Serializer ser, long lastModified)Adds anSerializerArtifactwith the given name, type and serializer.voidAggregateBuilder. addArtifact(Artifact artifact)Adds an artifact to the outputprotected voidVaultFileImpl. attach(VaultFileNode node, Artifact a)static Collection<PropertyValueArtifact>PropertyValueArtifact. create(Artifact parent, String relPath, String ext, ArtifactType type, Property prop, long lastModified)Creates a collection ofPropertyValueArtifactfrom the given property.protected voidVaultFileImpl. init(VaultFileNode node, Artifact a)(re)initializes this fileArtifactArtifactSetImpl. put(Artifact a)Puts the given artifact to this set.booleanArtifactSetImpl. remove(Artifact a)Removes the artifact from this set.Method parameters in org.apache.jackrabbit.vault.fs.impl with type arguments of type Artifact Modifier and Type Method Description voidArtifactSetImpl. addAll(Collection<? extends Artifact> artifacts)Constructors in org.apache.jackrabbit.vault.fs.impl with parameters of type Artifact Constructor Description AbstractArtifact(Artifact parent, String repoRelPath, String extension, ArtifactType type)Creates a new abstract artifact with the given repository name, platform extension and and type. the parent artifact is only used for generating the paths and is not linked to this artifact.AbstractArtifact(Artifact base, ArtifactType type)Creates a new abstract artifact initialized with the values from the given one.PropertyValueArtifact(Artifact parent, String relPath, String ext, ArtifactType type, Property prop, int index, long lastModified)PropertyValueArtifact(Artifact parent, String relPath, String ext, ArtifactType type, Property prop, long lastModified)SerializerArtifact(Artifact parent, String name, String ext, ArtifactType type, Serializer serializer, long lastModified)Constructs a new artifact that is based on a content serializer.VaultFileImpl(VaultFileSystem fs, String name, VaultFileNode node, Artifact artifact)Internal constructor
 
-