ca.gc.aafc.dina.security.auth.DinaAuthorizationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dina-base-api Show documentation
Show all versions of dina-base-api Show documentation
Base DINA API package for Java built on SpringBoot and Crnk
package ca.gc.aafc.dina.security.auth;
import java.util.Set;
public interface DinaAuthorizationService {
void authorizeCreate(Object entity);
void authorizeRead(Object entity);
void authorizeUpdate(Object entity);
void authorizeDelete(Object entity);
Set getPermissionsForObject(Object target);
String getName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy