public abstract class BundleArchiveRevision extends Object
This class implements an abstract revision of a bundle archive. A revision is an abstraction of a bundle's actual content and is associated with a parent bundle archive. A bundle archive may have multiple revisions assocaited with it at one time, since updating a bundle results in a new version of the bundle's content until the bundle is refreshed. Upon a refresh, then old revisions are then purged. This abstract class is the base class for all concrete types of revisions, such as ones for a JAR file or directories. All revisions are assigned a root directory into which all of their state should be stored, if necessary. Clean up of this directory is the responsibility of the parent bundle archive and not of the revision itself.
BundleCache
,
BundleArchive
Constructor and Description |
---|
BundleArchiveRevision(Logger logger,
Map configMap,
File revisionRootDir,
String location)
This class is abstract and cannot be created.
|
Modifier and Type | Method and Description |
---|---|
protected abstract void |
close()
This method is called when the revision is no longer needed.
|
Map |
getConfig()
Returns the configuration map for this revision.
|
abstract Content |
getContent() |
String |
getLocation()
Returns the location string this revision.
|
Logger |
getLogger()
Returns the logger for this revision.
|
abstract Map |
getManifestHeader()
Returns the main attributes of the JAR file manifest header of the
revision.
|
File |
getRevisionRootDir()
Returns the root directory for this revision.
|
public BundleArchiveRevision(Logger logger, Map configMap, File revisionRootDir, String location) throws Exception
This class is abstract and cannot be created. It represents a revision of a bundle, i.e., its content. A revision is associated with a particular location string, which is typically in URL format. Subclasses of this class provide particular functionality, such as a revision in the form of a JAR file or a directory. Each revision subclass is expected to use the root directory associated with the abstract revision instance to store any state; this will ensure that resources used by the revision are properly freed when the revision is no longer needed.
logger
- a logger for use by the revision.revisionRootDir
- the root directory to be used by the revision
subclass for storing any state.location
- the location string associated with the revision.trustedCaCerts
- the trusted CA certificates if any.Exception
- if any errors occur.public Logger getLogger()
Returns the logger for this revision.
public Map getConfig()
Returns the configuration map for this revision.
public File getRevisionRootDir()
Returns the root directory for this revision.
public String getLocation()
Returns the location string this revision.
public abstract Map getManifestHeader() throws Exception
Returns the main attributes of the JAR file manifest header of the revision. The returned map is case insensitive.
Exception
- if any error occurs.protected abstract void close() throws Exception
This method is called when the revision is no longer needed. The directory associated with the revision will automatically be removed for each revision, so this method only needs to be concerned with other issues, such as open files.
Exception
- if any error occurs.Copyright © 2006-2015 The Apache Software Foundation. All Rights Reserved.