Package org.archive.wayback.core

Examples of org.archive.wayback.core.WaybackRequest.fixup()


    }
    if(wbRequest.get(WaybackConstants.REQUEST_END_DATE) == null) {
      wbRequest.put(WaybackConstants.REQUEST_END_DATE,
          getLatestTimestamp());
    }
    wbRequest.fixup(httpRequest);

    return wbRequest;
  }
}
View Full Code Here


              String id = httpRequest.getHeader("Proxy-Id");
              if (id == null)
                      id = httpRequest.getRemoteAddr();
              wbRequest.put(WaybackConstants.REQUEST_EXACT_DATE, Timestamp
                      .getTimestampForId(httpRequest.getContextPath(), id));
              wbRequest.fixup(httpRequest);
      }
      return wbRequest;
  }
}
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.