5bb47b3b13f8134ad0d7bf22faf48e3e5ae31063
[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 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 // 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.XmlType;
36
37 import com.fasterxml.jackson.annotation.JsonProperty;
38
39
40 /**
41  * <p>Java class for vnfcslist complex type.
42  *
43  * <p>The following schema fragment specifies the expected content contained within 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 = {
62     "vnfcType",
63     "vnfcName"
64 })
65 public class Vnfcslist {
66
67     @XmlElement(name = "vnfc-type", required = true)
68     @JsonProperty("vnfc-type")
69     protected String vnfcType;
70     @XmlElement(name = "vnfc-name", required = true)
71     @JsonProperty("vnfc-name")
72     protected String vnfcName;
73
74     /**
75      * Gets the value of the vnfcType property.
76      *
77      * @return
78      *     possible object is
79      *     {@link String }
80      *
81      */
82     public String getVnfcType() {
83         return vnfcType;
84     }
85
86     /**
87      * Sets the value of the vnfcType property.
88      *
89      * @param value
90      *     allowed object is
91      *     {@link String }
92      *
93      */
94     public void setVnfcType(String value) {
95         this.vnfcType = value;
96     }
97
98     /**
99      * Gets the value of the vnfcName property.
100      *
101      * @return
102      *     possible object is
103      *     {@link String }
104      *
105      */
106     public String getVnfcName() {
107         return vnfcName;
108     }
109
110     /**
111      * Sets the value of the vnfcName property.
112      *
113      * @param value
114      *     allowed object is
115      *     {@link String }
116      *
117      */
118     public void setVnfcName(String value) {
119         this.vnfcName = value;
120     }
121
122     @Override
123     public String toString() {
124         return "Vnfcslist [vnfcType=" + vnfcType + ", vnfcName=" + vnfcName
125                 + "]";
126     }
127
128 }