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 */ 006 007package org.fcrepo.kernel.impl.operations; 008 009import org.fcrepo.kernel.api.Transaction; 010import org.fcrepo.kernel.api.identifiers.FedoraId; 011import org.fcrepo.kernel.api.operations.CreateVersionResourceOperation; 012 013/** 014 * Default impl of {@link CreateVersionResourceOperation} 015 * 016 * @author pwinckles 017 */ 018public class CreateVersionResourceOperationImpl extends AbstractResourceOperation 019 implements CreateVersionResourceOperation { 020 021 protected CreateVersionResourceOperationImpl(final Transaction transaction, final FedoraId rescId) { 022 super(transaction, rescId); 023 } 024 025}