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

#18: ACL check for groups

This commit is contained in:
jendib
2016-03-15 22:44:50 +01:00
parent 6012cdd9a5
commit de3f055323
13 changed files with 87 additions and 72 deletions

View File

@@ -1,7 +1,11 @@
package com.sismics.security;
import java.util.List;
import org.joda.time.DateTimeZone;
import com.google.common.collect.Lists;
/**
* Anonymous principal.
*
@@ -47,12 +51,12 @@ public class AnonymousPrincipal implements IPrincipal {
return null;
}
/**
* Setter of dateTimeZone.
*
* @param dateTimeZone dateTimeZone
*/
public void setDateTimeZone(DateTimeZone dateTimeZone) {
this.dateTimeZone = dateTimeZone;
}
@Override
public List<String> getGroupIdList() {
return Lists.newArrayList();
}
}