public class CollectionDetails extends Extension implements Serializable
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <extension base="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}extension"> <sequence> <element name="scenarioId" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="billUnitId" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="overdueAmount" type="{http://www.w3.org/2001/XMLSchema}decimal"/> <element name="overdueDays" type="{http://www.w3.org/2001/XMLSchema}int"/> <element name="minimumDue" type="{http://www.w3.org/2001/XMLSchema}decimal"/> <element name="notes" type="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}notes" minOccurs="0"/> <element name="agingBuckets" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="days" type="{http://www.w3.org/2001/XMLSchema}int"/> <element name="due" type="{http://www.w3.org/2001/XMLSchema}decimal"/> </sequence> </restriction> </complexContent> </complexType> </element> <element name="actions" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="actionId" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="dueDate" type="{http://www.w3.org/2001/XMLSchema}date"/> <element name="completedDate" type="{http://www.w3.org/2001/XMLSchema}date"/> <element name="status" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}int"> <enumeration value="0"/> <enumeration value="1"/> <enumeration value="2"/> <enumeration value="3"/> </restriction> </simpleType> </element> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </extension> </complexContent> </complexType>
Modifier and Type | Class and Description |
---|---|
static class |
CollectionDetails.Actions
Java class for anonymous complex type.
|
static class |
CollectionDetails.AgingBuckets
Java class for anonymous complex type.
|
Modifier and Type | Field and Description |
---|---|
protected List<CollectionDetails.Actions> |
actions |
protected List<CollectionDetails.AgingBuckets> |
agingBuckets |
protected String |
billUnitId |
protected BigDecimal |
minimumDue |
protected Notes |
notes |
protected BigDecimal |
overdueAmount |
protected int |
overdueDays |
protected String |
scenarioId |
Constructor and Description |
---|
CollectionDetails() |
Modifier and Type | Method and Description |
---|---|
List<CollectionDetails.Actions> |
getActions()
Gets the value of the actions property.
|
List<CollectionDetails.AgingBuckets> |
getAgingBuckets()
Gets the value of the agingBuckets property.
|
String |
getBillUnitId()
Gets the value of the billUnitId property.
|
BigDecimal |
getMinimumDue()
Gets the value of the minimumDue property.
|
Notes |
getNotes()
Gets the value of the notes property.
|
BigDecimal |
getOverdueAmount()
Gets the value of the overdueAmount property.
|
int |
getOverdueDays()
Gets the value of the overdueDays property.
|
String |
getScenarioId()
Gets the value of the scenarioId property.
|
void |
setBillUnitId(String value)
Sets the value of the billUnitId property.
|
void |
setMinimumDue(BigDecimal value)
Sets the value of the minimumDue property.
|
void |
setNotes(Notes value)
Sets the value of the notes property.
|
void |
setOverdueAmount(BigDecimal value)
Sets the value of the overdueAmount property.
|
void |
setOverdueDays(int value)
Sets the value of the overdueDays property.
|
void |
setScenarioId(String value)
Sets the value of the scenarioId property.
|
getExtension, setExtension
protected String scenarioId
protected String billUnitId
protected BigDecimal overdueAmount
protected int overdueDays
protected BigDecimal minimumDue
protected Notes notes
protected List<CollectionDetails.AgingBuckets> agingBuckets
protected List<CollectionDetails.Actions> actions
public String getScenarioId()
String
public void setScenarioId(String value)
value
- allowed object is
String
public String getBillUnitId()
String
public void setBillUnitId(String value)
value
- allowed object is
String
public BigDecimal getOverdueAmount()
BigDecimal
public void setOverdueAmount(BigDecimal value)
value
- allowed object is
BigDecimal
public int getOverdueDays()
public void setOverdueDays(int value)
public BigDecimal getMinimumDue()
BigDecimal
public void setMinimumDue(BigDecimal value)
value
- allowed object is
BigDecimal
public Notes getNotes()
Notes
public void setNotes(Notes value)
value
- allowed object is
Notes
public List<CollectionDetails.AgingBuckets> getAgingBuckets()
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 agingBuckets property.
For example, to add a new item, do as follows:
getAgingBuckets().add(newItem);
Objects of the following type(s) are allowed in the list
CollectionDetails.AgingBuckets
public List<CollectionDetails.Actions> getActions()
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 actions property.
For example, to add a new item, do as follows:
getActions().add(newItem);
Objects of the following type(s) are allowed in the list
CollectionDetails.Actions