68002acf1cb9dab735fbcd55c105afbeeed6cdd0
[dcaegen2/platform.git] / mod2 / auth-service / src / test / java / org / onap / dcaegen2 / platform / mod / objectmothers / RoleObjectMother.java
1 /*
2  *
3  *  * ============LICENSE_START=======================================================
4  *  *  org.onap.dcae
5  *  *  ================================================================================
6  *  *  Copyright (c) 2020 AT&T Intellectual Property. All rights reserved.
7  *  *  ================================================================================
8  *  *  Licensed under the Apache License, Version 2.0 (the "License");
9  *  *  you may not use this file except in compliance with the License.
10  *  *  You may obtain a copy of the License at
11  *  *
12  *  *       http://www.apache.org/licenses/LICENSE-2.0
13  *  *
14  *  *  Unless required by applicable law or agreed to in writing, software
15  *  *  distributed under the License is distributed on an "AS IS" BASIS,
16  *  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  *  *  See the License for the specific language governing permissions and
18  *  *  limitations under the License.
19  *  *  ============LICENSE_END=========================================================
20  *
21  */
22
23 package org.onap.dcaegen2.platform.mod.objectmothers;
24
25
26 import org.onap.dcaegen2.platform.mod.models.ModUser;
27 import org.onap.dcaegen2.platform.mod.models.Role;
28 import org.onap.dcaegen2.platform.mod.repositories.RoleRepository;
29
30 import java.util.*;
31 import java.util.stream.Collectors;
32
33 /**
34  * @author
35  * @date 09/22/2020
36  * Mock for RoleController Test Case
37  */
38 public class RoleObjectMother {
39
40     public static List<Role> getRoles() {
41         List<Role> roles = new ArrayList();
42         Role role1 = new Role();
43         role1.setId("123");
44         role1.setName("Admin123");
45
46         Role role2 = new Role();
47         role2.setId("1234");
48         role2.setName("Admin1234");
49
50         roles.add(role1);
51         roles.add(role2);
52
53         return roles;
54     }
55
56 }