org.apache.felix.framework.util.manifestparser
Class ManifestParser
java.lang.Object
org.apache.felix.framework.util.manifestparser.ManifestParser
public class ManifestParser
- extends java.lang.Object
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CLAUSE_PATHS_INDEX
public static final int CLAUSE_PATHS_INDEX
- See Also:
- Constant Field Values
CLAUSE_DIRECTIVES_INDEX
public static final int CLAUSE_DIRECTIVES_INDEX
- See Also:
- Constant Field Values
CLAUSE_ATTRIBUTES_INDEX
public static final int CLAUSE_ATTRIBUTES_INDEX
- See Also:
- Constant Field Values
ManifestParser
public ManifestParser(Logger logger,
java.util.Map configMap,
IModule owner,
java.util.Map headerMap)
throws org.osgi.framework.BundleException
- Throws:
org.osgi.framework.BundleException
getManifestVersion
public java.lang.String getManifestVersion()
getActivationPolicy
public int getActivationPolicy()
getActivationIncludeDirective
public java.lang.String getActivationIncludeDirective()
getActivationExcludeDirective
public java.lang.String getActivationExcludeDirective()
isExtension
public boolean isExtension()
getSymbolicName
public java.lang.String getSymbolicName()
getBundleVersion
public org.osgi.framework.Version getBundleVersion()
getCapabilities
public ICapability[] getCapabilities()
getRequirements
public IRequirement[] getRequirements()
getDynamicRequirements
public IRequirement[] getDynamicRequirements()
getLibraryClauses
public R4LibraryClause[] getLibraryClauses()
getLibraries
public R4Library[] getLibraries()
This method returns the selected native library metadata from
the manifest. The information is not the raw metadata from the
manifest, but is the native library clause selected according
to the OSGi native library clause selection policy. The metadata
returned by this method will be attached directly to a module and
used for finding its native libraries at run time. To inspect the
raw native library metadata refer to getLibraryClauses().
This method returns one of three values:
- null - if the are no native libraries for this module;
this may also indicate the native libraries are optional and
did not match the current platform.
- Zero-length R4Library array - if no matching native library
clause was found; this bundle should not resolve.
- Nonzero-length R4Library array - the native libraries
associated with the matching native library clause.
- Returns:
- null if there are no native libraries, a zero-length
array if no libraries matched, or an array of selected libraries.
parseExportHeader
public static ICapability[] parseExportHeader(IModule owner,
java.lang.String header,
java.lang.String bsn,
org.osgi.framework.Version bv)
throws org.osgi.framework.BundleException
- Throws:
org.osgi.framework.BundleException
parseExtensionBundleHeader
public static R4Directive parseExtensionBundleHeader(java.lang.String header)
throws org.osgi.framework.BundleException
- Throws:
org.osgi.framework.BundleException
parseDelimitedString
public static java.lang.String[] parseDelimitedString(java.lang.String value,
java.lang.String delim)
- Parses delimited string and returns an array containing the tokens. This
parser obeys quotes, so the delimiter character will be ignored if it is
inside of a quote. This method assumes that the quote character is not
included in the set of delimiter characters.
- Parameters:
value
- the delimited string to parse.delim
- the characters delimiting the tokens.
- Returns:
- an array of string tokens or null if there were no tokens.
Copyright © 2011. All Rights Reserved.