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

com.microsoft.commondatamodel.objectmodel.utilities.network.TokenProvider Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

package com.microsoft.commondatamodel.objectmodel.utilities.network;

/**
 * Interface to be implemented by users to encapsulate their customized token provider.
 */
public interface TokenProvider {
    /**
     * Returns the token string with the authentication type included.
     * It is expected that the returned token has been validated for expiration upfront
     * by the implementer of the interface.
     *
     * @return the token string with the authentication type included, e.g. "Bearer XXXXX"
     */
    String getToken();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy