net.nemerosa.ontrack.model.security.SecurityRole Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
package net.nemerosa.ontrack.model.security;
public enum SecurityRole {
ADMINISTRATOR("ROLE_ADMIN"),
USER("ROLE_USER");
/**
* Security role name
*/
private final String roleName;
SecurityRole(String roleName) {
this.roleName = roleName;
}
public String getRoleName() {
return roleName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy