Package org.fcrepo.kernel.api.operations
Interface RelaxableResourceOperation
-
- All Superinterfaces:
ResourceOperation
- All Known Subinterfaces:
CreateRdfSourceOperation
,RdfSourceOperation
,UpdateNonRdfSourceHeadersOperation
- All Known Implementing Classes:
AbstractRdfSourceOperation
,AbstractRelaxableResourceOperation
,CreateRdfSourceOperationImpl
,UpdateNonRdfSourceHeadersOperationImpl
,UpdateRdfSourceOperation
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 String
getCreatedBy()
Get created byInstant
getCreatedDate()
Get the timestamp the resource was createdString
getLastModifiedBy()
Get last modified byInstant
getLastModifiedDate()
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
-
-