001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006package org.fcrepo.kernel.api.models;
007
008import java.time.Instant;
009import java.util.List;
010
011/**
012 * @author lsitu
013 * @since Oct. 04, 2017
014 */
015public interface TimeMap extends FedoraResource {
016    /**
017     * List all of the memento datetimes for the resource
018     * @return list of memento datetimes, in ascending chronologic order
019     */
020    public List<Instant> listMementoDatetimes();
021}