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
BundleDTO
for the Bundle.
-
-
Field Summary
Fields Modifier and Type Field Description long
id
The bundle's unique identifier.long
lastModified
The time when the bundle was last modified.int
state
The bundle's state.java.lang.String
symbolicName
The bundle's symbolic name.java.lang.String
version
The 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()
-
-