modify-attr

Specifies the attribute values to modify for the modify command or event.

Description

Each <modify-attr> element must contain at least one <add-value>, <remove-all-values> or <remove-value> element.

Definition

  <!ELEMENT modify-attr       (remove-value | 
                               remove-all-values | 
                               add-value)+>
  <!ATTLIST modify-attr
             attr-name         CDATA            #REQUIRED>
  
  <!ELEMENT remove-all-values  EMPTY>
  
  <!ELEMENT remove-value       (value+)>
  
  <!ELEMENT add-value          (value+)>
  
  

Attributes

attr-name
Specifies the name of the attribute to modify.

Elements

<remove-value>
Specifies the value to remove. This element may be included multiple times. If the value doesn't exist, the driver should ignore the discrepancy and return success.
<remove-all-values>
Specifies to remove all values of the attribute.
<add-value>
Specifies the value to add to the attribute. This element may be included multiple times. If the value already exists, the driver should ignore the discrepancy and return success.

Parent