com.ebay.identity.oauth2.token.clients.TokenClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebay-sdk Show documentation
Show all versions of ebay-sdk Show documentation
Java SDK for eBay REST APIs
package com.ebay.identity.oauth2.token.clients;
import com.ebay.identity.oauth2.token.models.Token;
public interface TokenClient {
public Token getAccessToken(final String ruName, final String code);
public Token refreshAccessToken(final String refreshToken);
}