io.permit.sdk.enforcement.IEnforcerApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permit-sdk-java Show documentation
Show all versions of permit-sdk-java Show documentation
Java SDK for Permit.io: fullstack permissions for cloud native applications
package io.permit.sdk.enforcement;
import io.permit.sdk.util.Context;
import java.io.IOException;
public interface IEnforcerApi {
boolean check(User user, String action, Resource resource, Context context) throws IOException;
boolean check(User user, String action, Resource resource) throws IOException;
}