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

io.permit.sdk.enforcement.TenantDetails Maven / Gradle / Ivy

There is a newer version: 983f46e
Show newest version
package io.permit.sdk.enforcement;

import io.permit.sdk.util.Context;

import java.util.HashMap;

/**
 * The {@code TenantDetails} class represents a single tenant information fetched from the PDP (key and attributes).
 */
public class TenantDetails {
    public final String key;
    public final HashMap attributes;
    public TenantDetails(String key, HashMap attributes) {
        this.key = key;
        this.attributes = attributes;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy