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

com.azure.cosmos.models.CosmosAuthorizationTokenResolver Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos.models;

import java.util.Map;

/**
 * This interface is for client side implementation, which can be used for initializing
 * CosmosAsyncClient without passing master key, resource token and permission feed.
*
* Each time the SDK create request for CosmosDB, authorization token is generated based on that * request at client side which enables creation of one CosmosAsyncClient per application shared across various users * with different resource permissions. */ public interface CosmosAuthorizationTokenResolver { /** * This method will consume the request information and based on that it will generate the authorization token. * @param properties the user properties. * @param requestVerb Request verb i.e. GET, POST, PUT etc. * @param resourceIdOrFullName ResourceID or resource full name. * @param resourceType Resource type i.e. Database, DocumentCollection, Document etc. * @return The authorization token. */ public String getAuthorizationToken(String requestVerb, String resourceIdOrFullName, String resourceType, Map properties); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy