Package org.fcrepo.kernel.api.operations
Interface RdfSourceOperation
-
- All Superinterfaces:
ResourceOperation
- All Known Subinterfaces:
CreateRdfSourceOperation
public interface RdfSourceOperation extends ResourceOperation
Operation for interacting with an rdf source- Author:
- bbpennel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCreatedBy()Get created byInstantgetCreatedDate()Get the timestamp the resource was createdStringgetLastModifiedBy()Get last modified byInstantgetLastModifiedDate()Get the timestamp the resource was last modifiedRdfStreamgetTriples()Get the incoming user space triples for the resource-
Methods inherited from interface org.fcrepo.kernel.api.operations.ResourceOperation
getResourceId, getTransaction, getType, getUserPrincipal
-
-
-
-
Method Detail
-
getTriples
RdfStream getTriples()
Get the incoming user space triples for the resource- Returns:
- triples
-
getLastModifiedBy
String getLastModifiedBy()
Get last modified by- Returns:
- user that last modified the resource
-
getCreatedBy
String getCreatedBy()
Get created by- Returns:
- user that created the resource
-
getLastModifiedDate
Instant getLastModifiedDate()
Get the timestamp the resource was last modified- Returns:
- timestamp
-
getCreatedDate
Instant getCreatedDate()
Get the timestamp the resource was created- Returns:
- timestamp
-
-