Package systems.dmx.timestamps
Interface TimestampsService
-
- All Known Implementing Classes:
TimestampsPlugin
public interface TimestampsService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidenrichWithTimestamps(DMXObject object)Retrieves the CREATED/MODIFIED timestamps and stores them in the given object's model (under synthetic child type URIsdmx.timestamps.createdanddmx.timestamps.modified).Collection<Assoc>getAssocsByCreationTime(long from, long to)Collection<Assoc>getAssocsByModificationTime(long from, long to)longgetCreationTime(long objectId)longgetModificationTime(long objectId)Collection<Topic>getTopicsByCreationTime(long from, long to)Collection<Topic>getTopicsByModificationTime(long from, long to)voidsetModified(DMXObject object)
-
-
-
Method Detail
-
getCreationTime
long getCreationTime(long objectId)
-
getModificationTime
long getModificationTime(long objectId)
-
setModified
void setModified(DMXObject object)
-
enrichWithTimestamps
void enrichWithTimestamps(DMXObject object)
Retrieves the CREATED/MODIFIED timestamps and stores them in the given object's model (under synthetic child type URIsdmx.timestamps.createdanddmx.timestamps.modified).
-
getTopicsByCreationTime
Collection<Topic> getTopicsByCreationTime(long from, long to)
-
getTopicsByModificationTime
Collection<Topic> getTopicsByModificationTime(long from, long to)
-
getAssocsByCreationTime
Collection<Assoc> getAssocsByCreationTime(long from, long to)
-
getAssocsByModificationTime
Collection<Assoc> getAssocsByModificationTime(long from, long to)
-
-