Added oparent to sdc main
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / components / utils / GroupTypeBuilder.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.GroupTypeDefinition;
24
25 public class GroupTypeBuilder {
26
27     private GroupTypeDefinition groupTypeDataDefinition;
28
29     public static GroupTypeBuilder create() {
30         return new GroupTypeBuilder();
31     }
32
33     private GroupTypeBuilder() {
34         this.groupTypeDataDefinition = new GroupTypeDefinition();
35     }
36
37     public GroupTypeBuilder setType(String type) {
38         groupTypeDataDefinition.setType(type);
39         return this;
40     }
41
42     public GroupTypeBuilder setUniqueId(String uid) {
43         groupTypeDataDefinition.setUniqueId(uid);
44         return this;
45     }
46
47     public GroupTypeBuilder setName(String name) {
48         groupTypeDataDefinition.setName(name);
49         return this;
50     }
51
52     public GroupTypeBuilder setIcon(String icon) {
53         groupTypeDataDefinition.setIcon(icon);
54         return this;
55     }
56
57     public GroupTypeBuilder setVersion(String version) {
58         groupTypeDataDefinition.setVersion(version);
59         return this;
60     }
61
62     public GroupTypeBuilder setDerivedFrom(String derivedFrom) {
63         groupTypeDataDefinition.setDerivedFrom(derivedFrom);
64         return this;
65     }
66
67     public GroupTypeDefinition build() {
68         return groupTypeDataDefinition;
69     }
70
71
72
73 }