source: bus-n-go-do-5ta-faza/src/main/java/mk/ukim/finki/busngo/model/enums/Role.java

Last change on this file was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 4 weeks ago

split group project and individual project into two separate folders

  • Property mode set to 100644
File size: 321 bytes
Line 
1package mk.ukim.finki.busngo.model.enums;
2
3
4import org.springframework.security.core.GrantedAuthority;
5
6public enum Role implements GrantedAuthority {
7 ROLE_USER,
8 ROLE_PASSENGER,
9 ROLE_DRIVER,
10 ROLE_CONDUCTOR,
11 ROLE_ADMIN;
12
13
14 @Override
15 public String getAuthority() {
16 return name();
17 }
18}
Note: See TracBrowser for help on using the repository browser.