Class ExistingBillUnits

java.lang.Object
com.oracle.communications.brm.cc.model.ExistingBillUnits
All Implemented Interfaces:
Serializable

public class ExistingBillUnits extends Object implements Serializable
Informsation about existing bill units.

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 Details

  • Constructor Details

    • ExistingBillUnits

      public ExistingBillUnits()
  • Method Details

    • getBillUnitId

      public String getBillUnitId()
      The ID of the bill unit.
      Returns:
      possible object is String
    • setBillUnitId

      public void setBillUnitId(String value)
      Sets the value of the billUnitId property.
      Parameters:
      value - allowed object is String
      See Also:
    • getForServiceGroup

      public List<ServiceGroupIndex> 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 set method 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

      public List<BalanceGroup> 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 set method 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.