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