Class BundleOffers.BundleOffer
- All Implemented Interfaces:
Serializable
- Enclosing class:
BundleOffers
Java class for anonymous complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="bundleId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="packageId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="chargeoffers" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="chargeRef" type="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}resourceRef" minOccurs="0"/> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="isRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="lastStatusChange" type="{http://www.w3.org/2001/XMLSchema}date"/> </sequence> </restriction> </complexContent> </complexType> </element> <element name="discountoffers" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="discountRef" type="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}resourceRef" minOccurs="0"/> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="isRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="lastStatusChange" type="{http://www.w3.org/2001/XMLSchema}date"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Java class for anonymous complex typestatic class
Java class for anonymous complex type -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected String
The ID of the bundle.protected List
<BundleOffers.BundleOffer.Chargeoffers> A list of charge offers.protected List
<BundleOffers.BundleOffer.Discountoffers> A list of discount offers.protected String
The name of the bundle.protected String
The ID of the package. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe ID of the bundle.A list of charge offers.A list of discount offers.getName()
The name of the bundle.The ID of the package.void
setBundleId
(String value) Sets the value of the bundleId property.void
Sets the value of the name property.void
setPackageId
(String value) Sets the value of the packageId property.
-
Field Details
-
bundleId
The ID of the bundle. -
name
The name of the bundle. -
packageId
The ID of the package. -
chargeoffers
A list of charge offers. -
discountoffers
A list of discount offers.
-
-
Constructor Details
-
BundleOffer
public BundleOffer()
-
-
Method Details
-
getBundleId
The ID of the bundle.- Returns:
- possible object is
String
-
setBundleId
Sets the value of the bundleId property.- Parameters:
value
- allowed object isString
- See Also:
-
getName
The name of the bundle.- Returns:
- possible object is
String
-
setName
Sets the value of the name property.- Parameters:
value
- allowed object isString
- See Also:
-
getPackageId
The ID of the package.- Returns:
- possible object is
String
-
setPackageId
Sets the value of the packageId property.- Parameters:
value
- allowed object isString
- See Also:
-
getChargeoffers
A list of charge offers. Gets the value of the chargeoffers 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 chargeoffers property.For example, to add a new item, do as follows:
getChargeoffers().add(newItem);
Objects of the following type(s) are allowed in the list
BundleOffers.BundleOffer.Chargeoffers
- Returns:
- The value of the chargeoffers property.
-
getDiscountoffers
A list of discount offers. Gets the value of the discountoffers 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 discountoffers property.For example, to add a new item, do as follows:
getDiscountoffers().add(newItem);
Objects of the following type(s) are allowed in the list
BundleOffers.BundleOffer.Discountoffers
- Returns:
- The value of the discountoffers property.
-