ControlTier Inc. > Open.ControlTier
 
Font size:      

Assembly

Description

The Assembly data type represents an object of a Assembly base type.

Assembly

AttributeDescriptionRequired
nameThe object name.Yes
typeThe object type name.Yes
maprefuriThe maprefUriYes
descriptionThe object description.Yes
includeExistingResourcesBoolean 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>