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.impl.operations; 007 008import org.fcrepo.kernel.api.RdfStream; 009import org.fcrepo.kernel.api.Transaction; 010import org.fcrepo.kernel.api.identifiers.FedoraId; 011import org.fcrepo.kernel.api.operations.OverwriteTombstoneOperation; 012 013/** 014 * @author mikejritter 015 */ 016public class OverwriteRdfTombstoneOperation extends CreateRdfSourceOperationImpl 017 implements OverwriteTombstoneOperation { 018 019 protected OverwriteRdfTombstoneOperation(final Transaction transaction, final FedoraId rescId, 020 final String interactionModel, final RdfStream triples) { 021 super(transaction, rescId, interactionModel, triples); 022 } 023 024}