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
008/**
009 * @author cabeer
010 * @since 10/16/14
011 */
012public interface Tombstone extends FedoraResource {
013
014    /**
015     * Return the object this tombstone is for.
016     * @return the original deleted resource.
017     */
018    FedoraResource getDeletedObject();
019
020}