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

net.leanix.dropkit.oauth.models.PermissionRole Maven / Gradle / Ivy

There is a newer version: 2.0.10
Show newest version
package net.leanix.dropkit.oauth.models;

import java.util.ArrayList;
import java.util.List;

/**
 * User roles in workspaces.
 *
 *
 */
public enum PermissionRole {

    ADMIN,
    MEMBER,
    VIEWER,
    CONTACT;

    public static List asStringList() {
        List strings = new ArrayList<>();
        for (PermissionRole r : values()) {
            strings.add(r.toString());
        }
        return strings;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy