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.api.operations;
008
009import static org.fcrepo.kernel.api.operations.ResourceOperationType.UPDATE;
010
011/**
012 * An operation for creating a new version of a resource
013 *
014 * @author pwinckles
015 */
016public interface CreateVersionResourceOperation extends ResourceOperation {
017
018    @Override
019    default ResourceOperationType getType() {
020        return UPDATE;
021    }
022
023}