
com.nycjv321.rss.validator.Warning 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 Warning {
private String level;
private String type;
private String text;
@JacksonXmlProperty
public String getLevel() {
return level;
}
@JacksonXmlProperty
public String getType() {
return type;
}
@JacksonXmlProperty
public String getText() {
return text;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy