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 * Operation to track a reference operation. 014 * @author whikloj 015 */ 016public class ReferenceOperation extends AbstractResourceOperation { 017 018 protected ReferenceOperation(final Transaction transaction, final FedoraId rescId) { 019 super(transaction, rescId); 020 } 021 022 @Override 023 public ResourceOperationType getType() { 024 return ResourceOperationType.FOLLOW; 025 } 026}