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

com.dulanywebsite.sharedresources.enums.UserRole Maven / Gradle / Ivy

package com.dulanywebsite.sharedresources.enums;

public enum UserRole {
    USER("USER"),
    ADMIN("ADMIN");

    private String role;

    UserRole(String role) {
        this.role = role;
    }

    public String getRole(){
        return role;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy