c26bce7c04ee54cb033504f8ec92268c12d8885a
[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 DataminingOptions complex type.
37  * 
38  * <p>The following schema fragment specifies the expected content contained within this class.
39  * 
40  * <pre>
41  * &lt;complexType name="DataminingOptions">
42  *   &lt;complexContent>
43  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
44  *       &lt;sequence>
45  *         &lt;element name="classifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
46  *         &lt;element name="timeAttribute" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
47  *         &lt;element name="timeformat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
48  *         &lt;element name="forecastingUnits" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
49  *       &lt;/sequence>
50  *     &lt;/restriction>
51  *   &lt;/complexContent>
52  * &lt;/complexType>
53  * </pre>
54  * 
55  * 
56  */
57 @XmlAccessorType(XmlAccessType.FIELD)
58 @XmlType(name = "DataminingOptions", propOrder = {
59     "classifier",
60     "timeAttribute",
61     "timeformat",
62     "forecastingUnits"
63 })
64 public class DataminingOptions {
65
66     protected String classifier;
67     protected String timeAttribute;
68     protected String timeformat;
69     protected String forecastingUnits;
70
71     /**
72      * Gets the value of the classifier property.
73      * 
74      * @return
75      *     possible object is
76      *     {@link String }
77      *     
78      */
79     public String getClassifier() {
80         return classifier;
81     }
82
83     /**
84      * Sets the value of the classifier property.
85      * 
86      * @param value
87      *     allowed object is
88      *     {@link String }
89      *     
90      */
91     public void setClassifier(String value) {
92         this.classifier = value;
93     }
94
95     /**
96      * Gets the value of the timeAttribute property.
97      * 
98      * @return
99      *     possible object is
100      *     {@link String }
101      *     
102      */
103     public String getTimeAttribute() {
104         return timeAttribute;
105     }
106
107     /**
108      * Sets the value of the timeAttribute property.
109      * 
110      * @param value
111      *     allowed object is
112      *     {@link String }
113      *     
114      */
115     public void setTimeAttribute(String value) {
116         this.timeAttribute = value;
117     }
118
119     /**
120      * Gets the value of the timeformat property.
121      * 
122      * @return
123      *     possible object is
124      *     {@link String }
125      *     
126      */
127     public String getTimeformat() {
128         return timeformat;
129     }
130
131     /**
132      * Sets the value of the timeformat property.
133      * 
134      * @param value
135      *     allowed object is
136      *     {@link String }
137      *     
138      */
139     public void setTimeformat(String value) {
140         this.timeformat = value;
141     }
142
143     /**
144      * Gets the value of the forecastingUnits property.
145      * 
146      * @return
147      *     possible object is
148      *     {@link String }
149      *     
150      */
151     public String getForecastingUnits() {
152         return forecastingUnits;
153     }
154
155     /**
156      * Sets the value of the forecastingUnits property.
157      * 
158      * @param value
159      *     allowed object is
160      *     {@link String }
161      *     
162      */
163     public void setForecastingUnits(String value) {
164         this.forecastingUnits = value;
165     }
166
167 }