Added oparent to sdc main
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / components / utils / CapabilityDefinitionBuilder.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.CapabilityDefinition;
24 import org.openecomp.sdc.be.model.ComponentInstanceProperty;
25
26 import java.util.ArrayList;
27
28 public class CapabilityDefinitionBuilder {
29
30     private CapabilityDefinition capabilityDefinition;
31
32     public CapabilityDefinitionBuilder() {
33         capabilityDefinition = new CapabilityDefinition();
34         capabilityDefinition.setProperties(new ArrayList<>());
35     }
36
37     public CapabilityDefinitionBuilder addProperty(ComponentInstanceProperty property) {
38         capabilityDefinition.getProperties().add(property);
39         return this;
40     }
41
42     public CapabilityDefinitionBuilder setOwnerId(String ownerId) {
43         capabilityDefinition.setOwnerId(ownerId);
44         return this;
45     }
46
47     public CapabilityDefinitionBuilder setOwnerName(String ownerName) {
48         capabilityDefinition.setOwnerName(ownerName);
49         return this;
50     }
51
52     public CapabilityDefinitionBuilder setType(String type) {
53         capabilityDefinition.setType(type);
54         return this;
55     }
56
57     public CapabilityDefinitionBuilder setId(String ownerId) {
58         capabilityDefinition.setUniqueId(ownerId);
59         return this;
60     }
61
62     public CapabilityDefinitionBuilder setName(String name) {
63         capabilityDefinition.setName(name);
64         return this;
65     }
66
67
68     public CapabilityDefinition build() {
69         return capabilityDefinition;
70     }
71 }