BusObj duplicate()
The duplicate business object.
CollaborationException--The duplicate() method can set the following exception type for this exception: ObjectException.
This method makes a clone of the business object and returns it. You must explicitly assign the return value of this method call to a declared variable of BusObj type.
The following example duplicates sourceCustomer in order to create destCustomer.
BusObj destCustomer = sourceCustomer.duplicate();