2 * ================================================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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 * ================================================================================
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
28 package org.openecomp.portalsdk.analytics.xmlobj;
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;
39 * <p>Java class for ChartDrillOptions complex type.
41 * <p>The following schema fragment specifies the expected content contained within this class.
44 * <complexType name="ChartDrillOptions">
46 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
48 * <element name="drill_reportId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
49 * <element name="drill_xAxis_FormField" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
50 * <element name="drill_yAxis_FormField" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
51 * <element name="drill_series_FormField" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
52 * <element name="targetFormfield" type="{}ChartDrillFormfield" maxOccurs="unbounded" minOccurs="0"/>
55 * </complexContent>
61 @XmlAccessorType(XmlAccessType.FIELD)
62 @XmlType(name = "ChartDrillOptions", propOrder = {
64 "drillXAxisFormField",
65 "drillYAxisFormField",
66 "drillSeriesFormField",
69 public class ChartDrillOptions {
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;
82 * Gets the value of the drillReportId property.
89 public String getDrillReportId() {
94 * Sets the value of the drillReportId property.
101 public void setDrillReportId(String value) {
102 this.drillReportId = value;
106 * Gets the value of the drillXAxisFormField property.
113 public String getDrillXAxisFormField() {
114 return drillXAxisFormField;
118 * Sets the value of the drillXAxisFormField property.
125 public void setDrillXAxisFormField(String value) {
126 this.drillXAxisFormField = value;
130 * Gets the value of the drillYAxisFormField property.
137 public String getDrillYAxisFormField() {
138 return drillYAxisFormField;
142 * Sets the value of the drillYAxisFormField property.
149 public void setDrillYAxisFormField(String value) {
150 this.drillYAxisFormField = value;
154 * Gets the value of the drillSeriesFormField property.
161 public String getDrillSeriesFormField() {
162 return drillSeriesFormField;
166 * Sets the value of the drillSeriesFormField property.
173 public void setDrillSeriesFormField(String value) {
174 this.drillSeriesFormField = value;
178 * Gets the value of the targetFormfield property.
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.
187 * For example, to add a new item, do as follows:
189 * getTargetFormfield().add(newItem);
194 * Objects of the following type(s) are allowed in the list
195 * {@link ChartDrillFormfield }
199 public List<ChartDrillFormfield> getTargetFormfield() {
200 if (targetFormfield == null) {
201 targetFormfield = new ArrayList<ChartDrillFormfield>();
203 return this.targetFormfield;