1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-fcs
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2007.04.05 at 10:47:13 AM CEST
6 //
7
8
9 package com.amazon.webservices.awsecommerceservice._2007_04_04;
10
11 import java.util.ArrayList;
12 import java.util.List;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlElement;
16 import javax.xml.bind.annotation.XmlRootElement;
17 import javax.xml.bind.annotation.XmlType;
18
19
20 /**
21 * <p>Java class for anonymous complex type.
22 *
23 * <p>The following schema fragment specifies the expected content contained within this class.
24 *
25 * <pre>
26 * <complexType>
27 * <complexContent>
28 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29 * <sequence>
30 * <element ref="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}Request" minOccurs="0"/>
31 * <element ref="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}OperationInformation" maxOccurs="unbounded" minOccurs="0"/>
32 * <element ref="{http://webservices.amazon.com/AWSECommerceService/2007-04-04}ResponseGroupInformation" maxOccurs="unbounded" minOccurs="0"/>
33 * </sequence>
34 * </restriction>
35 * </complexContent>
36 * </complexType>
37 * </pre>
38 *
39 *
40 */
41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name = "", propOrder = {
43 "request",
44 "operationInformation",
45 "responseGroupInformation"
46 })
47 @XmlRootElement(name = "Information")
48 public class Information {
49
50 @XmlElement(name = "Request")
51 protected Request request;
52 @XmlElement(name = "OperationInformation")
53 protected List<OperationInformation> operationInformation;
54 @XmlElement(name = "ResponseGroupInformation")
55 protected List<ResponseGroupInformation> responseGroupInformation;
56
57 /**
58 * Gets the value of the request property.
59 *
60 * @return
61 * possible object is
62 * {@link Request }
63 *
64 */
65 public Request getRequest() {
66 return request;
67 }
68
69 /**
70 * Sets the value of the request property.
71 *
72 * @param value
73 * allowed object is
74 * {@link Request }
75 *
76 */
77 public void setRequest(Request value) {
78 this.request = value;
79 }
80
81 /**
82 * Gets the value of the operationInformation property.
83 *
84 * <p>
85 * This accessor method returns a reference to the live list,
86 * not a snapshot. Therefore any modification you make to the
87 * returned list will be present inside the JAXB object.
88 * This is why there is not a <CODE>set</CODE> method for the operationInformation property.
89 *
90 * <p>
91 * For example, to add a new item, do as follows:
92 * <pre>
93 * getOperationInformation().add(newItem);
94 * </pre>
95 *
96 *
97 * <p>
98 * Objects of the following type(s) are allowed in the list
99 * {@link OperationInformation }
100 *
101 *
102 */
103 public List<OperationInformation> getOperationInformation() {
104 if (operationInformation == null) {
105 operationInformation = new ArrayList<OperationInformation>();
106 }
107 return this.operationInformation;
108 }
109
110 /**
111 * Gets the value of the responseGroupInformation property.
112 *
113 * <p>
114 * This accessor method returns a reference to the live list,
115 * not a snapshot. Therefore any modification you make to the
116 * returned list will be present inside the JAXB object.
117 * This is why there is not a <CODE>set</CODE> method for the responseGroupInformation property.
118 *
119 * <p>
120 * For example, to add a new item, do as follows:
121 * <pre>
122 * getResponseGroupInformation().add(newItem);
123 * </pre>
124 *
125 *
126 * <p>
127 * Objects of the following type(s) are allowed in the list
128 * {@link ResponseGroupInformation }
129 *
130 *
131 */
132 public List<ResponseGroupInformation> getResponseGroupInformation() {
133 if (responseGroupInformation == null) {
134 responseGroupInformation = new ArrayList<ResponseGroupInformation>();
135 }
136 return this.responseGroupInformation;
137 }
138
139 }