f097f3faf26ddbf06f88f3fba81c02f1d584f666
[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 javax.xml.bind.annotation.XmlAccessType;
31 import javax.xml.bind.annotation.XmlAccessorType;
32 import javax.xml.bind.annotation.XmlType;
33
34
35 /**
36  * <p>Java class for ChartDrillFormfield complex type.
37  * 
38  * <p>The following schema fragment specifies the expected content contained within this class.
39  * 
40  * <pre>
41  * &lt;complexType name="ChartDrillFormfield">
42  *   &lt;complexContent>
43  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
44  *       &lt;sequence>
45  *         &lt;element name="formfield" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
46  *       &lt;/sequence>
47  *     &lt;/restriction>
48  *   &lt;/complexContent>
49  * &lt;/complexType>
50  * </pre>
51  * 
52  * 
53  */
54 @XmlAccessorType(XmlAccessType.FIELD)
55 @XmlType(name = "ChartDrillFormfield", propOrder = {
56     "formfield"
57 })
58 public class ChartDrillFormfield {
59
60     protected String formfield;
61
62     /**
63      * Gets the value of the formfield property.
64      * 
65      * @return
66      *     possible object is
67      *     {@link String }
68      *     
69      */
70     public String getFormfield() {
71         return formfield;
72     }
73
74     /**
75      * Sets the value of the formfield property.
76      * 
77      * @param value
78      *     allowed object is
79      *     {@link String }
80      *     
81      */
82     public void setFormfield(String value) {
83         this.formfield = value;
84     }
85
86 }