Class LinkedDataFileResource
- java.lang.Object
-
- de.digitalcollections.model.identifiable.Identifiable
-
- de.digitalcollections.model.identifiable.resource.FileResource
-
- de.digitalcollections.model.identifiable.resource.LinkedDataFileResource
-
public class LinkedDataFileResource extends FileResource
This class represents a linked data file resource, referenced through an uri and specified by the context definition and the corresponding (object) type. A linked data file resource can be of format JSON-LD (mimetype 'application/ld+json'), e.g. an IIIF Presentation Manifest or an Entity Facts person description, what is the first use case being in focus.
JSON-LD is designed around the concept of a "context" to provide additional mappings from JSON to an RDF model.
The 'context' links object properties in a JSON document to concepts in an ontology.
The 'id' is an Internationalized Resource Identifier, represented by an IRI, which allows the Linked Data FileResource to be unambiguously identified by an IRI. In our implementation we use the 'uri' field of FileResource to be the id.
The 'type' specifies the type of object described in the document.
Further informations:
-
-
Field Summary
-
Fields inherited from class de.digitalcollections.model.identifiable.resource.FileResource
fileResourceType
-
Fields inherited from class de.digitalcollections.model.identifiable.Identifiable
created, description, identifiers, label, lastModified, previewImage, previewImageRenderingHints, type
-
-
Constructor Summary
Constructors Constructor Description LinkedDataFileResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description URIgetContext()StringgetObjectType()voidsetContext(URI context)voidsetObjectType(String objectType)-
Methods inherited from class de.digitalcollections.model.identifiable.resource.FileResource
equals, getFilename, getFilenameExtension, getFileResourceType, getHttpBaseUrl, getLicense, getMimeType, getSizeInBytes, getUri, hashCode, isReadonly, setFilename, setFileResourceType, setHttpBaseUrl, setLicense, setMimeType, setReadonly, setSizeInBytes, setUri, toString
-
Methods inherited from class de.digitalcollections.model.identifiable.Identifiable
addIdentifier, getCreated, getDescription, getIdentifierByNamespace, getIdentifiers, getLabel, getLastModified, getPreviewImage, getPreviewImageRenderingHints, getType, getUuid, setCreated, setDescription, setIdentifiers, setLabel, setLabel, setLastModified, setPreviewImage, setPreviewImageRenderingHints, setType, setUuid
-
-
-
-
Method Detail
-
getContext
public URI getContext()
- Returns:
- the linked data context. The 'context' links object properties in a JSON document to concepts in an ontology.
-
getObjectType
public String getObjectType()
- Returns:
- the object type described in this document
-
setContext
public void setContext(URI context)
- Parameters:
context- set the linked data context to given context
-
setObjectType
public void setObjectType(String objectType)
- Parameters:
objectType- set the object type described in this document
-
-