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

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

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

public class AssignedRole {
    private String role;
    private String tenant;

    public AssignedRole(String role, String tenant) {
        this.role = role;
        this.tenant = tenant;
    }

    public String getTenant() {
        return tenant;
    }

    public String getRole() {
        return role;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy