info.freelibrary.iiif.presentation.v3.utils.URIs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jiiify-presentation-v3 Show documentation
Show all versions of jiiify-presentation-v3 Show documentation
A Java Library for version 3 of the IIIF Presentation API
package info.freelibrary.iiif.presentation.v3.utils;
import java.net.URI;
/**
* URIs used in this software library.
*/
public final class URIs {
/**
* The URI of the Media Fragments URI specification.
*/
public static final URI MEDIA_FRAGMENT_SPECIFICATION_URI = URI.create("http://www.w3.org/TR/media-frags/");
/**
* The URI of the IIIF Presentation API context.
*/
public static final URI CONTEXT_URI = URI.create("http://iiif.io/api/presentation/3/context.json");
/**
* Creates a new URIs class.
*/
private URIs() {
super();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy