com.amazon.opendistroforelasticsearch.security.securityconf.InternalUsersModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opendistro_security Show documentation
Show all versions of opendistro_security Show documentation
Open Distro For Elasticsearch Security
package com.amazon.opendistroforelasticsearch.security.securityconf;
import java.util.List;
import java.util.Map;
public abstract class InternalUsersModel {
public abstract boolean exists(String user);
public abstract List getBackenRoles(String user);
public abstract Map getAttributes(String user);
public abstract String getDescription(String user);
public abstract String getHash(String user);
}