Initial commit for Sequence Generator
[appc.git] / appc-sequence-generator / appc-sequence-generator-bundle / src / main / java / org / openecomp / appc / seqgen / objects / ActionIdentifier.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property.  All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.appc.seqgen.objects;
22
23 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
26
27 @JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
28 @JsonIgnoreProperties(ignoreUnknown = true)
29 public class ActionIdentifier {
30
31     @JsonProperty("vnf-id")
32     private String vnfId;
33
34     @JsonProperty("vnfc-name")
35     private String vnfcName;
36
37     @JsonProperty("vserver-id")
38     private String vServerId;
39
40     public String getVnfId() {
41         return vnfId;
42     }
43
44     public void setVnfId(String vnfId) {
45         this.vnfId = vnfId;
46     }
47
48     public String getVnfcName() {
49         return vnfcName;
50     }
51
52     public void setVnfcName(String vnfcName) {
53         this.vnfcName = vnfcName;
54     }
55
56     public String getvServerId() {
57         return vServerId;
58     }
59
60     public void setvServerId(String vServerId) {
61         this.vServerId = vServerId;
62     }
63 }