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

io.permit.sdk.enforcement.ResourceDetails 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 ResourceDetails} class represents a single resource instance information fetched from the PDP (key and attributes).
 */
public final class ResourceDetails extends TenantDetails {
    public final String type;
    public ResourceDetails(String type, String key, HashMap attributes) {
        super(key, attributes);
        this.type = type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy