The update action updates a person in the specified place. When this action is called, the specified person is updated using the attributes and values you specify.
You can specify any supported attributes or elements of the person when the update action is performed. No updates are performed in the external directory if the person being updated is not local.
Syntax
<place> <name></name></place>
...
<members> <person local="true" action="update"><username></username></person></members>
- or -
<members> <person action="update"><dn></dn></person></members>
Optional attributes
subscribed_to_newsletter
using_accessible_ui
subscribed_to_calendar_events
email_client
Optional elements
<password>
<first_name>
<last_name>
<phone_number>
<email>
<offline_password>
<theme>
<description>
Example
<?xml version="1.0"?>
<service>
<servers>
<server>
<hostname>qk.acme.com</hostname>
<places>
<place>
<name>ACME_Team</name>
<members>
<person local="true" action="update">
<username>JDoe</username>
<password>BiggerSecret</password>
</person>
<person action="update">
<dn>cn=Charles Brown,ou=Sales,o=CME</dn>
<offline_password>Drats</offline_password>
<phone_number>978-555-1212</phone_number>
</person>
</members>
</place>
</places>
</server>
</servers>
</service>
Return to the Java API overview and index.