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

io.permit.sdk.ApiContextLevel Maven / Gradle / Ivy

There is a newer version: 983f46e
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy