All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liberologico.cloudesire.cmw.model.enums.UserRole Maven / Gradle / Ivy

The newest version!
package com.liberologico.cloudesire.cmw.model.enums;

/**
 * Defines user roles across the applications.
 *
 * Roles are sorted by increasing level of authorization.
 */
public enum UserRole
{
    ROLE_ANONYMOUS,
    ROLE_USER,
    ROLE_VENDOR,
    ROLE_RESELLER,
    ROLE_DISTRIBUTOR,
    ROLE_SUPERVISOR,
    ROLE_ADMIN,
    ROLE_SUPERADMIN;

    public String prettyPrint()
    {
        return this.toString().replace( "ROLE_", "" ).toLowerCase();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy