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 javax.xml.bind.annotation.XmlAccessType;
31 import javax.xml.bind.annotation.XmlAccessorType;
32 import javax.xml.bind.annotation.XmlType;
36 * <p>Java class for DataminingOptions complex type.
38 * <p>The following schema fragment specifies the expected content contained within this class.
41 * <complexType name="DataminingOptions">
43 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
45 * <element name="classifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
46 * <element name="timeAttribute" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
47 * <element name="timeformat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
48 * <element name="forecastingUnits" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
51 * </complexContent>
57 @XmlAccessorType(XmlAccessType.FIELD)
58 @XmlType(name = "DataminingOptions", propOrder = {
64 public class DataminingOptions {
66 protected String classifier;
67 protected String timeAttribute;
68 protected String timeformat;
69 protected String forecastingUnits;
72 * Gets the value of the classifier property.
79 public String getClassifier() {
84 * Sets the value of the classifier property.
91 public void setClassifier(String value) {
92 this.classifier = value;
96 * Gets the value of the timeAttribute property.
103 public String getTimeAttribute() {
104 return timeAttribute;
108 * Sets the value of the timeAttribute property.
115 public void setTimeAttribute(String value) {
116 this.timeAttribute = value;
120 * Gets the value of the timeformat property.
127 public String getTimeformat() {
132 * Sets the value of the timeformat property.
139 public void setTimeformat(String value) {
140 this.timeformat = value;
144 * Gets the value of the forecastingUnits property.
151 public String getForecastingUnits() {
152 return forecastingUnits;
156 * Sets the value of the forecastingUnits property.
163 public void setForecastingUnits(String value) {
164 this.forecastingUnits = value;