Differences between revisions 1 and 8 (spanning 7 versions)
Revision 1 as of 2008-11-28 13:23:17
Size: 1223
Editor: kfc
Comment:
Revision 8 as of 2010-03-17 13:09:18
Size: 1276
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Object manipulation API = = GUI Object manipulation API =
Line 5: Line 5:
== Object creation API == == Object manipulation API ==
Line 7: Line 7:
WSDL: attachment:GuiObjectManipulation.xml WSDL: [[attachment:DomsGUIObjectManipulation.xml]]
Line 9: Line 9:
The following describes those methods of the Object creation API that may be called by the GUI. The following describes those methods of the Object manipulation API that may be called by the GUI.
Line 17: Line 17:
 * {{{String filePath]]] Path to the file to add to the object
 * {{{org.apache.axis.types.URI templatePID}}} DOMS PID of the object to add file to
 * {{{String filePath}}} Path to the file to add to the object
 * {{{org.apache.axis.types.URI domsObjectPID}}} DOMS PID of the object to add file to
Line 32: Line 32:
 * {{{String filePath]]] Path to the file to add to the object
 * {{{org.apache.axis.types.URI templatePID}}} DOMS PID of the object to add file to
 * {{{String filePath}}} Path to the file to add to the object
 * {{{String md5CheckSum}}}
 * {{{
org.apache.axis.types.URI domsObjectPID}}} DOMS PID of the object to add file to

GUI Object manipulation API

A webservice for manipulating object, specifically adding files

Object manipulation API

WSDL: DomsGUIObjectManipulation.xml

The following describes those methods of the Object manipulation API that may be called by the GUI.

addFileToObjectNoMD5

Add a file to an object

Input parameters:

  • String user Username for the user creating a new object

  • String pass Password for the user creating a new object

  • String filePath Path to the file to add to the object

  • org.apache.axis.types.URI domsObjectPID DOMS PID of the object to add file to

Returns:

  • Nothing

Throws:

  • Exception If an internal error occurred.

addFileToObject

Add a file to an object, with MD5 already known. Preferred and more efficient method.

Input parameters:

  • String user Username for the user creating a new object

  • String pass Password for the user creating a new object

  • String filePath Path to the file to add to the object

  • String md5CheckSum

  • org.apache.axis.types.URI domsObjectPID DOMS PID of the object to add file to

Returns:

  • Nothing

Throws:

  • Exception If an internal error occurred.

Object manipulation API (last edited 2010-03-17 13:09:18 by localhost)