
com.nycjv321.rss.validator.Errors Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of w3c-feed-validator Show documentation
Show all versions of w3c-feed-validator Show documentation
Java Client for the W3C Feed Validation service (see https://validator.w3.org/feed/)
The newest version!
package com.nycjv321.rss.validator;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
/**
* Created by Javier L. Velasquez on 12/10/15.
*/
public final class Errors {
private int errorCount;
private ErrorList errorList;
@JacksonXmlProperty(namespace = "m", localName = "errorcount")
public int getErrorCount() {
return errorCount;
}
@JacksonXmlProperty(namespace = "m", localName = "errorlist")
public ErrorList getErrorList() {
return errorList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy