Class TypedAttributeValueDTO
- java.lang.Object
-
- org.osgi.dto.DTO
-
- biz.aQute.bnd.reporter.manifest.dto.TypedAttributeValueDTO
-
public class TypedAttributeValueDTO extends org.osgi.dto.DTO
A representation of a typed property
-
-
Field Summary
Fields Modifier and Type Field Description boolean
multiValue
Indicates if the property can have multiple values.java.lang.String
type
The type of the property.java.util.List<java.lang.String>
values
A list of values.
-
Constructor Summary
Constructors Constructor Description TypedAttributeValueDTO()
-
-
-
Field Detail
-
type
public java.lang.String type
The type of the property.The type must be the name of the scalar type (eg:
String
). This field must not benull
.
-
multiValue
public boolean multiValue
Indicates if the property can have multiple values.If it is not specified this field must be set to false.
-
values
public java.util.List<java.lang.String> values
A list of values.If it not specified this field must be empty.
-
-