All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.netarchivesuite.heritrix3wrapper.jaxb.ThreadReport Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy