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 static org.fcrepo.kernel.api.operations.ResourceOperationType.UPDATE_HEADERS;
009
010/**
011 * Operation for updating non-RDF source resource headers
012 *
013 * @author bbpennel
014 */
015public interface UpdateNonRdfSourceHeadersOperation extends RelaxableResourceOperation, NonRdfSourceOperation {
016    @Override
017    public default ResourceOperationType getType() {
018        return UPDATE_HEADERS;
019    }
020}