Added oparent to sdc main
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / components / utils / ArtifactBuilder.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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.sdc.be.components.utils;
22
23 import org.openecomp.sdc.be.model.ArtifactDefinition;
24 import org.openecomp.sdc.be.model.HeatParameterDefinition;
25
26 import java.util.ArrayList;
27
28 public class ArtifactBuilder {
29
30     private ArtifactDefinition artifactDefinition;
31
32     public ArtifactBuilder() {
33         this.artifactDefinition = new ArtifactDefinition();
34     }
35
36     public ArtifactBuilder setType(String type) {
37         this.artifactDefinition.setArtifactType(type);
38         return this;
39     }
40
41     public ArtifactBuilder setName(String name) {
42         this.artifactDefinition.setArtifactName(name);
43         return this;
44     }
45
46     public ArtifactBuilder setLabel(String label) {
47         this.artifactDefinition.setArtifactLabel(label);
48         return this;
49     }
50
51     public ArtifactBuilder addHeatParam(HeatParameterDefinition heatParam) {
52         if (this.artifactDefinition.getHeatParameters() == null) {
53             this.artifactDefinition.setHeatParameters(new ArrayList<>());
54         }
55         this.artifactDefinition.getHeatParameters().add(heatParam);
56         return this;
57     }
58
59     public ArtifactDefinition build() {
60         return artifactDefinition;
61     }
62 }