2  * ============LICENSE_START=======================================================
 
   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
 
  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  * ============LICENSE_END=========================================================
 
  24 package org.onap.appc.seqgen.objects;
 
  26 import org.onap.appc.dg.objects.InventoryModel;
 
  27 import org.onap.appc.dg.objects.VnfcDependencyModel;
 
  29 import java.util.HashMap;
 
  30 import java.util.List;
 
  33 public class SequenceGeneratorInputBuilder {
 
  35     private RequestInfo requestInfo;
 
  37     private InventoryModel inventoryModel;
 
  39     private VnfcDependencyModel dependencyModel;
 
  41     private Map<String,String> tunableParams;
 
  43     private CapabilityModel capabilityModel;
 
  45     public SequenceGeneratorInputBuilder requestInfo(RequestInfo requestInfo){
 
  46         this.requestInfo = requestInfo;
 
  50     public SequenceGeneratorInputBuilder tunableParameter(String key,String value){
 
  51         if(this.tunableParams ==null){
 
  52             this.tunableParams = new HashMap<>();
 
  54         this.tunableParams.put(key,value);
 
  58     public SequenceGeneratorInputBuilder inventoryModel(InventoryModel model){
 
  59         this.inventoryModel = model;
 
  63     public SequenceGeneratorInputBuilder dependendcyModel(VnfcDependencyModel model){
 
  64         this.dependencyModel = model;
 
  68     public SequenceGeneratorInputBuilder capabilityModel(CapabilityModel model) {
 
  69         this.capabilityModel = model;
 
  72     public SequenceGeneratorInput build(){
 
  73         SequenceGeneratorInput input = new SequenceGeneratorInput();
 
  74         input.setRequestInfo(this.requestInfo);
 
  75         input.setCapabilityModel(this.capabilityModel);
 
  76         input.setInventoryModel(this.inventoryModel);
 
  77         input.setDependencyModel(this.dependencyModel);
 
  78         input.setTunableParams(this.tunableParams);