GUACAMOLE-292: Define and use standard attributes for user organization and role.

This commit is contained in:
Michael Jumper
2017-02-24 01:54:41 -08:00
parent 9634731fe6
commit ee6edb9c82
4 changed files with 46 additions and 4 deletions

View File

@@ -49,6 +49,17 @@ public interface User extends Identifiable {
*/
public static String EMAIL_ADDRESS = "guac-email-address";
/**
* The organization, company, group, etc. that the user belongs to.
*/
public static String ORGANIZATION = "guac-organization";
/**
* The role that the user has at the organization, company, group, etc.
* they belong to.
*/
public static String ORGANIZATIONAL_ROLE = "guac-organizational-role";
}
/**