com.nimbusds.oauth2.sdk.token.RefreshToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-oidc-sdk Show documentation
Show all versions of oauth2-oidc-sdk Show documentation
OAuth 2.0 SDK with OpenID Connection extensions for developing client
and server applications.
package com.nimbusds.oauth2.sdk.token;
import java.util.HashSet;
import java.util.Set;
import net.jcip.annotations.Immutable;
import net.minidev.json.JSONObject;
import com.nimbusds.oauth2.sdk.util.JSONObjectUtils;
import com.nimbusds.oauth2.sdk.ParseException;
/**
* Refresh token.
*
* Related specifications:
*
*
* - OAuth 2.0 (RFC 6749), section 1.5.
*
*/
@Immutable
public final class RefreshToken extends Token {
/**
* Creates a new refresh token with a randomly generated 256-bit
* (32-byte) value, Base64URL-encoded.
*/
public RefreshToken() {
this(32);
}
/**
* Creates a new refresh token with a randomly generated value of the
* specified length, Base64URL-encoded.
*
* @param byteLength The byte length of the value to generate. Must be
* greater than one.
*/
public RefreshToken(final int byteLength) {
super(byteLength);
}
/**
* Creates a new refresh token with the specified value.
*
* @param value The refresh token value. Must not be {@code null} or
* empty string.
*/
public RefreshToken(final String value) {
super(value);
}
@Override
public Set getParamNames() {
Set paramNames = new HashSet<>();
paramNames.add("refresh_token");
return paramNames;
}
@Override
public JSONObject toJSONObject() {
JSONObject o = new JSONObject();
o.put("refresh_token", getValue());
return o;
}
/**
* Parses a refresh token from a JSON object access token response.
*
* @param jsonObject The JSON object to parse. Must not be
* {@code null}.
*
* @return The refresh token, {@code null} if not found.
*
* @throws ParseException If the JSON object couldn't be parsed to a
* refresh token.
*/
public static RefreshToken parse(final JSONObject jsonObject)
throws ParseException {
// Parse value
if (! jsonObject.containsKey("refresh_token"))
return null;
String value = JSONObjectUtils.getString(jsonObject, "refresh_token");
return new RefreshToken(value);
}
@Override
public boolean equals(final Object object) {
return object instanceof RefreshToken &&
this.toString().equals(object.toString());
}
}