Package org.apache.commons.transaction.file

Examples of org.apache.commons.transaction.file.FileSequence


        if (storeDir == null) {
            throw new ServiceParameterMissingException(this, STORE_DIR_PARAMETER);
        }

        try {
            fileSequence = new FileSequence(storeDir, new TxLogger(getLogger(), LOG_CHANNEL));
            getLogger().log("File Sequence Store configured to " + storeDir, LOG_CHANNEL, Logger.INFO);
        } catch (ResourceManagerException e) {
            getLogger().log("Can not initialize File Sequence Store", e, LOG_CHANNEL, Logger.CRITICAL);
            throw new ServiceParameterErrorException(this, STORE_DIR_PARAMETER);
        }
View Full Code Here

TOP

Related Classes of org.apache.commons.transaction.file.FileSequence

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.