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