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

com.microsoft.aad.msal4j.ITokenCacheAccessContext Maven / Gradle / Ivy

There is a newer version: 1.0.15
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.microsoft.aad.msal4j;

/**
 * Interface representing context in which the token cache is accessed
 * 

* For more details, see https://aka.ms/msal4j-token-cache */ public interface ITokenCacheAccessContext { /** * @return instance of accessed ITokenCache */ ITokenCache tokenCache(); /** * @return client id used for cache access */ String clientId(); /** * @return instance of IAccount used for cache access */ IAccount account(); /** * @return a boolean value telling whether cache was changed */ boolean hasCacheChanged(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy