org.netarchivesuite.heritrix3wrapper.ResultAbstract Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heritrix3-wrapper Show documentation
Show all versions of heritrix3-wrapper Show documentation
Wrapper library for unpacking and communicating with Heritrix 3.
package org.netarchivesuite.heritrix3wrapper;
import org.netarchivesuite.heritrix3wrapper.xmlutils.XmlValidationResult;
public abstract class ResultAbstract {
public int status;
public Throwable t;
public int responseCode;
public byte[] response;
public XmlValidationResult result = new XmlValidationResult();
}