org.netarchivesuite.heritrix3wrapper.jaxb.ThreadReport 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.jaxb;
import java.util.List;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class ThreadReport {
@XmlElement(required=true)
public Integer toeCount;
@XmlElementWrapper(name="steps")
@XmlElement(name="value", required=false)
public List steps;
@XmlElementWrapper(name="processors")
@XmlElement(name="value", required=true)
public List processors;
}