Uses of Interface
org.apache.jackrabbit.vault.fs.io.Archive
-
Packages that use Archive Package Description org.apache.jackrabbit.vault.fs.impl org.apache.jackrabbit.vault.fs.io org.apache.jackrabbit.vault.packaging org.apache.jackrabbit.vault.packaging.impl org.apache.jackrabbit.vault.validation.context Provides common implementations ofValidationContext
-
-
Uses of Archive in org.apache.jackrabbit.vault.fs.impl
Classes in org.apache.jackrabbit.vault.fs.impl that implement Archive Modifier and Type Class Description class
ArchiveWrapper
Wrapper class that hides all implementation details from the underlying archive.class
SubPackageFilterArchive
Archive filter that suppresses the sub packages via the normal tree and allows to extract them individually.Methods in org.apache.jackrabbit.vault.fs.impl that return Archive Modifier and Type Method Description @Nullable Archive
ArchiveWrapper. getSubArchive(@NotNull String root, boolean asJcrRoot)
@Nullable Archive
SubPackageFilterArchive. getSubArchive(@NotNull String root, boolean asJcrRoot)
Constructors in org.apache.jackrabbit.vault.fs.impl with parameters of type Archive Constructor Description ArchiveWrapper(Archive archive)
SubPackageFilterArchive(Archive base)
-
Uses of Archive in org.apache.jackrabbit.vault.fs.io
Classes in org.apache.jackrabbit.vault.fs.io that implement Archive Modifier and Type Class Description class
FileArchive
Implements an archive based on the file systemclass
JcrArchive
Implements an archive that is based on nt:file/nt:folder nodes in a JCR repository.class
MappedArchive
Implements an archive wrapper that remaps the entries of an underlying archive using aPathMapping
.class
MemoryArchive
Implements anInputStreamPump.Pump
that extracts the relevant parts from the input stream into memory.class
SubArchive
Implements an archive that is based on a sub-tree of another archiveclass
ZipArchive
Implements an archive that is based on a zip file.class
ZipNioArchive
Archive leveraging Java NIO File and its Zip File System Provider.class
ZipStreamArchive
Implements an archive based on a zip stream, but deflates the entries first into a buffer and later into a temporary file, if the content length exceeds the buffer size.Methods in org.apache.jackrabbit.vault.fs.io that return Archive Modifier and Type Method Description @Nullable Archive
Archive. getSubArchive(@NotNull String root, boolean asJcrRoot)
Returns a sub archive that is rooted at the given path.Methods in org.apache.jackrabbit.vault.fs.io with parameters of type Archive Modifier and Type Method Description void
Importer. run(Archive archive, Node importRoot)
Runs the importer from the given root node.void
Importer. run(Archive archive, Session session, String parentPath)
Runs the importer with the given session.Constructors in org.apache.jackrabbit.vault.fs.io with parameters of type Archive Constructor Description MappedArchive(Archive base, PathMapping mapping)
SubArchive(Archive base, Archive.Entry root, boolean isJcrRoot)
-
Uses of Archive in org.apache.jackrabbit.vault.packaging
Methods in org.apache.jackrabbit.vault.packaging that return Archive Modifier and Type Method Description Archive
VaultPackage. getArchive()
Returns the underlying package archive.Methods in org.apache.jackrabbit.vault.packaging with parameters of type Archive Modifier and Type Method Description @NotNull PackageId[]
JcrPackageManager. extract(@NotNull Archive archive, @NotNull ImportOptions options, boolean replace)
Extracts a package directly from the given archive without uploading it to the repository first.@NotNull VaultPackage
PackageManager. open(@NotNull Archive archive)
Opens the given archive and creates a package@NotNull VaultPackage
PackageManager. open(@NotNull Archive archive, boolean strict)
Opens the given archive and creates a packagevoid
InstallHookProcessor. registerHooks(Archive archive, ClassLoader classLoader)
Register all hooks found in the given archive. -
Uses of Archive in org.apache.jackrabbit.vault.packaging.impl
Methods in org.apache.jackrabbit.vault.packaging.impl that return Archive Modifier and Type Method Description Archive
HollowVaultPackage. getArchive()
Archive
ZipVaultPackage. getArchive()
Returns the underlying package archive.Methods in org.apache.jackrabbit.vault.packaging.impl with parameters of type Archive Modifier and Type Method Description @NotNull PackageId[]
JcrPackageManagerImpl. extract(@NotNull Archive archive, @NotNull ImportOptions options, boolean replace)
Extracts a package directly from the given archive without uploading it to the repository first.@NotNull VaultPackage
PackageManagerImpl. open(@NotNull Archive archive)
Opens the given archive and creates a package@NotNull VaultPackage
PackageManagerImpl. open(@NotNull Archive archive, boolean strict)
Opens the given archive and creates a packagevoid
InstallHookProcessorImpl. registerHooks(Archive archive, ClassLoader classLoader)
void
JcrPackageDefinitionImpl. unwrap(Archive archive, boolean autoSave)
Constructors in org.apache.jackrabbit.vault.packaging.impl with parameters of type Archive Constructor Description ZipVaultPackage(Archive archive, boolean strict)
-
Uses of Archive in org.apache.jackrabbit.vault.validation.context
Constructors in org.apache.jackrabbit.vault.validation.context with parameters of type Archive Constructor Description ArchiveValidationContext(@NotNull Archive archive, @NotNull Path archivePath, @NotNull DependencyResolver resolver)
SubPackageInArchiveValidationContext(@NotNull ArchiveValidationContext containerPackageContext, @NotNull Archive archive, @NotNull Path archivePath, @NotNull DependencyResolver resolver)
-