Update java files with correct license text
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / onap / appc / flow / controller / interfaceData / TunableParameters.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  * ============LICENSE_END=========================================================
21  */
22
23 //
24 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
25 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
26 // Any modifications to this file will be lost upon recompilation of the source schema.
27 // Generated on: 2017.07.31 at 10:30:39 AM EDT
28 //
29
30
31 package org.onap.appc.flow.controller.interfaceData;
32
33 import javax.xml.bind.annotation.XmlAccessType;
34 import javax.xml.bind.annotation.XmlAccessorType;
35 import javax.xml.bind.annotation.XmlElement;
36 import javax.xml.bind.annotation.XmlRootElement;
37 import javax.xml.bind.annotation.XmlType;
38
39
40 /**
41  * <p>Java class for anonymous complex type.
42  *
43  * <p>The following schema fragment specifies the expected content contained within this class.
44  *
45  * <pre>
46  * &lt;complexType>
47  *   &lt;complexContent>
48  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
49  *       &lt;sequence>
50  *         &lt;element name="strategy" type="{http://www.w3.org/2001/XMLSchema}string"/>
51  *         &lt;element name="wait-time" type="{http://www.w3.org/2001/XMLSchema}string"/>
52  *         &lt;element name="retry-count" type="{http://www.w3.org/2001/XMLSchema}string"/>
53  *       &lt;/sequence>
54  *     &lt;/restriction>
55  *   &lt;/complexContent>
56  * &lt;/complexType>
57  * </pre>
58  *
59  *
60  */
61 @XmlAccessorType(XmlAccessType.FIELD)
62 @XmlType(name = "", propOrder = {
63     "strategy",
64     "waitTime",
65     "retryCount"
66 })
67 @XmlRootElement(name = "tunable-parameters")
68 public class TunableParameters {
69
70     @XmlElement(required = true)
71     protected String strategy;
72     @XmlElement(name = "wait-time", required = true)
73     protected String waitTime;
74     @XmlElement(name = "retry-count", required = true)
75     protected String retryCount;
76
77     /**
78      * Gets the value of the strategy property.
79      *
80      * @return
81      *     possible object is
82      *     {@link String }
83      *
84      */
85     public String getStrategy() {
86         return strategy;
87     }
88
89     /**
90      * Sets the value of the strategy property.
91      *
92      * @param value
93      *     allowed object is
94      *     {@link String }
95      *
96      */
97     public void setStrategy(String value) {
98         this.strategy = value;
99     }
100
101     /**
102      * Gets the value of the waitTime property.
103      *
104      * @return
105      *     possible object is
106      *     {@link String }
107      *
108      */
109     public String getWaitTime() {
110         return waitTime;
111     }
112
113     /**
114      * Sets the value of the waitTime property.
115      *
116      * @param value
117      *     allowed object is
118      *     {@link String }
119      *
120      */
121     public void setWaitTime(String value) {
122         this.waitTime = value;
123     }
124
125     /**
126      * Gets the value of the retryCount property.
127      *
128      * @return
129      *     possible object is
130      *     {@link String }
131      *
132      */
133     public String getRetryCount() {
134         return retryCount;
135     }
136
137     /**
138      * Sets the value of the retryCount property.
139      *
140      * @param value
141      *     allowed object is
142      *     {@link String }
143      *
144      */
145     public void setRetryCount(String value) {
146         this.retryCount = value;
147     }
148
149     @Override
150     public String toString() {
151         return "TunableParameters [strategy=" + strategy + ", waitTime="
152                 + waitTime + ", retryCount=" + retryCount + "]";
153     }
154
155 }