mirror of
https://github.com/sismics/docs.git
synced 2025-12-15 10:46:26 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
package com.sismics.security;
|
||||
|
||||
import java.security.Principal;
|
||||
import java.util.Locale;
|
||||
|
||||
import org.joda.time.DateTimeZone;
|
||||
|
||||
/**
|
||||
* Interface of principals.
|
||||
*
|
||||
* @author jtremeaux
|
||||
*/
|
||||
public interface IPrincipal extends Principal {
|
||||
/**
|
||||
* Checks if the principal is anonymous.
|
||||
*
|
||||
* @return True if the principal is anonymous.
|
||||
*/
|
||||
boolean isAnonymous();
|
||||
|
||||
/**
|
||||
* Returns the ID of the connected user, or null if the user is anonymous
|
||||
*
|
||||
* @return ID of the connected user
|
||||
*/
|
||||
public String getId();
|
||||
|
||||
/**
|
||||
* Returns the locale of the principal.
|
||||
*
|
||||
* @return Locale of the principal
|
||||
*/
|
||||
public Locale getLocale();
|
||||
|
||||
/**
|
||||
* Returns the timezone of the principal.
|
||||
*
|
||||
* @return Timezone of the principal
|
||||
*/
|
||||
public DateTimeZone getDateTimeZone();
|
||||
|
||||
/**
|
||||
* Returns the email of the principal.
|
||||
*
|
||||
* @return Email of the principal
|
||||
*/
|
||||
public String getEmail();
|
||||
}
|
||||
Reference in New Issue
Block a user