Package juzu.impl.inject.spi

Examples of juzu.impl.inject.spi.BeanLifeCycle


    this.descriptor = descriptor;
    this.application = application;
    this.classLoader = moduleLifeCycle.getClassLoader();

    // For application start (perhaps we could remove that)
    BeanLifeCycle lf = injectionContext.get(Application.class);
    try {
      lf.get();
    }
    catch (InvocationTargetException e) {
      throw new UnsupportedOperationException("handle me gracefully", e);
    }
    finally {
      lf.close();
    }
  }
View Full Code Here

TOP

Related Classes of juzu.impl.inject.spi.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.