Package org.jboss.arquillian.persistence.core.event

Examples of org.jboss.arquillian.persistence.core.event.AfterPersistenceTest


            }
        }

        public void after(@Observes final AfterStep event) {
            if (active.get()) {
                afterPersistenceTestEvent.fire(new AfterPersistenceTest(event));
            }
            active.remove();
        }
View Full Code Here


   public void afterTest(@Observes(precedence = 25) After afterTestEvent)
   {
      if (persistenceExtensionEnabler.get().shouldPersistenceExtensionBeActivated())
      {
         afterPersistenceTestEvent.fire(new AfterPersistenceTest(afterTestEvent));
      }
   }
View Full Code Here

   public void afterTest(@Observes After afterTestEvent)
   {
      if (persistenceExtensionEnabler.get().isPersistenceExtensionRequired())
      {
         afterPersistenceTestEvent.fire(new AfterPersistenceTest(afterTestEvent));
      }
   }
View Full Code Here

   public void afterTest(@Observes(precedence = -2) After afterTestEvent)
   {
      if (persistenceExtensionEnabler.get().shouldPersistenceExtensionBeActivated())
      {
         afterPersistenceTestEvent.fire(new AfterPersistenceTest(afterTestEvent));
      }
   }
View Full Code Here

TOP

Related Classes of org.jboss.arquillian.persistence.core.event.AfterPersistenceTest

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.