8ba7e2daa5e63394c7ee87ea9a94b9f27edfee34
[portal/sdk.git] /
1 /*-
2  * ================================================================================
3  * eCOMP Portal SDK
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 //
21 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 
22 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
23 // Any modifications to this file will be lost upon recompilation of the source schema. 
24 // Generated on: 2016.06.07 at 02:07:29 PM EDT 
25 //
26
27
28 package org.openecomp.portalsdk.analytics.xmlobj;
29
30 import java.util.ArrayList;
31 import java.util.List;
32 import javax.xml.bind.annotation.XmlAccessType;
33 import javax.xml.bind.annotation.XmlAccessorType;
34 import javax.xml.bind.annotation.XmlElement;
35 import javax.xml.bind.annotation.XmlType;
36
37
38 /**
39  * <p>Java class for ChartDrillOptions complex type.
40  * 
41  * <p>The following schema fragment specifies the expected content contained within this class.
42  * 
43  * <pre>
44  * &lt;complexType name="ChartDrillOptions">
45  *   &lt;complexContent>
46  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
47  *       &lt;sequence>
48  *         &lt;element name="drill_reportId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
49  *         &lt;element name="drill_xAxis_FormField" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
50  *         &lt;element name="drill_yAxis_FormField" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
51  *         &lt;element name="drill_series_FormField" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
52  *         &lt;element name="targetFormfield" type="{}ChartDrillFormfield" maxOccurs="unbounded" minOccurs="0"/>
53  *       &lt;/sequence>
54  *     &lt;/restriction>
55  *   &lt;/complexContent>
56  * &lt;/complexType>
57  * </pre>
58  * 
59  * 
60  */
61 @XmlAccessorType(XmlAccessType.FIELD)
62 @XmlType(name = "ChartDrillOptions", propOrder = {
63     "drillReportId",
64     "drillXAxisFormField",
65     "drillYAxisFormField",
66     "drillSeriesFormField",
67     "targetFormfield"
68 })
69 public class ChartDrillOptions {
70
71     @XmlElement(name = "drill_reportId")
72     protected String drillReportId;
73     @XmlElement(name = "drill_xAxis_FormField")
74     protected String drillXAxisFormField;
75     @XmlElement(name = "drill_yAxis_FormField")
76     protected String drillYAxisFormField;
77     @XmlElement(name = "drill_series_FormField")
78     protected String drillSeriesFormField;
79     protected List<ChartDrillFormfield> targetFormfield;
80
81     /**
82      * Gets the value of the drillReportId property.
83      * 
84      * @return
85      *     possible object is
86      *     {@link String }
87      *     
88      */
89     public String getDrillReportId() {
90         return drillReportId;
91     }
92
93     /**
94      * Sets the value of the drillReportId property.
95      * 
96      * @param value
97      *     allowed object is
98      *     {@link String }
99      *     
100      */
101     public void setDrillReportId(String value) {
102         this.drillReportId = value;
103     }
104
105     /**
106      * Gets the value of the drillXAxisFormField property.
107      * 
108      * @return
109      *     possible object is
110      *     {@link String }
111      *     
112      */
113     public String getDrillXAxisFormField() {
114         return drillXAxisFormField;
115     }
116
117     /**
118      * Sets the value of the drillXAxisFormField property.
119      * 
120      * @param value
121      *     allowed object is
122      *     {@link String }
123      *     
124      */
125     public void setDrillXAxisFormField(String value) {
126         this.drillXAxisFormField = value;
127     }
128
129     /**
130      * Gets the value of the drillYAxisFormField property.
131      * 
132      * @return
133      *     possible object is
134      *     {@link String }
135      *     
136      */
137     public String getDrillYAxisFormField() {
138         return drillYAxisFormField;
139     }
140
141     /**
142      * Sets the value of the drillYAxisFormField property.
143      * 
144      * @param value
145      *     allowed object is
146      *     {@link String }
147      *     
148      */
149     public void setDrillYAxisFormField(String value) {
150         this.drillYAxisFormField = value;
151     }
152
153     /**
154      * Gets the value of the drillSeriesFormField property.
155      * 
156      * @return
157      *     possible object is
158      *     {@link String }
159      *     
160      */
161     public String getDrillSeriesFormField() {
162         return drillSeriesFormField;
163     }
164
165     /**
166      * Sets the value of the drillSeriesFormField property.
167      * 
168      * @param value
169      *     allowed object is
170      *     {@link String }
171      *     
172      */
173     public void setDrillSeriesFormField(String value) {
174         this.drillSeriesFormField = value;
175     }
176
177     /**
178      * Gets the value of the targetFormfield property.
179      * 
180      * <p>
181      * This accessor method returns a reference to the live list,
182      * not a snapshot. Therefore any modification you make to the
183      * returned list will be present inside the JAXB object.
184      * This is why there is not a <CODE>set</CODE> method for the targetFormfield property.
185      * 
186      * <p>
187      * For example, to add a new item, do as follows:
188      * <pre>
189      *    getTargetFormfield().add(newItem);
190      * </pre>
191      * 
192      * 
193      * <p>
194      * Objects of the following type(s) are allowed in the list
195      * {@link ChartDrillFormfield }
196      * 
197      * 
198      */
199     public List<ChartDrillFormfield> getTargetFormfield() {
200         if (targetFormfield == null) {
201             targetFormfield = new ArrayList<ChartDrillFormfield>();
202         }
203         return this.targetFormfield;
204     }
205
206 }