Moving all files to root directory
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / main / java / org / openecomp / appc / listener / LCM / model / ActionIdentifiers.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.listener.LCM.model;
23
24 import com.fasterxml.jackson.annotation.JsonProperty;
25
26 import java.io.Serializable;
27
28
29 public class ActionIdentifiers implements Serializable {
30
31     @JsonProperty("service-instance-id")
32     private String serviceInstanceId;
33     @JsonProperty("vnf-id")
34     private String vnfID;
35     @JsonProperty("vnfc-name")
36     private String vnfcName;
37     @JsonProperty("vserver-id")
38     private String vserverId;
39
40     public ActionIdentifiers() {
41     }
42
43     public ActionIdentifiers(ActionIdentifiers actionIdentifiers) {
44         this.serviceInstanceId=actionIdentifiers.getServiceInstanceId();
45         this.vnfID=actionIdentifiers.getVnfID();
46         this.vnfcName=actionIdentifiers.getVnfcName();
47         this.vserverId=actionIdentifiers.getVserverId();
48     }
49
50     public String getServiceInstanceId() {
51         return serviceInstanceId;
52     }
53
54     public void setServiceInstanceId(String serviceInstanceId) {
55         this.serviceInstanceId = serviceInstanceId;
56     }
57
58     public String getVnfID() {
59         return vnfID;
60     }
61
62     public void setVnfID(String vnfID) {
63         this.vnfID = vnfID;
64     }
65
66     public String getVnfcName() {
67         return vnfcName;
68     }
69
70     public void setVnfcName(String vnfcName) {
71         this.vnfcName = vnfcName;
72     }
73
74     public String getVserverId() {
75         return vserverId;
76     }
77
78     public void setVserverId(String vserverId) {
79         this.vserverId = vserverId;
80     }
81 }