2  * ============LICENSE_START=======================================================
 
   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
 
  13  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  22  * ============LICENSE_END=========================================================
 
  25 package org.onap.appc.seqgen.objects;
 
  27 import com.fasterxml.jackson.annotation.JsonIgnore;
 
  28 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
 
  29 import com.fasterxml.jackson.annotation.JsonProperty;
 
  30 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
 
  31 import org.onap.appc.dg.objects.InventoryModel;
 
  32 import org.onap.appc.dg.objects.VnfcDependencyModel;
 
  34 import javax.validation.constraints.NotNull;
 
  35 import java.util.List;
 
  38 @JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
 
  39 @JsonIgnoreProperties(ignoreUnknown = true)
 
  40 public class SequenceGeneratorInput {
 
  43     @JsonProperty("request-info")
 
  44     private RequestInfo requestInfo;
 
  47     private InventoryModel inventoryModel;
 
  50     private VnfcDependencyModel dependencyModel;
 
  52     @JsonProperty("tunable-parameters")
 
  53     private Map<String,String> tunableParams;
 
  55     @JsonProperty("capabilities")
 
  56     private Map<String,List<String>> capability;
 
  58     public RequestInfo getRequestInfo() {
 
  62     public void setRequestInfo(RequestInfo requestInfo) {
 
  63         this.requestInfo = requestInfo;
 
  66     public InventoryModel getInventoryModel() {
 
  67         return inventoryModel;
 
  70     public void setInventoryModel(InventoryModel inventoryModel) {
 
  71         this.inventoryModel = inventoryModel;
 
  74     public VnfcDependencyModel getDependencyModel() {
 
  75         return dependencyModel;
 
  78     public void setDependencyModel(VnfcDependencyModel dependencyModel) {
 
  79         this.dependencyModel = dependencyModel;
 
  82     public Map<String, String> getTunableParams() {
 
  86     public void setTunableParams(Map<String, String> tunableParams) {
 
  87         this.tunableParams = tunableParams;
 
  90     public Map<String, List<String>> getCapability() {
 
  94     public void setCapability(Map<String, List<String>> capability) {
 
  95         this.capability = capability;