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