Package org.osgi.framework.wiring.dto
Class FrameworkWiringDTO
- java.lang.Object
-
- org.osgi.dto.DTO
-
- org.osgi.framework.wiring.dto.FrameworkWiringDTO
-
public class FrameworkWiringDTO extends DTO
Data Transfer Object for the wiring graph of the framework.The system bundle can be adapted to provide the
FrameworkWiringDTO
. Only the system bundle can be adapted to aFrameworkWiringDTO
object- Since:
- 1.3
-
-
Field Summary
Fields Modifier and Type Field Description java.util.Set<BundleRevisionDTO>
resources
The set of resources referenced by the wiring graph of the framework.java.util.Set<BundleWiringDTO.NodeDTO>
wirings
The set of wiring nodes referenced by the wiring graph of the framework.
-
Constructor Summary
Constructors Constructor Description FrameworkWiringDTO()
-
-
-
Field Detail
-
wirings
public java.util.Set<BundleWiringDTO.NodeDTO> wirings
The set of wiring nodes referenced by the wiring graph of the framework.All wiring nodes referenced by wiring node identifiers in the wiring graph are contained in this set.
-
resources
public java.util.Set<BundleRevisionDTO> resources
The set of resources referenced by the wiring graph of the framework.All resources referenced by resource identifiers in the wiring graph are contained in this set.
-
-