org.jwat.tools.tasks.cdx.CDXEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwat-tools Show documentation
Show all versions of jwat-tools Show documentation
JWAT-Tools uses the available JWAT libraries to make high level tasks available either from command-line or programmatically.
Common tasks include: Test, Compress, Decompress, CDX, Arc2Warc.
More specialised tasks include: Changed, ContainerMD, Delete, Extract, Interval, PathIndex, Unpack, Headers2CDX.
package org.jwat.tools.tasks.cdx;
import java.util.Date;
public class CDXEntry {
public Date date;
public String ip;
public String url;
public String mimetype;
public String responseCode;
public String checksum;
public long offset;
public long length;
public String fileName;
}