irita.sdk.constant.enums.Role Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irita-sdk Show documentation
Show all versions of irita-sdk Show documentation
Irita open alliance chain SDK (java)
package irita.sdk.constant.enums;
public enum Role {
SUPER_ADMIN((byte) 0),
ADMIN((byte) 1),
HASH_ADMIN((byte) 2),
;
private final byte value;
Role(byte role) {
this.value = role;
}
public byte getValue() {
return value;
}
}