Package ch.entwine.weblounge.cache.impl.handle

Examples of ch.entwine.weblounge.cache.impl.handle.CacheHandleImpl


   * {@link ch.entwine.weblounge.cache.impl.CacheableHttpServletResponse#startTransaction(ch.entwine.weblounge.common.request.CacheHandle, java.lang.String, ch.entwine.weblounge.cache.StreamFilter)}
   * .
   */
  @Test
  public void testStartTransaction() {
    CacheHandle hdl = new CacheHandleImpl("/a/b/c", expirationTime, recheckTime);
    CacheTransaction tx = response.startTransaction(hdl, null);
    assertNotNull(tx);
    assertEquals(hdl, tx.getHandle());
  }
View Full Code Here

TOP

Related Classes of ch.entwine.weblounge.cache.impl.handle.CacheHandleImpl

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.