50a47831dc75a2e2dae211ee4fa391d8fbe5611b
[appc.git] / appc-inbound / appc-interfaces-service / bundle / src / main / java / org / onap / appc / interfaces / service / data / ActionIdentifier.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.interfaces.service.data;
26
27 import com.fasterxml.jackson.annotation.JsonProperty;
28
29 public class ActionIdentifier {
30
31     @JsonProperty("service-instance-id")
32     private String serviceInstanceID;
33
34     @JsonProperty("vnf-id")
35     private String vnfId;
36
37     @JsonProperty("vf-module-id")
38     private String vfModuleId;
39
40     @JsonProperty("vserver-id")
41     private String vServerId;
42
43     @JsonProperty("vnfc-name")
44     private String vnfcName;
45
46     public String getServiceInstanceID() {
47         return serviceInstanceID;
48     }
49
50     public void setServiceInstanceID(String serviceInstanceID) {
51         this.serviceInstanceID = serviceInstanceID;
52     }
53
54     public String getVnfId() {
55         return vnfId;
56     }
57
58     public void setVnfId(String vnfId) {
59         this.vnfId = vnfId;
60     }
61
62     public String getVfModuleId() {
63         return vfModuleId;
64     }
65
66     public void setVfModuleId(String vfModuleId) {
67         this.vfModuleId = vfModuleId;
68     }
69
70     public String getvServerId() {
71         return vServerId;
72     }
73
74     public void setvServerId(String vServerId) {
75         this.vServerId = vServerId;
76     }
77
78     public String getVnfcName() {
79         return vnfcName;
80     }
81
82     public void setVnfcName(String vnfcName) {
83         this.vnfcName = vnfcName;
84     }
85
86 }