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.persistence.api; 007 008/** 009 * Options for defining the behavior when performing a commit to the persistent storage layer. 010 * 011 * @author bbpennel 012 */ 013public enum CommitOption { 014 /* Commit unversioned content */ 015 UNVERSIONED, 016 /* Commit a new version */ 017 NEW_VERSION 018}