1
0
mirror of https://github.com/sismics/docs.git synced 2025-12-15 02:36:24 +00:00

#85: Login as guest

This commit is contained in:
jendib
2016-05-29 16:37:26 +02:00
parent ead01ce1d0
commit d7865cfaf0
7 changed files with 125 additions and 38 deletions

View File

@@ -59,4 +59,9 @@ public class AnonymousPrincipal implements IPrincipal {
public Set<String> getGroupIdSet() {
return Sets.newHashSet();
}
@Override
public boolean isGuest() {
return false;
}
}