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.operations; 007 008import static org.fcrepo.kernel.api.operations.ResourceOperationType.OVERWRITE_TOMBSTONE; 009 010/** 011 * Operation for overwriting the tombstone of an existing resource 012 * 013 * @author mikejritter 014 */ 015public interface OverwriteTombstoneOperation extends CreateResourceOperation { 016 017 @Override 018 default ResourceOperationType getType() { 019 return OVERWRITE_TOMBSTONE; 020 } 021 022}