|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.sling.installer.api.InstallableResource
public class InstallableResource
A piece of data that can be installed by the OsgiInstaller
Currently the OSGi installer supports bundles and configurations,
but it can be extended by additional task factories supporting
other formats.
The installable resource contains as much information as the client
can provide. An input stream or dictionary is mandatory everything
else is optional. All optional values will be tried to be evaluated
by the OSGi installer. If such evaluation fails the resource will
be ignore during installation.
If the client provides a configuration it should use the
resource type TYPE_PROPERTIES
. Otherwise the resource
type TYPE_FILE
should be used. These two generic types
are transformed by resource transformer services to the appropriate
resource type like bundle or configuration etc. This frees the
client from having any knowledge about the provided data.
However, if the client has the knowledge about the data it can
provided a specific resource type.
Field Summary | |
---|---|
static String |
BUNDLE_START_LEVEL
Optional parameter in the dictionary if a bundle is installed. |
static int |
DEFAULT_PRIORITY
Default resource priority |
static String |
TYPE_BUNDLE
The type for a bundle - in this case getInputStream() must
return an input stream to the bundle. |
static String |
TYPE_CONFIG
The type for a configuration - in this case getDictionary()
must return a dictionary with the configuration. |
static String |
TYPE_FILE
The type for all other provided data like a bundle etc. |
static String |
TYPE_PROPERTIES
The type for properties - in this case getDictionary()
should contain a dictionary or the getInputStream()
should point to a property or configuration file. |
Constructor Summary | |
---|---|
InstallableResource(String id,
InputStream is,
Dictionary<String,Object> dict,
String digest,
String type,
Integer priority)
Create a data object - this is a simple constructor just using the values as they are provided. |
Method Summary | |
---|---|
Dictionary<String,Object> |
getDictionary()
Return this resource's dictionary. |
String |
getDigest()
Return this resource's digest. |
String |
getId()
Return this data's id. |
InputStream |
getInputStream()
Return an input stream with the data of this resource. |
int |
getPriority()
Return the priority of this resource. |
String |
getType()
Return the type of this resource. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String TYPE_PROPERTIES
getDictionary()
should contain a dictionary or the getInputStream()
should point to a property or configuration file.
public static final String TYPE_FILE
getInputStream()
must return an input
stream to the data. getDictionary()
might return
additional information.
public static final String TYPE_BUNDLE
getInputStream()
must
return an input stream to the bundle. getDictionary()
might
return additional information.
This type should only be used if the client really knows that the
provided data is a bundle.
public static final String TYPE_CONFIG
getDictionary()
must return a dictionary with the configuration.
This type should only be used if the client really knows that the
provided data is an OSGi configuration.
public static final String BUNDLE_START_LEVEL
public static final int DEFAULT_PRIORITY
Constructor Detail |
---|
public InstallableResource(String id, InputStream is, Dictionary<String,Object> dict, String digest, String type, Integer priority)
id
- Unique id for the resource, For auto detection of the resource
type, the id should contain an extension like .jar, .cfg etc.is
- The input stream to the data ordict
- A dictionary with datadigest
- A digest of the data - providers should make sure to set
a digest. Calculating a digest by the installer can be very
expensive.type
- The resource type if known, otherwise TYPE_PROPERTIES
or TYPE_FILE
priority
- Optional priority - if not specified DEFAULT_PRIORITY
is used
IllegalArgumentException
- if something is wrongMethod Detail |
---|
public String getId()
OsgiInstaller
but should uniquely identify the resource within the namespace of
the used installation mechanism.
public String getType()
null
if the type is unnown for the client.public InputStream getInputStream()
public Dictionary<String,Object> getDictionary()
public String getDigest()
public int getPriority()
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |