public class

PersonCustomer

extends DataObject
java.lang.Object
   ↳ org.mule.modules.oracle.model.AbstractDataObject
     ↳ com.oracle.xmlns.svc.DataObject
       ↳ com.oracle.xmlns.apps.ar.hz.service.account.PersonCustomer

Class Overview

PersonCustomer business object

Java class for PersonCustomer complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="PersonCustomer">
   <complexContent>
     <extension base="{http://xmlns.oracle.com/svc}DataObject">
       <sequence>
         <element name="ActionType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="AccountObjs" type="{http://xmlns.oracle.com/apps/ar/hz/service/account}CustomerAccount" maxOccurs="unbounded" minOccurs="0"/>
         <element name="PersonObj" type="{http://xmlns.oracle.com/apps/ar/hz/service/party}Person" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 

Summary

Fields
protected List<CustomerAccount> accountObjs
protected String actionType
protected Person personObj
Public Constructors
PersonCustomer()
Public Methods
List<CustomerAccount> getAccountObjs()
Gets the value of the accountObjs property.
String getActionType()
Gets the value of the actionType property.
Person getPersonObj()
Gets the value of the personObj property.
void setAccountObjs(List<CustomerAccount> accountObjs)
Sets the value of the accountObjs property.
void setActionType(String value)
Sets the value of the actionType property.
void setPersonObj(Person value)
Sets the value of the personObj property.
[Expand]
Inherited Methods
From class org.mule.modules.oracle.model.AbstractDataObject
From class java.lang.Object

Fields

protected List<CustomerAccount> accountObjs

protected String actionType

protected Person personObj

Public Constructors

public PersonCustomer ()

Public Methods

public List<CustomerAccount> getAccountObjs ()

Gets the value of the accountObjs property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the accountObjs property.

For example, to add a new item, do as follows:

    getAccountObjs().add(newItem);
 

Objects of the following type(s) are allowed in the list CustomerAccount

public String getActionType ()

Gets the value of the actionType property.

Returns
  • possible object is String

public Person getPersonObj ()

Gets the value of the personObj property.

Returns

public void setAccountObjs (List<CustomerAccount> accountObjs)

Sets the value of the accountObjs property.

Parameters
accountObjs Allowed object is CustomerAccount

public void setActionType (String value)

Sets the value of the actionType property.

Parameters
value Allowed object is String

public void setPersonObj (Person value)

Sets the value of the personObj property.

Parameters
value Allowed object is Person