Update java files with correct license text
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / onap / appc / flow / controller / interfaceData / ActionIdentifier.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.XmlRootElement;
36 import javax.xml.bind.annotation.XmlType;
37
38 import com.fasterxml.jackson.annotation.JsonProperty;
39
40
41 /**
42  * <p>Java class for anonymous complex type.
43  *
44  * <p>The following schema fragment specifies the expected content contained within this class.
45  *
46  * <pre>
47  * &lt;complexType>
48  *   &lt;complexContent>
49  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
50  *       &lt;sequence>
51  *         &lt;element name="vnf-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
52  *         &lt;element name="vserver-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
53  *         &lt;element name="vnfc-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
54  *       &lt;/sequence>
55  *     &lt;/restriction>
56  *   &lt;/complexContent>
57  * &lt;/complexType>
58  * </pre>
59  *
60  *
61  */
62 @XmlAccessorType(XmlAccessType.FIELD)
63 @XmlType(name = "", propOrder = {
64     "vnfId",
65     "vserverId",
66     "vnfcName"
67 })
68 @XmlRootElement(name = "action-identifier")
69 public class ActionIdentifier {
70
71     @XmlElement(name = "vnf-id", required = true)
72     @JsonProperty("vnf-id")
73     protected String vnfId;
74     @XmlElement(name = "vserver-id", required = true)
75     @JsonProperty("vserver-id")
76     protected String vserverId;
77     @XmlElement(name = "vnfc-name", required = true)
78     @JsonProperty("vnfc-name")
79     protected String vnfcName;
80
81     /**
82      * Gets the value of the vnfId property.
83      *
84      * @return
85      *     possible object is
86      *     {@link String }
87      *
88      */
89     public String getVnfId() {
90         return vnfId;
91     }
92
93     /**
94      * Sets the value of the vnfId property.
95      *
96      * @param value
97      *     allowed object is
98      *     {@link String }
99      *
100      */
101     public void setVnfId(String value) {
102         this.vnfId = value;
103     }
104
105     /**
106      * Gets the value of the vserverId property.
107      *
108      * @return
109      *     possible object is
110      *     {@link String }
111      *
112      */
113     public String getVserverId() {
114         return vserverId;
115     }
116
117     /**
118      * Sets the value of the vserverId property.
119      *
120      * @param value
121      *     allowed object is
122      *     {@link String }
123      *
124      */
125     public void setVserverId(String value) {
126         this.vserverId = value;
127     }
128
129     /**
130      * Gets the value of the vnfcName property.
131      *
132      * @return
133      *     possible object is
134      *     {@link String }
135      *
136      */
137     public String getVnfcName() {
138         return vnfcName;
139     }
140
141     /**
142      * Sets the value of the vnfcName property.
143      *
144      * @param value
145      *     allowed object is
146      *     {@link String }
147      *
148      */
149     public void setVnfcName(String value) {
150         this.vnfcName = value;
151     }
152
153     @Override
154     public String toString() {
155         return "ActionIdentifier [vnfId=" + vnfId + ", vserverId=" + vserverId
156                 + ", vnfcName=" + vnfcName + "]";
157     }
158
159 }