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

com.aerospike.vector.client.StaticRoles Maven / Gradle / Ivy

package com.aerospike.vector.client;

import java.util.Locale;

public enum StaticRoles {
    /** Admin role that has the following privileges. - user management - index management */
    ADMIN,

    /** Temporary role, allows users to write vector data and use indices. */
    READ_WRITE;

    @Override
    public String toString() {
        return name().replace("_", "-").toLowerCase(Locale.getDefault());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy