[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / ProductReqDetails.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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.ci.tests.datatypes;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import org.openecomp.sdc.be.model.category.CategoryDefinition;
27
28 public class ProductReqDetails extends ComponentReqDetails {
29
30         private String fullName;
31         private List<String> contacts;
32         private String isActive;
33
34         public ProductReqDetails(String name, List<CategoryDefinition> category) {
35                 this.categories = category;
36                 this.name = name;
37         }
38
39         public ProductReqDetails(String name) {
40                 this.name = name;
41         }
42
43         public void addCategory(CategoryDefinition category) {
44                 if (categories == null) {
45                         categories = new ArrayList<>();
46                 }
47                 categories.add(category);
48         }
49
50         public void addContact(String contactUserId) {
51                 if (contacts == null) {
52                         contacts = new ArrayList<>();
53                 }
54                 contacts.add(contactUserId);
55         }
56
57         public List<String> getContacts() {
58                 return contacts;
59         }
60
61         public void setContacts(List<String> contacts) {
62                 this.contacts = contacts;
63         }
64
65         public List<CategoryDefinition> getCategories() {
66                 return categories;
67         }
68
69         public void setCategories(List<CategoryDefinition> categories) {
70                 this.categories = categories;
71         }
72
73         public String getFullName() {
74                 return fullName;
75         }
76
77         public void setFullName(String fullName) {
78                 this.fullName = fullName;
79         }
80
81         public String getActive() {
82                 return isActive;
83         }
84
85         public void setActive(String isActive) {
86                 this.isActive = isActive;
87         }
88 }