Changes to config bundle for vnf level enhancement
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / onap / appc / flow / controller / interfaceData / Vnfcslist.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2019 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 // 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 package org.onap.appc.flow.controller.interfaceData;
29
30 import javax.xml.bind.annotation.XmlAccessType;
31 import javax.xml.bind.annotation.XmlAccessorType;
32 import javax.xml.bind.annotation.XmlElement;
33 import javax.xml.bind.annotation.XmlType;
34
35 import com.fasterxml.jackson.annotation.JsonProperty;
36
37 /**
38  * <p>
39  * Java class for vnfcslist complex type.
40  *
41  * <p>
42  * The following schema fragment specifies the expected content contained within
43  * this class.
44  *
45  * <pre>
46  * &lt;complexType name="vnfcslist">
47  *   &lt;complexContent>
48  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
49  *       &lt;sequence>
50  *         &lt;element name="vnfc-type" type="{http://www.w3.org/2001/XMLSchema}string"/>
51  *         &lt;element name="vnfc-name" 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 = "vnfcslist", propOrder = { "vnfcType", "vnfcName" })
62 public class Vnfcslist {
63
64     @XmlElement(name = "vnfc-type", required = true)
65     @JsonProperty("vnfc-type")
66     protected String vnfcType;
67     @XmlElement(name = "vnfc-name", required = true)
68     @JsonProperty("vnfc-name")
69     protected String vnfcName;
70     @XmlElement(name = "vnfc-function-code", required = true)
71     @JsonProperty("vnfc-function-code")
72     protected String vnfcFunctionCode;
73
74     /**
75      * Gets the value of the vnfcType property.
76      *
77      * @return possible object is {@link String }
78      *
79      */
80     public String getVnfcType() {
81         return vnfcType;
82     }
83
84     /**
85      * Sets the value of the vnfcType property.
86      *
87      * @param value
88      *            allowed object is {@link String }
89      *
90      */
91     public void setVnfcType(String value) {
92         this.vnfcType = value;
93     }
94
95     /**
96      * Gets the value of the vnfcName property.
97      *
98      * @return possible object is {@link String }
99      *
100      */
101     public String getVnfcName() {
102         return vnfcName;
103     }
104
105     /**
106      * Sets the value of the vnfcName property.
107      *
108      * @param value
109      *            allowed object is {@link String }
110      *
111      */
112     public void setVnfcName(String value) {
113         this.vnfcName = value;
114     }
115
116     /**
117      * Gets the value of the vnfcFunctionCode property.
118      *
119      * @return possible object is {@link String }
120      *
121      */
122     public String getVnfcFunctionCode() {
123         return vnfcFunctionCode;
124     }
125
126     /**
127      * Sets the value of the vnfcName property.
128      *
129      * @param value
130      *            allowed object is {@link String }
131      *
132      */
133     public void setVnfcFunctionCode(String value) {
134         this.vnfcFunctionCode = value;
135     }
136
137     @Override
138     public String toString() {
139         return "Vnfcslist [vnfcType=" + vnfcType + ", vnfcName=" + vnfcName + ", vnfcFunctionCode=" + vnfcFunctionCode
140                 + "]";
141     }
142
143 }