Package org.osgi.framework.wiring.dto
Class BundleRevisionDTO
- java.lang.Object
-
- org.osgi.dto.DTO
-
- org.osgi.resource.dto.ResourceDTO
-
- org.osgi.framework.wiring.dto.BundleRevisionDTO
-
public class BundleRevisionDTO extends ResourceDTO
Data Transfer Object for a BundleRevision.An installed Bundle can be adapted to provide a
BundleRevisionDTO
for the current revision of the Bundle.BundleRevisionDTO
objects for all in use revisions of the Bundle can be obtained by adapting the bundle toBundleRevisionDTO[]
.
-
-
Field Summary
Fields Modifier and Type Field Description long
bundle
The id of the bundle associated with the bundle revision.java.lang.String
symbolicName
The symbolic name of the bundle revision.int
type
The type of the bundle revision.java.lang.String
version
The version of the bundle revision.-
Fields inherited from class org.osgi.resource.dto.ResourceDTO
capabilities, id, requirements
-
-
Constructor Summary
Constructors Constructor Description BundleRevisionDTO()
-
-
-
Field Detail
-
symbolicName
public java.lang.String symbolicName
The symbolic name of the bundle revision.- See Also:
BundleRevision.getSymbolicName()
-
type
public int type
The type of the bundle revision.- See Also:
BundleRevision.getTypes()
-
version
public java.lang.String version
The version of the bundle revision.- See Also:
BundleRevision.getVersion()
-
bundle
public long bundle
The id of the bundle associated with the bundle revision.- See Also:
BundleReference.getBundle()
-
-