Data Types and Structure

The input value object for a Media Object operation represents a data set that is required to perform a particular Media Object operation. The data set includes the Media Object value object. The output value object returns messages and the output data set, such as media object records for a select operation, for a particular operation. The output value object also returns any warnings that occur during business service processing. If an error occurs during processing, the system sends an error message to the published business service, and the published business service throws an exception.

This code sample shows the structure for the output value object:

public class RI_ShowAddressBook extends oracle.e1.bssv.JPR01MO1.MessageValueObject implements Serializable {
    private ABGT_Publish mediaObject = null;
…
}

This code sample shows the structure for the input value object:

public class RI_AddAddressBook extends oracle.e1.bssv.JPR01MO1.ValueObject implements Serializable {
    /**    Add the ABGT_Publish class reference to include the Mediaobject fields in the WSDL*/
        private ABGT_Publish mediaObject = null;
…
}