Skip to content
Snippets Groups Projects
Select Git revision
  • 24c8f74cda75b3df58a6843f6061d1ab76bef19e
  • main default protected
  • gaeon
3 results

deleteComment.js

Blame
  • Role.java 263 B
    package umc.spring.post.config.security;
    
    public enum Role {
        USER("ROLE_USER"),
        ADMIN("ROLE_ADMIN");
    
        private final String value;
    
        public String getValue() {
            return value;
        }
    
        Role(String value) {
            this.value = value;
        }
    }