io.permit.sdk.ApiContextLevel 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;
public enum ApiContextLevel {
WAIT_FOR_INIT(0),
ORGANIZATION(1),
PROJECT(2),
ENVIRONMENT(3);
private final int value;
ApiContextLevel(int value) {
this.value = value;
}
public int getValue() {
return value;
}
}