Design Services updates
[appc.git] / appc-dispatcher / appc-request-handler / appc-request-handler-core / src / main / java / org / onap / appc / requesthandler / model / ActionIdentifierModel.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.requesthandler.model;
26
27 import com.fasterxml.jackson.annotation.JsonInclude;
28 import com.fasterxml.jackson.annotation.JsonProperty;
29
30 @JsonInclude(JsonInclude.Include.NON_NULL)
31 public class ActionIdentifierModel {
32     @JsonProperty("service-instance-id")
33     private String serviceInstanceId;
34     @JsonProperty("vnf-id")
35     private String vnfId;
36     @JsonProperty("vnfc-name")
37     private String vnfcName;
38     @JsonProperty("vf-module-id")
39     private String vfModuleId;
40     @JsonProperty("vserver-id")
41     private String vserverId;
42
43
44     public String getVnfId() {
45         return vnfId;
46     }
47
48     public void setVnfId(String vnfId) {
49         this.vnfId = vnfId;
50     }
51
52     public String getVnfcName() {
53         return vnfcName;
54     }
55
56     public void setVnfcName(String vnfcName) {
57         this.vnfcName = vnfcName;
58     }
59
60     public String getVfModuleId() {
61         return vfModuleId;
62     }
63
64     public void setVfModuleId(String vfModuleId) {
65         this.vfModuleId = vfModuleId;
66     }
67
68     public String getVserverId() {
69         return vserverId;
70     }
71
72     public void setVserverId(String vserverId) {
73         this.vserverId = vserverId;
74     }
75     public String getServiceInstanceId() {
76         return serviceInstanceId;
77     }
78
79     public void setServiceInstanceId(String serviceInstanceId) {
80         this.serviceInstanceId = serviceInstanceId;
81     }
82        
83     
84 }