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 008 009/** 010 * Specifies the type of modification action represented by a resource operation. 011 * 012 * @author bbpennel 013 */ 014public enum ResourceOperationType { 015 UPDATE, UPDATE_HEADERS, CREATE, DELETE, PURGE, FOLLOW, REINDEX 016}