2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
 
   7  * ================================================================================
 
   8  * Licensed under the Apache License, Version 2.0 (the "License");
 
   9  * you may not use this file except in compliance with the License.
 
  10  * You may obtain a copy of the License at
 
  12  *      http://www.apache.org/licenses/LICENSE-2.0
 
  14  * Unless required by applicable law or agreed to in writing, software
 
  15  * distributed under the License is distributed on an "AS IS" BASIS,
 
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  17  * See the License for the specific language governing permissions and
 
  18  * limitations under the License.
 
  19  * ============LICENSE_END=========================================================
 
  22 package org.openecomp.appc.listener.LCM.model;
 
  24 import com.fasterxml.jackson.annotation.JsonProperty;
 
  26 import java.io.Serializable;
 
  29 public class ActionIdentifiers implements Serializable {
 
  31     @JsonProperty("service-instance-id")
 
  32     private String serviceInstanceId;
 
  33     @JsonProperty("vnf-id")
 
  35     @JsonProperty("vnfc-name")
 
  36     private String vnfcName;
 
  37     @JsonProperty("vserver-id")
 
  38     private String vserverId;
 
  40     public ActionIdentifiers() {
 
  43     public ActionIdentifiers(ActionIdentifiers actionIdentifiers) {
 
  44         this.serviceInstanceId=actionIdentifiers.getServiceInstanceId();
 
  45         this.vnfID=actionIdentifiers.getVnfID();
 
  46         this.vnfcName=actionIdentifiers.getVnfcName();
 
  47         this.vserverId=actionIdentifiers.getVserverId();
 
  50     public String getServiceInstanceId() {
 
  51         return serviceInstanceId;
 
  54     public void setServiceInstanceId(String serviceInstanceId) {
 
  55         this.serviceInstanceId = serviceInstanceId;
 
  58     public String getVnfID() {
 
  62     public void setVnfID(String vnfID) {
 
  66     public String getVnfcName() {
 
  70     public void setVnfcName(String vnfcName) {
 
  71         this.vnfcName = vnfcName;
 
  74     public String getVserverId() {
 
  78     public void setVserverId(String vserverId) {
 
  79         this.vserverId = vserverId;