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 org.fcrepo.kernel.api.Transaction; 009 010/** 011 * Interface for reindex operation methods. 012 * 013 * @author whikloj 014 */ 015public interface ReindexResourceOperation { 016 017 /** 018 * Return the transaction the Reindex is happening in. 019 * @return the transaction 020 */ 021 Transaction getTransaction(); 022}