weiboclient4j.oauth2.GrantType Maven / Gradle / Ivy
package weiboclient4j.oauth2;
/**
* @author Hover Ruan
*/
public enum GrantType {
AuthorizationCode("authorization_code"), Password("password"), RefreshToken("refresh_token");
private String type;
GrantType(String type) {
this.type = type;
}
public String getType() {
return type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy