Package org.jboss.resteasy.core

Examples of org.jboss.resteasy.core.ResourceMethodRegistry.addSingletonResource()


   @Test
   public void testBasic() throws URISyntaxException
   {
      ResourceMethodRegistry registry = new ResourceMethodRegistry(ResteasyProviderFactory
              .getInstance());
      registry.addSingletonResource(new NullResource());
      assertMatchRoot(registry, "/", "doNothing", NullResource.class);
      assertMatchRoot(registry, "/child", "childDoNothing", NullResource.class);
      assertMatchRoot(registry, "/child/foo", "childWithName", NullResource.class);
      assertMatchRoot(registry, "/child/1", "childWithId", NullResource.class);
      assertMatchRoot(registry, "/child1/1", "child1WithId", NullResource.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.