Package org.jboss.resteasy.client.jaxrs.cache

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


   public void testMaxSize() throws Exception
   {
      ResteasyClient client = new ResteasyClientBuilder().build();
      ResteasyWebTarget target = client.target(generateBaseUrl());
      target.register(BrowserCacheFeature.class);
      LightweightBrowserCache cache = (LightweightBrowserCache)target.getConfiguration().getProperty(BrowserCache.class.getName());
      cache.setMaxBytes(20);
      MyProxy proxy = target.proxy(MyProxy.class);


      count = 0;
View Full Code Here

TOP

Related Classes of org.jboss.resteasy.client.jaxrs.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.