
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