Esempio n. 1
0
 static {
   RuntimeDelegate.setInstance(new RuntimeDelegateImpl());
   cacheControl = new CacheControl();
   cacheControl.setNoCache(true);
   cacheControl.setNoStore(true);
 }
Esempio n. 2
0
 private CacheControl cacheControlNoStore() {
   CacheControl cacheControl = new CacheControl();
   cacheControl.setNoStore(true);
   return cacheControl;
 }