Uses of Class
org.codehaus.plexus.archiver.ArchiverException

Packages that use ArchiverException
org.codehaus.plexus.archiver   
org.codehaus.plexus.archiver.bzip2   
org.codehaus.plexus.archiver.dir   
org.codehaus.plexus.archiver.ear   
org.codehaus.plexus.archiver.gzip   
org.codehaus.plexus.archiver.jar   
org.codehaus.plexus.archiver.tar   
org.codehaus.plexus.archiver.util   
org.codehaus.plexus.archiver.war   
org.codehaus.plexus.archiver.zip   
 

Uses of ArchiverException in org.codehaus.plexus.archiver
 

Methods in org.codehaus.plexus.archiver that throw ArchiverException
 void UnArchiver.extract()
          Extract the archive.
 void UnArchiver.extract(java.lang.String path, java.io.File outputDirectory)
          Take a patch into the archive and extract it to the specified directory.
 boolean ResourceIterator.hasNext()
           
 ArchiveEntry ResourceIterator.next()
           
 void DotDirectiveArchiveFinalizer.finalizeArchiveCreation(Archiver archiver)
           
 void Archiver.createArchive()
           
 void Archiver.addDirectory(java.io.File directory)
          Obsolete, use Archiver.addFileSet(FileSet).
 void Archiver.addDirectory(java.io.File directory, java.lang.String prefix)
          Obsolete, use Archiver.addFileSet(FileSet).
 void Archiver.addDirectory(java.io.File directory, java.lang.String[] includes, java.lang.String[] excludes)
          Obsolete, use Archiver.addFileSet(FileSet).
 void Archiver.addDirectory(java.io.File directory, java.lang.String prefix, java.lang.String[] includes, java.lang.String[] excludes)
          Obsolete, use Archiver.addFileSet(FileSet).
 void Archiver.addFileSet(FileSet fileSet)
          Adds the given file set to the archive.
 void Archiver.addFile(java.io.File inputFile, java.lang.String destFileName)
           
 void Archiver.addFile(java.io.File inputFile, java.lang.String destFileName, int permissions)
           
 void Archiver.addArchivedFileSet(java.io.File archiveFile)
           
 void Archiver.addArchivedFileSet(java.io.File archiveFile, java.lang.String prefix)
           
 void Archiver.addArchivedFileSet(java.io.File archiveFile, java.lang.String[] includes, java.lang.String[] excludes)
           
 void Archiver.addArchivedFileSet(java.io.File archiveFile, java.lang.String prefix, java.lang.String[] includes, java.lang.String[] excludes)
           
 void Archiver.addArchivedFileSet(ArchivedFileSet fileSet)
          Adds the given archive file set to the archive.
 void Archiver.addResource(org.codehaus.plexus.components.io.resources.PlexusIoResource resource, java.lang.String destFileName, int permissions)
          Adds the given resource collection to the archive.
 void Archiver.addResources(org.codehaus.plexus.components.io.resources.PlexusIoResourceCollection resources)
          Adds the given resource collection to the archive.
 ResourceIterator Archiver.getResources()
          Returns an iterator over instances of ArchiveEntry, which have previously been added by calls to Archiver.addResources(PlexusIoResourceCollection), Archiver.addResource(PlexusIoResource, String, int), Archiver.addFileSet(FileSet), etc.
 void ArchiveFinalizer.finalizeArchiveCreation(Archiver archiver)
           
 void ArchiveFinalizer.finalizeArchiveExtraction(UnArchiver unarchiver)
           
static ArchiveEntry ArchiveEntry.createFileEntry(java.lang.String target, org.codehaus.plexus.components.io.resources.PlexusIoResource resource, int permissions)
           
static ArchiveEntry ArchiveEntry.createFileEntry(java.lang.String target, java.io.File file, int permissions)
           
static ArchiveEntry ArchiveEntry.createDirectoryEntry(java.lang.String target, org.codehaus.plexus.components.io.resources.PlexusIoResource resource, int permissions)
           
static ArchiveEntry ArchiveEntry.createDirectoryEntry(java.lang.String target, java.io.File file, int permissions)
           
static ArchiveEntry ArchiveEntry.createEntry(java.lang.String target, java.io.File file, int filePerm, int dirPerm)
           
 void AbstractUnArchiver.extract()
           
 void AbstractUnArchiver.extract(java.lang.String path, java.io.File outputDirectory)
           
protected  void AbstractUnArchiver.validate()
           
protected  boolean AbstractUnArchiver.isSelected(java.lang.String fileName, org.codehaus.plexus.components.io.resources.PlexusIoResource fileInfo)
           
protected abstract  void AbstractUnArchiver.execute()
           
protected abstract  void AbstractUnArchiver.execute(java.lang.String path, java.io.File outputDirectory)
           
 void AbstractArchiver.addDirectory(java.io.File directory)
           
 void AbstractArchiver.addDirectory(java.io.File directory, java.lang.String prefix)
           
 void AbstractArchiver.addDirectory(java.io.File directory, java.lang.String[] includes, java.lang.String[] excludes)
           
 void AbstractArchiver.addDirectory(java.io.File directory, java.lang.String prefix, java.lang.String[] includes, java.lang.String[] excludes)
           
 void AbstractArchiver.addFileSet(FileSet fileSet)
           
 void AbstractArchiver.addFile(java.io.File inputFile, java.lang.String destFileName)
           
protected  ArchiveEntry AbstractArchiver.asArchiveEntry(org.codehaus.plexus.components.io.resources.PlexusIoResource resource, java.lang.String destFileName, int permissions)
           
protected  ArchiveEntry AbstractArchiver.asArchiveEntry(org.codehaus.plexus.components.io.resources.PlexusIoResourceCollection collection, org.codehaus.plexus.components.io.resources.PlexusIoResource resource)
           
 void AbstractArchiver.addResource(org.codehaus.plexus.components.io.resources.PlexusIoResource resource, java.lang.String destFileName, int permissions)
           
 void AbstractArchiver.addFile(java.io.File inputFile, java.lang.String destFileName, int permissions)
           
 ResourceIterator AbstractArchiver.getResources()
           
protected  org.codehaus.plexus.components.io.resources.PlexusIoResourceCollection AbstractArchiver.asResourceCollection(ArchivedFileSet fileSet)
           
 void AbstractArchiver.addResources(org.codehaus.plexus.components.io.resources.PlexusIoResourceCollection collection)
          Adds a resource collection to the archive.
 void AbstractArchiver.addArchivedFileSet(ArchivedFileSet fileSet)
           
 void AbstractArchiver.addArchivedFileSet(java.io.File archiveFile, java.lang.String prefix, java.lang.String[] includes, java.lang.String[] excludes)
           
 void AbstractArchiver.addArchivedFileSet(java.io.File archiveFile, java.lang.String prefix)
           
 void AbstractArchiver.addArchivedFileSet(java.io.File archiveFile, java.lang.String[] includes, java.lang.String[] excludes)
           
 void AbstractArchiver.addArchivedFileSet(java.io.File archiveFile)
           
protected  boolean AbstractArchiver.isUptodate()
           
protected  boolean AbstractArchiver.checkForced()
           
protected  void AbstractArchiver.runArchiveFinalizers()
           
 void AbstractArchiver.createArchive()
           
protected  void AbstractArchiver.validate()
           
protected abstract  void AbstractArchiver.execute()
           
 void AbstractArchiveFinalizer.finalizeArchiveCreation(Archiver archiver)
           
 void AbstractArchiveFinalizer.finalizeArchiveExtraction(UnArchiver unarchiver)
           
 

Uses of ArchiverException in org.codehaus.plexus.archiver.bzip2
 

Methods in org.codehaus.plexus.archiver.bzip2 that throw ArchiverException
protected  void BZip2UnArchiver.execute()
           
 void BZip2Compressor.compress()
          perform the GZip compression operation.
 void BZip2Archiver.execute()
           
 

Uses of ArchiverException in org.codehaus.plexus.archiver.dir
 

Methods in org.codehaus.plexus.archiver.dir that throw ArchiverException
 void DirectoryArchiver.execute()
           
protected  void DirectoryArchiver.copyFile(ArchiveEntry entry, java.lang.String vPath)
          Copies the specified file to the specified path, creating any ancestor directory structure as necessary.
 

Uses of ArchiverException in org.codehaus.plexus.archiver.ear
 

Methods in org.codehaus.plexus.archiver.ear that throw ArchiverException
 void EarArchiver.setAppxml(java.io.File descr)
          File to incorporate as application.xml.
 void EarArchiver.addArchive(java.io.File fileName)
          Adds archive.
 void EarArchiver.addArchives(java.io.File directoryName, java.lang.String[] includes, java.lang.String[] excludes)
          Adds archives.
protected  void EarArchiver.initZipOutputStream(ZipOutputStream zOut)
           
protected  void EarArchiver.zipFile(ArchiveEntry entry, ZipOutputStream zOut, java.lang.String vPath, int mode)
          Overridden from ZipArchiver class to deal with application.xml
 

Uses of ArchiverException in org.codehaus.plexus.archiver.gzip
 

Methods in org.codehaus.plexus.archiver.gzip that throw ArchiverException
protected  void GZipUnArchiver.execute()
           
 void GZipCompressor.compress()
          perform the GZip compression operation.
protected  void GZipArchiver.execute()
           
 

Uses of ArchiverException in org.codehaus.plexus.archiver.jar
 

Methods in org.codehaus.plexus.archiver.jar that throw ArchiverException
static Manifest Manifest.getDefaultManifest()
          Construct a manifest from Ant's default manifest file.
 void JarArchiver.setManifest(java.io.File manifestFile)
          The manifest file to use.
protected  void JarArchiver.initZipOutputStream(ZipOutputStream zOut)
           
protected  void JarArchiver.finalizeZipOutputStream(ZipOutputStream zOut)
           
protected  void JarArchiver.zipFile(java.io.InputStream is, ZipOutputStream zOut, java.lang.String vPath, long lastModified, java.io.File fromArchive, int mode)
          Overridden from Zip class to deal with manifests and index lists.
protected  boolean JarArchiver.createEmptyZip(java.io.File zipFile)
           
 

Uses of ArchiverException in org.codehaus.plexus.archiver.tar
 

Methods in org.codehaus.plexus.archiver.tar that throw ArchiverException
protected  void TarUnArchiver.execute()
           
protected  void TarArchiver.execute()
           
protected  void TarArchiver.tarFile(ArchiveEntry entry, TarOutputStream tOut, java.lang.String vPath)
          tar a file
 

Constructors in org.codehaus.plexus.archiver.tar that throw ArchiverException
TarCompressionMethod()
          Default constructor
 

Uses of ArchiverException in org.codehaus.plexus.archiver.util
 

Methods in org.codehaus.plexus.archiver.util that throw ArchiverException
 void EnumeratedAttribute.setValue(java.lang.String value)
          Invoked by IntrospectionHelper.
 void Compressor.execute()
          validate, then hand off to the subclass
abstract  void Compressor.compress()
          subclasses must implement this method to do their compression this is public so the process of compression and closing can be dealt with separately.
static void ArchiveEntryUtils.chmod(java.io.File file, int mode, org.codehaus.plexus.logging.Logger logger)
           
 

Uses of ArchiverException in org.codehaus.plexus.archiver.war
 

Methods in org.codehaus.plexus.archiver.war that throw ArchiverException
 void WarArchiver.setWebxml(java.io.File descr)
          set the deployment descriptor to use (WEB-INF/web.xml); required unless update=true
 void WarArchiver.addLib(java.io.File fileName)
          add a file under WEB-INF/lib/
 void WarArchiver.addLibs(java.io.File directoryName, java.lang.String[] includes, java.lang.String[] excludes)
          add files under WEB-INF/lib/
 void WarArchiver.addClass(java.io.File fileName)
          add a file under WEB-INF/lib/
 void WarArchiver.addClasses(java.io.File directoryName, java.lang.String[] includes, java.lang.String[] excludes)
          add files under WEB-INF/classes
 void WarArchiver.addWebinf(java.io.File directoryName, java.lang.String[] includes, java.lang.String[] excludes)
          files to add under WEB-INF;
protected  void WarArchiver.initZipOutputStream(ZipOutputStream zOut)
          override of parent; validates configuration before initializing the output stream.
protected  void WarArchiver.zipFile(ArchiveEntry entry, ZipOutputStream zOut, java.lang.String vPath, int mode)
          Overridden from ZipArchiver class to deal with web.xml
 

Uses of ArchiverException in org.codehaus.plexus.archiver.zip
 

Methods in org.codehaus.plexus.archiver.zip that throw ArchiverException
protected  void AbstractZipUnArchiver.execute()
           
protected  void AbstractZipUnArchiver.extractFile(java.io.File srcF, java.io.File dir, java.io.InputStream compressedInputStream, java.lang.String entryName, java.util.Date entryDate, boolean isDirectory, java.lang.Integer mode)
           
protected  void AbstractZipUnArchiver.execute(java.lang.String path, java.io.File outputDirectory)
           
protected  void AbstractZipArchiver.execute()
           
protected  void AbstractZipArchiver.finalizeZipOutputStream(ZipOutputStream zOut)
           
protected  void AbstractZipArchiver.addResources(ResourceIterator resources, ZipOutputStream zOut)
          Add the given resources.
protected  void AbstractZipArchiver.zipFile(java.io.InputStream in, ZipOutputStream zOut, java.lang.String vPath, long lastModified, java.io.File fromArchive, int mode)
          Adds a new entry to the archive, takes care of duplicates as well.
protected  void AbstractZipArchiver.zipFile(ArchiveEntry entry, ZipOutputStream zOut, java.lang.String vPath)
          Method that gets called when adding from java.io.File instances.
protected  boolean AbstractZipArchiver.createEmptyZip(java.io.File zipFile)
          Create an empty zip file
protected  void AbstractZipArchiver.initZipOutputStream(ZipOutputStream zOut)
          method for subclasses to override
 



Copyright © 2001-2009 Codehaus. All Rights Reserved.