Class ObjectClassDefinitionDTO
- java.lang.Object
-
- org.osgi.dto.DTO
-
- biz.aQute.bnd.reporter.component.dto.ObjectClassDefinitionDTO
-
public class ObjectClassDefinitionDTO extends org.osgi.dto.DTO
A representation of anObjectClassDefinition
-
-
Field Summary
Fields Modifier and Type Field Description java.util.List<AttributeDefinitionDTO>
attributes
A list of attributes.java.lang.String
description
The description of the OCD.java.util.List<java.lang.String>
factoryPids
A list of factory pids.java.util.List<IconDTO>
icons
A list of the icons of this OCD.java.lang.String
id
The id of the OCD.java.lang.String
name
The name of the OCD.java.util.List<java.lang.String>
pids
A list of pids.
-
Constructor Summary
Constructors Constructor Description ObjectClassDefinitionDTO()
-
-
-
Field Detail
-
name
public java.lang.String name
The name of the OCD.Must not be
null
.
-
description
public java.lang.String description
The description of the OCD.If it is not specified this field must be
null
.
-
id
public java.lang.String id
The id of the OCD.Must not be
null
.
-
pids
public java.util.List<java.lang.String> pids
A list of pids.If it is not specified this field must empty.
-
factoryPids
public java.util.List<java.lang.String> factoryPids
A list of factory pids.If it is not specified this field must empty.
-
icons
public java.util.List<IconDTO> icons
A list of the icons of this OCD.If it is not specified this field must be empty.
-
attributes
public java.util.List<AttributeDefinitionDTO> attributes
A list of attributes.If it is not specified this field must empty.
-
-