]> source.dussan.org Git - sonarqube.git/blob
37fb591cde1447a56cbece3106295a9768585bde
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2020 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.server.tester;
21
22 import java.util.Collection;
23 import java.util.Collections;
24 import java.util.Optional;
25 import org.sonar.db.user.GroupDto;
26
27 public class AnonymousMockUserSession extends AbstractMockUserSession<AnonymousMockUserSession> {
28
29   public AnonymousMockUserSession() {
30     super(AnonymousMockUserSession.class);
31   }
32
33   @Override
34   public boolean isRoot() {
35     return false;
36   }
37
38   @Override
39   public String getLogin() {
40     return null;
41   }
42
43   @Override public String getUuid() {
44     return null;
45   }
46
47   @Override
48   public String getName() {
49     return null;
50   }
51
52   @Override
53   public boolean isLoggedIn() {
54     return false;
55   }
56
57   @Override
58   public Collection<GroupDto> getGroups() {
59     return Collections.emptyList();
60   }
61
62   @Override
63   public Optional<IdentityProvider> getIdentityProvider() {
64     return Optional.empty();
65   }
66
67   @Override
68   public Optional<ExternalIdentity> getExternalIdentity() {
69     return Optional.empty();
70   }
71 }