de.digitalcollections.iiif.hymir.presentation.business.api.PresentationSecurityService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iiif-server-hymir Show documentation
Show all versions of iiif-server-hymir Show documentation
Hymir is a Java based IIIF Server. It is based on "IIIF API Java Libraries" (Java implementations of the IIIF specifications, see https://github.com/dbmdz/iiif-apis).
package de.digitalcollections.iiif.hymir.presentation.business.api;
/** Service responsible for deciding if object (identified by identifier) is accessible. */
public interface PresentationSecurityService {
boolean isAccessAllowed(String identifier);
}