modifyFolderEntry

Modifies a single entry. (V1—V1.0.3)

Syntax

public void modifyFolderEntry( long folderId, long entryId, String inputDataAsXML );

Description

The modifyFolderEntry operation modifies one entry in a folder.

Parameters and Return Value

folderId

The binder identifier of the folder that contains the entry to be modified.

entryId

The identifier of the entry to be modified.

inputDataAsXML

A string of XML containing the values needed to modify the entry.

return_value

None.

Example

call.setOperationName(new QName(“modifyFolderEntry”)); Object result = call.invoke(new Object[] {new Long(21), new Long(43), s});

This code modifies entry 43 in the folder whose binder ID is 21. The variable s contains XML elements needed by Teaming to modify the contents of the entry.

See Also