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

com.nycjv321.rss.validator.Warning Maven / Gradle / Ivy

Go to download

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