org.molgenis.data.security.auth.CachedRoleHierarchy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-data-security Show documentation
Show all versions of molgenis-data-security Show documentation
Security data model and data layer security.
package org.molgenis.data.security.auth;
import org.springframework.security.access.hierarchicalroles.RoleHierarchy;
public interface CachedRoleHierarchy extends RoleHierarchy {
/** Signals the role hierarchy that its cache is dirty. */
void markRoleHierarchyCacheDirty();
}