Examples of Hk2CustomBoundTypesProvider


Examples of org.glassfish.jersey.gf.cdi.spi.Hk2CustomBoundTypesProvider

        final Hk2CustomBoundTypesProvider[] providers = ServiceFinder.find(Hk2CustomBoundTypesProvider.class).toArray();
        assertThat(providers, is(notNullValue()));
        assertThat(providers.length, is(1));

        final Hk2CustomBoundTypesProvider theOnlyProvider = providers[0];
        assertThat(theOnlyProvider, is(instanceOf(EmptyHk2CustomInjectionTypeProvider.class)));
        assertThat(theOnlyProvider.getHk2Types(), is(emptyCollectionOf(Type.class)));
    }
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.