Package org.apache.jackrabbit.webdav.jcr.transaction

Examples of org.apache.jackrabbit.webdav.jcr.transaction.TransactionListener.afterCommit()


    public void afterCommit(TransactionResource resource, String lockToken, boolean success) {
        List transactionListeners = (List) transactionListenerById.remove(lockToken);
        if (transactionListeners != null) {
            for (Iterator it = transactionListeners.iterator(); it.hasNext(); ) {
                TransactionListener txListener = (TransactionListener) it.next();
                txListener.afterCommit(resource, lockToken, success);
            }
        }
    }

    //----------------------------------------------< private inner classes >---
View Full Code Here


    public void afterCommit(TransactionResource resource, String lockToken, boolean success) {
        List transactionListeners = (List) transactionListenerById.remove(lockToken);
        if (transactionListeners != null) {
            for (Iterator it = transactionListeners.iterator(); it.hasNext(); ) {
                TransactionListener txListener = (TransactionListener) it.next();
                txListener.afterCommit(resource, lockToken, success);
            }
        }
    }

    //----------------------------------------------< private inner classes >---
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.