849f7cad9caac8577d6ca69fc3b2ae3484632853
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / openecomp / appc / flow / controller / interfaceData / Vnfcslist.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.XmlType;
35
36 import com.fasterxml.jackson.annotation.JsonProperty;
37
38
39 /**
40  * <p>Java class for vnfcslist complex type.
41  * 
42  * <p>The following schema fragment specifies the expected content contained within this class.
43  * 
44  * <pre>
45  * &lt;complexType name="vnfcslist">
46  *   &lt;complexContent>
47  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
48  *       &lt;sequence>
49  *         &lt;element name="vnfc-type" type="{http://www.w3.org/2001/XMLSchema}string"/>
50  *         &lt;element name="vnfc-name" 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 = "vnfcslist", propOrder = {
61     "vnfcType",
62     "vnfcName"
63 })
64 public class Vnfcslist {
65
66     @XmlElement(name = "vnfc-type", required = true)
67     @JsonProperty("vnfc-type")
68     protected String vnfcType;
69     @XmlElement(name = "vnfc-name", required = true)
70     @JsonProperty("vnfc-name")
71     protected String vnfcName;
72
73     /**
74      * Gets the value of the vnfcType property.
75      * 
76      * @return
77      *     possible object is
78      *     {@link String }
79      *     
80      */
81     public String getVnfcType() {
82         return vnfcType;
83     }
84
85     /**
86      * Sets the value of the vnfcType property.
87      * 
88      * @param value
89      *     allowed object is
90      *     {@link String }
91      *     
92      */
93     public void setVnfcType(String value) {
94         this.vnfcType = value;
95     }
96
97     /**
98      * Gets the value of the vnfcName property.
99      * 
100      * @return
101      *     possible object is
102      *     {@link String }
103      *     
104      */
105     public String getVnfcName() {
106         return vnfcName;
107     }
108
109     /**
110      * Sets the value of the vnfcName property.
111      * 
112      * @param value
113      *     allowed object is
114      *     {@link String }
115      *     
116      */
117     public void setVnfcName(String value) {
118         this.vnfcName = value;
119     }
120
121     @Override
122     public String toString() {
123         return "Vnfcslist [vnfcType=" + vnfcType + ", vnfcName=" + vnfcName
124                 + "]";
125     }
126
127 }