Class UnsatisfiedReferenceDTO
- java.lang.Object
-
- org.osgi.dto.DTO
-
- org.osgi.service.component.runtime.dto.UnsatisfiedReferenceDTO
-
public class UnsatisfiedReferenceDTO extends org.osgi.dto.DTO
A representation of an unsatisfied reference.- Since:
- 1.3
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
name
The name of the declared reference.java.lang.String
target
The target property of the unsatisfied reference.org.osgi.framework.dto.ServiceReferenceDTO[]
targetServices
The target services.
-
Constructor Summary
Constructors Constructor Description UnsatisfiedReferenceDTO()
-
-
-
Field Detail
-
name
public java.lang.String name
The name of the declared reference.This is declared in the
name
attribute of thereference
element of the component description.- See Also:
ReferenceDTO.name
-
target
public java.lang.String target
The target property of the unsatisfied reference.This is the value of the
component property
whose name is the concatenation of thedeclared reference name
and ".target". This must benull
if no target property is set for the reference.
-
targetServices
public org.osgi.framework.dto.ServiceReferenceDTO[] targetServices
The target services.Each
ServiceReferenceDTO
in the array represents a target service for the reference. The array must be empty if there are no target services. The upper bound on the number of target services in the array is the upper bound on thecardinality
of the reference.
-
-