public class

OrgCustomer

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

Class Overview

OrgCustomer business object

Java class for OrgCustomer complex type.

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

 <complexType name="OrgCustomer">
   <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="OrganizationObj" type="{http://xmlns.oracle.com/apps/ar/hz/service/party}Organization" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 

Summary

Fields
protected List<CustomerAccount> accountObjs
protected String actionType
protected Organization organizationObj
Public Constructors
OrgCustomer()
Public Methods
List<CustomerAccount> getAccountObjs()
Gets the value of the accountObjs property.
String getActionType()
Gets the value of the actionType property.
Organization getOrganizationObj()
Gets the value of the organizationObj 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 setOrganizationObj(Organization value)
Sets the value of the organizationObj 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 Organization organizationObj

Public Constructors

public OrgCustomer ()

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 Organization getOrganizationObj ()

Gets the value of the organizationObj 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 setOrganizationObj (Organization value)

Sets the value of the organizationObj property.

Parameters
value Allowed object is Organization