Package com.netflix.governator.lifecycle

Examples of com.netflix.governator.lifecycle.LifecycleListener


    @Test(dataProvider = "builders")
    public void     testAutoBindSingletonVsSingleton(LifecycleInjectorBuilder lifecycleInjectorBuilder) throws Exception
    {
        final List<Object>        objects = Lists.newArrayList();
        final LifecycleListener   listener = new DefaultLifecycleListener()
        {
            @Override
            public <T> void objectInjected(TypeLiteral<T> type, T obj)
            {
                objects.add(obj);
View Full Code Here

TOP

Related Classes of com.netflix.governator.lifecycle.LifecycleListener

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.