package com.vci.ubcs.codeapply.object;
|
|
public class UserObject {
|
private String grant_type; // password;
|
private String scope;//all
|
private String username;//admin
|
private String password;//:123456
|
|
public String getGrant_type() {
|
return grant_type;
|
}
|
|
public void setGrant_type(String grant_type) {
|
this.grant_type = grant_type;
|
}
|
|
public String getScope() {
|
return scope;
|
}
|
|
public void setScope(String scope) {
|
this.scope = scope;
|
}
|
|
public String getUsername() {
|
return username;
|
}
|
|
public void setUsername(String username) {
|
this.username = username;
|
}
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
}
|