Package org.milyn.javabean.lifecycle

Examples of org.milyn.javabean.lifecycle.BeanLifecycle


  /* (non-Javadoc)
   * @see org.milyn.javabean.lifecycle.BeanContextLifecycleObserver#onBeanLifecycleEvent(org.milyn.javabean.lifecycle.BeanContextLifecycleEvent)
   */
  public void onBeanLifecycleEvent(BeanContextLifecycleEvent event) {
    BeanId beanId = event.getBeanId();
    BeanLifecycle lifecycle = event.getLifecycle();   
   
    if(lifecycle == BeanLifecycle.ADD) {
      if(watchedBeanId != null && beanId != watchedBeanId) {
        return;
      }
View Full Code Here

TOP

Related Classes of org.milyn.javabean.lifecycle.BeanLifecycle

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.