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

com.blazebit.query.connector.azure.resourcemanager.AzureResourceManagerWrapper Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright Blazebit
 */
package com.blazebit.query.connector.azure.resourcemanager;

/**
 * @author Martijn Sprengers
 * @since 1.0.3
 */
public abstract class AzureResourceManagerWrapper {

	private final String tenantId;
	private final String subscriptionId;
	private final T manager;

	public AzureResourceManagerWrapper(String tenantId, String subscriptionId, T manager) {
		this.tenantId = tenantId;
		this.subscriptionId = subscriptionId;
		this.manager = manager;
	}

	public String getTenantId() {
		return tenantId;
	}

	public String getSubscriptionId() {
		return subscriptionId;
	}

	public T getManager() {
		return manager;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy