类 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.- 作者:
- $Id: BundleDTO.java 1614569 2014-07-30 07:22:32Z cziegeler $
-
-
字段概要
字段 修饰符和类型 字段 说明 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.
-
构造器概要
构造器 构造器 说明 BundleDTO()
-
-
-
字段详细资料
-
id
public long id
The bundle's unique identifier.- 另请参阅:
Bundle.getBundleId()
-
lastModified
public long lastModified
The time when the bundle was last modified.- 另请参阅:
Bundle.getLastModified()
-
state
public int state
The bundle's state.- 另请参阅:
Bundle.getState()
-
symbolicName
public java.lang.String symbolicName
The bundle's symbolic name.- 另请参阅:
Bundle.getSymbolicName()
-
version
public java.lang.String version
The bundle's version.- 另请参阅:
Bundle.getVersion()
-
-