Class ExistingBillUnits
- All Implemented Interfaces:
Serializable
Java class for existingBillUnits complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="existingBillUnits">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="billUnitId" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="forServiceGroup" type="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}serviceGroupIndex" maxOccurs="unbounded"/>
<element name="balanceGroups" type="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}balanceGroup" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<BalanceGroup> protected StringThe ID of the bill unit.protected List<ServiceGroupIndex> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the balanceGroups property.The ID of the bill unit.Gets the value of the forServiceGroup property.voidsetBillUnitId(String value) Sets the value of the billUnitId property.
-
Field Details
-
billUnitId
The ID of the bill unit. -
forServiceGroup
-
balanceGroups
-
-
Constructor Details
-
ExistingBillUnits
public ExistingBillUnits()
-
-
Method Details
-
getBillUnitId
The ID of the bill unit.- Returns:
- possible object is
String
-
setBillUnitId
Sets the value of the billUnitId property.- Parameters:
value- allowed object isString- See Also:
-
getForServiceGroup
Gets the value of the forServiceGroup 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
setmethod for the forServiceGroup property.For example, to add a new item, do as follows:
getForServiceGroup().add(newItem);
Objects of the following type(s) are allowed in the list
ServiceGroupIndex- Returns:
- The value of the forServiceGroup property.
-
getBalanceGroups
Gets the value of the balanceGroups 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
setmethod for the balanceGroups property.For example, to add a new item, do as follows:
getBalanceGroups().add(newItem);
Objects of the following type(s) are allowed in the list
BalanceGroup- Returns:
- The value of the balanceGroups property.
-