removed code smells
[appc.git] / appc-sequence-generator / appc-sequence-generator-bundle / src / main / java / org / onap / appc / seqgen / objects / SequenceGeneratorInputBuilder.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
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
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  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.seqgen.objects;
25
26 import org.onap.appc.dg.objects.InventoryModel;
27 import org.onap.appc.dg.objects.VnfcDependencyModel;
28
29 import java.util.HashMap;
30 import java.util.Map;
31
32 public class SequenceGeneratorInputBuilder {
33
34     private RequestInfo requestInfo;
35
36     private InventoryModel inventoryModel;
37
38     private VnfcDependencyModel dependencyModel;
39
40     private Map<String,String> tunableParams;
41
42     private CapabilityModel capabilityModel;
43     
44     public SequenceGeneratorInputBuilder requestInfo(RequestInfo requestInfo){
45         this.requestInfo = requestInfo;
46         return this;
47     }
48
49     public SequenceGeneratorInputBuilder tunableParameter(String key,String value){
50         if(this.tunableParams ==null){
51             this.tunableParams = new HashMap<>();
52         }
53         this.tunableParams.put(key,value);
54         return this;
55     }
56
57     public SequenceGeneratorInputBuilder inventoryModel(InventoryModel model){
58         this.inventoryModel = model;
59         return this;
60     }
61
62     public SequenceGeneratorInputBuilder dependendcyModel(VnfcDependencyModel model){
63         this.dependencyModel = model;
64         return this;
65     }
66
67     public SequenceGeneratorInputBuilder capabilityModel(CapabilityModel model) {
68         this.capabilityModel = model;
69         return this;
70     }
71     public SequenceGeneratorInput build(){
72         SequenceGeneratorInput input = new SequenceGeneratorInput();
73         input.setRequestInfo(this.requestInfo);
74         input.setCapabilityModel(this.capabilityModel);
75         input.setInventoryModel(this.inventoryModel);
76         input.setDependencyModel(this.dependencyModel);
77         input.setTunableParams(this.tunableParams);
78         return input;
79     }
80
81
82
83 }