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 void
enrichWithTimestamps(DMXObject object)
Retrieves the CREATED/MODIFIED timestamps and stores them in the given object's model (under synthetic child type URIsdmx.timestamps.created
anddmx.timestamps.modified
).Collection<Assoc>
getAssocsByCreationTime(long from, long to)
Collection<Assoc>
getAssocsByModificationTime(long from, long to)
long
getCreationTime(long objectId)
long
getModificationTime(long objectId)
Collection<Topic>
getTopicsByCreationTime(long from, long to)
Collection<Topic>
getTopicsByModificationTime(long from, long to)
void
setModified(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.created
anddmx.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)
-
-