Added isApplication and getFullName APIs
This commit is contained in:
parent
d8b9fecee2
commit
6e271a5772
|
@ -9,6 +9,8 @@ public interface User {
|
|||
|
||||
public String getUsername();
|
||||
|
||||
public boolean isApplication();
|
||||
|
||||
public Collection<String> getRoles();
|
||||
|
||||
public void setRoles(Collection<String> roles);
|
||||
|
@ -17,6 +19,20 @@ public interface User {
|
|||
|
||||
public String getFamilyName();
|
||||
|
||||
/**
|
||||
* @return the full name in the form 'Surname Name' for a person
|
||||
* or the application identifier for an application;
|
||||
*/
|
||||
public String getFullName();
|
||||
|
||||
/**
|
||||
* @param nameSurname when true the fullname will be formatted as 'Name Surname',
|
||||
* when false the fullname will be formatted as 'Surname Name',
|
||||
* @return the full name according to nameSurname boolean for a person
|
||||
* or the application identifier for an application;
|
||||
*/
|
||||
public String getFullName(boolean nameSurname);
|
||||
|
||||
public String getEmail();
|
||||
|
||||
public String getAbout();
|
||||
|
|
Loading…
Reference in New Issue