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.Transaction; 009import org.fcrepo.kernel.api.identifiers.FedoraId; 010import org.fcrepo.kernel.api.operations.ResourceOperationType; 011 012/** 013 * Purge resource operation 014 * 015 * @author whikloj 016 * @since 6.0.0 017 */ 018public class PurgeResourceOperation extends AbstractResourceOperation { 019 020 protected PurgeResourceOperation(final Transaction transaction, final FedoraId rescId) { 021 super(transaction, rescId); 022 } 023 024 @Override 025 public ResourceOperationType getType() { 026 return ResourceOperationType.PURGE; 027 } 028}