com.ufoscout.coreutils.auth.RolesProvider Maven / Gradle / Ivy
package com.ufoscout.coreutils.auth;
import java.util.List;
public interface RolesProvider {
List getAll();
/**
* Returns the list of {@link Role}s by name
* @param roles
* @return
*/
List getByName(String... roles);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy