36 lines
637 B
Java
36 lines
637 B
Java
package com.utopiaindustries.model.ctp;
|
|
|
|
public class Authority {
|
|
|
|
private String username;
|
|
private String authority;
|
|
|
|
public Authority() {
|
|
}
|
|
|
|
public Authority(String authority) {
|
|
this.authority = authority;
|
|
}
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
|
|
public String getAuthority() {
|
|
return authority;
|
|
}
|
|
|
|
public void setAuthority(String authority) {
|
|
this.authority = authority;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return authority ;
|
|
}
|
|
}
|