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