All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nimbusds.oauth2.sdk.token.TypelessAccessToken Maven / Gradle / Ivy

package com.nimbusds.oauth2.sdk.token;


import net.minidev.json.JSONObject;

import net.jcip.annotations.Immutable;


/**
 * Typeless access token, cannot be serialised. Intended to represent parsed
 * access tokens which type cannot be inferred.
 *
 * 

Related specifications: * *

    *
  • OAuth 2.0 (RFC 6749), sections 1.4 and 5.1. *
*/ @Immutable public class TypelessAccessToken extends AccessToken { /** * Creates a new minimal typeless access token with the specified * value. The optional lifetime and scope are left undefined. * * @param value The access token value. Must not be {@code null} or * empty string. */ public TypelessAccessToken(final String value) { super(AccessTokenType.UNKNOWN, value); } /** * Operation not supported. * * @throws UnsupportedOperationException Serialisation is not * supported. */ @Override public JSONObject toJSONObject() { throw new UnsupportedOperationException("Serialization not supported"); } /** * Operation not supported. * * @throws UnsupportedOperationException Serialisation is not * supported. */ @Override public String toAuthorizationHeader() { throw new UnsupportedOperationException("Serialization not supported"); } @Override public boolean equals(final Object object) { return object instanceof AccessToken && this.toString().equals(object.toString()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy