Package com.sun.enterprise.ee.synchronization.store

Examples of com.sun.enterprise.ee.synchronization.store.SynchronizationMemento.rollback()


            assertTrue( getBackupFile(f).exists() );
            System.out.println("Memento after backup: "
                + getBackupFile(f).getPath());

            // rollback
            m.rollback();

            // ensures that the original file exists
            assertTrue( f.exists() );
            assertFalse( getBackupFile(f).exists() );
            System.out.println("Memento after rollback: " + f.getPath());
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.