Examples of BDBMap


Examples of org.archive.wayback.util.bdb.BDBMap

 
  protected String proxyInfoJsp = "/WEB-INF/replay/ProxyInfo.jsp";

  public String resolveConfig(HttpServletRequest request) {
    String context = request.getContextPath();
      BDBMap bdbMap = BDBMap.getContextMap(context);
     
      String key = genKey(request);
        String coll = bdbMap.get(key);
        return coll;
  }
View Full Code Here

Examples of org.archive.wayback.util.bdb.BDBMap

  }
 
  protected void setConfig(HttpServletRequest request, String config)
  {
    String context = request.getContextPath();
      BDBMap bdbMap = BDBMap.getContextMap(context);
       
    String key = genKey(request);
    bdbMap.put(key, config);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.