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;
008
009/**
010 * Represents the state of a transaction
011 *
012 * @author pwinckles
013 */
014public enum TransactionState {
015
016    OPEN,
017    COMMITTING,
018    COMMITTED,
019    FAILED,
020    ROLLINGBACK,
021    ROLLEDBACK,
022
023}