Files
VisualSapfor/src/_VisualDVM/ComponentsServer/UserAccount/AccountRole.java

24 lines
639 B
Java
Raw Normal View History

package _VisualDVM.ComponentsServer.UserAccount;
import java.io.Serializable;
public enum AccountRole implements Serializable {
2023-09-17 22:13:42 +03:00
Undefined,
User,
Developer,
Admin;
public String getDescription() {
switch (this) {
case Undefined:
return "не зарегистрирован";
case User:
return "Пользователь";
case Developer:
return "Разработчик";
case Admin:
return "Администратор";
default:
break;
}
return "";
}
}