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

com.smartling.api.sdk.auth.ExistingTokenProvider Maven / Gradle / Ivy

There is a newer version: 4.0.25
Show newest version
package com.smartling.api.sdk.auth;

import com.smartling.api.sdk.exceptions.SmartlingApiException;

public class ExistingTokenProvider implements TokenProvider
{
    private final AuthenticationToken authenticationToken;

    public ExistingTokenProvider(final AuthenticationToken authenticationToken)
    {
        this.authenticationToken = authenticationToken;
    }

    @Override public AuthenticationToken getAuthenticationToken() throws SmartlingApiException
    {
        return authenticationToken;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy