Package org.osgi.framework.dto
Class BundleDTO
- java.lang.Object
-
- org.osgi.dto.DTO
-
- org.osgi.framework.dto.BundleDTO
-
public class BundleDTO extends DTO
Data Transfer Object for a Bundle.A Bundle can be adapted to provide a
BundleDTOfor the Bundle.
-
-
Field Summary
Fields Modifier and Type Field Description longidThe bundle's unique identifier.longlastModifiedThe time when the bundle was last modified.intstateThe bundle's state.java.lang.StringsymbolicNameThe bundle's symbolic name.java.lang.StringversionThe bundle's version.
-
Constructor Summary
Constructors Constructor Description BundleDTO()
-
-
-
Field Detail
-
id
public long id
The bundle's unique identifier.- See Also:
Bundle.getBundleId()
-
lastModified
public long lastModified
The time when the bundle was last modified.- See Also:
Bundle.getLastModified()
-
state
public int state
The bundle's state.- See Also:
Bundle.getState()
-
symbolicName
public java.lang.String symbolicName
The bundle's symbolic name.- See Also:
Bundle.getSymbolicName()
-
version
public java.lang.String version
The bundle's version.- See Also:
Bundle.getVersion()
-
-