modify

Used as an event notification from the PublicationShim to Identity Manager that an object is modified in the application. When it is used as a notification, an <association> is required. It is also used as a command from Identity Manager to the SubsciptionShim to modify an object in the application. When it is used as a command, an <association> is required and is the unique key of the object to modify.

Remarks

<add> contains a <modify-attr> for each attribute modified.

A response to <modify> should be a <status> indicating whether or not the <modify> is processed successfully.

Example

<modify class-name="User" src-dn="\Sam">        <association>1012</association>        <modify-attr attr-name="Given Name">                <remove-all-values/>                <add-value>                        <value>Samuel</value>                </add-value>        </modify-attr>        <modify-attr attr-name="Telephone Number">                <remove-value>                        <value>555-1212</value>                </remove-value>                <add-value>                        <value>555-1764</value>                        <value>555-1765</value>                </add-value>        </modify-attr></modify>

Allowed Content

Element

Description

association

Unique key of the application object.

modify-attr

Modifies an attribute

operation-data

The operation adds additional custom data.

Attributes

Attribute

Possible Values

Default Value

class-name

CDATA

The name of the base class of the object.

The class name is mapped between the application and eDirectory namespaces by the Schema Mapping policy so that Identity Manager sees the name in the eDirectory namespace and a driver sees the name in the application namespace.

Required when used as a notification.

#IMPLIED

dest-dn

CDATA

The distinguished name of the target object in the namespace of the receiver.

Reserved. Should be ignored by the driver.

#IMPLIED

dest-entry-id

CDATA

The entry ID of the target object in the namespace of the receiver.

Reserved. Should be ignored by the driver.

#IMPLIED

event-id

CDATA

An identifier used to tag the results of an event or command.

#IMPLIED

from-merge

true | false

True if the command is the result of a merge

false

qualified-src-dn

CDATA

The qualified version of src-dn. Only used for describing objects from eDirectory.

#IMPLIED

src-dn

CDATA

The distinguished name of the source object that generated the event in the namespace of the sender.

#IMPLIED

src-entry-id

CDATA

The entry id of the source object that generated the event in the namespace of the sender.

Reserved. Should be ignored by the driver.

#IMPLIED

timestamp

CDATA

Reserved. Should be ignored by the driver.

#IMPLIED

Content Rule

( association ? , modify-attr + , operation-data ? )

Parent Elements

Element

Description

input

Input events or commands.