Package org.fcrepo.kernel.api.operations
Interface RelaxableResourceOperation
-
- All Superinterfaces:
ResourceOperation
- All Known Subinterfaces:
CreateRdfSourceOperation,RdfSourceOperation,UpdateNonRdfSourceHeadersOperation
public interface RelaxableResourceOperation extends ResourceOperation
Operation involving a resource with relaxable server managed properties- 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 modified-
Methods inherited from interface org.fcrepo.kernel.api.operations.ResourceOperation
getResourceId, getTransaction, getType, getUserPrincipal
-
-
-
-
Method Detail
-
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
-
-