Package org.jboss.resteasy.client.cache

Examples of org.jboss.resteasy.client.cache.LightweightBrowserCache


        ClientInterceptorRepositoryImpl interceptors = clientRequestFactory
                .getPrefixInterceptors();
        interceptors.registerInterceptor(new LoggingExecutionInterceptor());
        interceptors.registerInterceptor(new CacheInterceptor(
                new LightweightBrowserCache()));
        interceptors.registerInterceptor(new ForceCachingExecutionInterceptor(
                10));

        // create a proxy using the JAX-RS annotation
        photoResource = clientRequestFactory.createProxy(PhotoResource.class);
View Full Code Here


   @Test
   public void testMaxSize() throws Exception
   {
      MyProxy proxy = ProxyFactory.create(MyProxy.class, generateBaseUrl());
      LightweightBrowserCache cache = CacheFactory.makeCacheable(proxy);
      cache.setMaxBytes(20);

      count = 0;

      String rtn = proxy.getCacheit("1");
      Assert.assertEquals("cachecache" + 1, rtn);
View Full Code Here

        ClientInterceptorRepositoryImpl interceptors = clientRequestFactory
                .getPrefixInterceptors();
        interceptors.registerInterceptor(new LoggingExecutionInterceptor());
        interceptors.registerInterceptor(new CacheInterceptor(
                new LightweightBrowserCache()));
        interceptors.registerInterceptor(new ForceCachingExecutionInterceptor(
                10));

        // create a proxy using the JAX-RS annotation
        photoResource = clientRequestFactory.createProxy(PhotoResource.class);
View Full Code Here

   @Test
   public void testMaxSize() throws Exception
   {
      MyProxy proxy = ProxyFactory.create(MyProxy.class, generateBaseUrl());
      LightweightBrowserCache cache = CacheFactory.makeCacheable(proxy);
      cache.setMaxBytes(20);

      count = 0;

      String rtn = proxy.getCacheit("1");
      Assert.assertEquals("cachecache" + 1, rtn);
View Full Code Here

TOP

Related Classes of org.jboss.resteasy.client.cache.LightweightBrowserCache

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.