Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Category:SDO"

m
 
(5 intermediate revisions by the same user not shown)
Line 16: Line 16:
 
==Step 1==
 
==Step 1==
 
Initialize.
 
Initialize.
 +
*loadSchema();
 
</div>
 
</div>
 
*Define SDO Types and Properties from an XML Schema
 
*Define SDO Types and Properties from an XML Schema
*
 
 
  </td>
 
  </td>
 
  <td>
 
  <td>
 
<div style="padding:5px;border:1px solid #000000;width:200px;background:#cff8d9">
 
<div style="padding:5px;border:1px solid #000000;width:200px;background:#cff8d9">
 +
 
==Step 2==
 
==Step 2==
 
Unmarshall the XML document.
 
Unmarshall the XML document.
Line 31: Line 32:
 
==Step 3==
 
==Step 3==
 
Modify the data objects.
 
Modify the data objects.
 +
*augmentDocument
 
</div>
 
</div>
*
+
 
</td>
 
</td>
 
  <td>
 
  <td>
Line 38: Line 40:
 
==Step 4==
 
==Step 4==
 
Marshall the data objects.
 
Marshall the data objects.
 +
*marshallDataObject
 
</div>
 
</div>
*
+
 
 
</td>
 
</td>
 
</tr>
 
</tr>
Line 45: Line 48:
  
  
[[Category:Architecture]]
+
[[Category:EclipseLink User's Guide]]

Latest revision as of 11:48, 25 November 2009

Eclipselink sdo.png This page lists all sections in the EclipseLink User's Guide for SDO (Service Data Objects) projects.



Developing EclipseLink Applications using SDO

Step 1

Initialize.

  • loadSchema();
  • Define SDO Types and Properties from an XML Schema

Step 2

Unmarshall the XML document.

Step 3

Modify the data objects.

  • augmentDocument

Step 4

Marshall the data objects.

  • marshallDataObject

Back to the top