Auth Service Errors Fix
[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 - 2021 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 java.util.ArrayList;
27 import java.util.List;
28 import org.onap.dcaegen2.platform.mod.models.Role;
29
30 /**
31  * @author
32  * @date 09/22/2020
33  * Mock for RoleController Test Case
34  */
35 public class RoleObjectMother {
36
37     public static List<Role> getRoles() {
38         List<Role> roles = new ArrayList();
39         Role role1 = new Role();
40         role1.setId("123");
41         role1.setName("Admin123");
42
43         Role role2 = new Role();
44         role2.setId("1234");
45         role2.setName("Admin1234");
46
47         roles.add(role1);
48         roles.add(role2);
49
50         return roles;
51     }
52
53 }