Font size:
Assembly
Description
The Assembly data type represents an object of a Assembly base type.
Assembly
| Attribute | Description | Required |
|---|---|---|
| name | The object name. | Yes |
| type | The object type name. | Yes |
| maprefuri | The maprefUri | Yes |
| description | The object description. | Yes |
| includeExistingResources | Boolean flag specifying whether to merge included entities with existing child resources. | No, defaults to true. |
EntityReference
Uses one or more EntityReference elements to represent child resources.
Examples
Shows Assembly data type used in the object-update Ant task.
<object-update depot="${entity.depot}"
resultproperty="result"
comment="Updated myAssembly object.">
<assembly maprefUri="http://www.opendepo.rog/DepOnt#AssemblySubtype_myAssembly"
name="myAssembly"
type="AssemblySubtype"
description="my descriptive text."
includeExistingResources="false">
<entityreference maprefuri="${entity.mapref-uri}"/>
<entityreference maprefuri="http://www.opendepo.org/DepOnt#SomeType_19" />
</assembly>
</object-update>


