public class InstallmentBill extends Object implements Serializable
Java class for installmentBill complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="installmentBill">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="dueAt" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="dueAmount" type="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}money"/>
<element name="billNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="billItems" type="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}installmentBillItem" maxOccurs="unbounded"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<InstallmentBillItem> |
billItems |
protected String |
billNo |
protected Money |
dueAmount |
protected String |
dueAt |
protected String |
id |
| Constructor and Description |
|---|
InstallmentBill() |
| Modifier and Type | Method and Description |
|---|---|
List<InstallmentBillItem> |
getBillItems()
Gets the value of the billItems property.
|
String |
getBillNo()
Gets the value of the billNo property.
|
Money |
getDueAmount()
Gets the value of the dueAmount property.
|
String |
getDueAt()
Gets the value of the dueAt property.
|
String |
getId()
Gets the value of the id property.
|
void |
setBillNo(String value)
Sets the value of the billNo property.
|
void |
setDueAmount(Money value)
Sets the value of the dueAmount property.
|
void |
setDueAt(String value)
Sets the value of the dueAt property.
|
void |
setId(String value)
Sets the value of the id property.
|
protected String id
protected String dueAt
protected Money dueAmount
protected String billNo
protected List<InstallmentBillItem> billItems
public void setId(String value)
value - allowed object is
Stringpublic String getDueAt()
Stringpublic void setDueAt(String value)
value - allowed object is
Stringpublic Money getDueAmount()
Moneypublic void setDueAmount(Money value)
value - allowed object is
Moneypublic String getBillNo()
Stringpublic void setBillNo(String value)
value - allowed object is
Stringpublic List<InstallmentBillItem> getBillItems()
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 billItems property.
For example, to add a new item, do as follows:
getBillItems().add(newItem);
Objects of the following type(s) are allowed in the list
InstallmentBillItem