- * Provides the ability to deserialize JSON response into an {@link org.maxkey.authz.oauth2.common.OAuth2AccessToken} with jackson2 by implementing + * Provides the ability to deserialize JSON response into an {@link org.dromara.maxkey.authz.oauth2.common.OAuth2AccessToken} with jackson2 by implementing * {@link com.fasterxml.jackson.databind.JsonDeserializer}. *
*
@@ -40,7 +40,7 @@ import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
*
* @author Rob Winch
* @author Brian Clozel
- * @see org.maxkey.authz.oauth2.common.OAuth2AccessTokenJackson2Serializer
+ * @see org.dromara.maxkey.authz.oauth2.common.OAuth2AccessTokenJackson2Serializer
*/
@SuppressWarnings("serial")
public final class OAuth2AccessTokenJackson2Deserializer extends StdDeserializer
* Endpoint for token requests as described in the OAuth2 spec. Clients post requests with a grant_type
* parameter (e.g. "authorization_code") and other parameters as determined by the grant type. Supported grant types are
- * handled by the provided {@link #setTokenGranter(org.maxkey.authz.oauth2.provider.TokenGranter) token
+ * handled by the provided {@link #setTokenGranter(org.dromara.maxkey.authz.oauth2.provider.TokenGranter) token
* granter}.
*