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