Font size:
Setting
Description
The Setting data type represents an object of a Setting base type.
Setting
| Attribute | Description | Required |
|---|---|---|
| name | The object name. | Yes |
| type | The object type name. | Yes |
| maprefuri | The maprefUri | Yes |
| description | The object description. | Yes |
| settingValue | The setting value. | Yes |
| settingType | The setting type. | Yes |
Examples
Shows Setting data type used in the object-update Ant task.
<object-update depot="${context.depot}"
resultproperty="result"
comment="Updated aSetting object.">
<setting maprefUri="${maprefUri}"
name="aSetting"
type="SettingSubtype"
description="this is a setting object"
settingValue="myValue"
settingType="myUserType"/>
</object-update>


