Examples of LifecycleRollback


Examples of net.sourceforge.javautil.lifecycle.annotation.LifecycleRollback

      this.phases.add(phase);
    }
   
    ClassMethod[] rollbacks = desc.getMethods(LifecycleRollback.class);
    for (ClassMethod method : rollbacks) {
      LifecycleRollback lr = method.getAnnotation(LifecycleRollback.class);
      if (lr.value().length == 0) this.rollbacks.put(null, method);
      else for (PhaseType type : lr.value()) {
        this.rollbacks.put(type, method);
      }
    }
   
    Collections.sort(phases);
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.