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