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

io.dropwizard.jersey.validation.ValidationErrorMessage Maven / Gradle / Ivy

The newest version!
package io.dropwizard.jersey.validation;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class ValidationErrorMessage {
    private final List errors;

    @JsonCreator
    public ValidationErrorMessage(@JsonProperty("errors") List errors) {
        this.errors = errors;
    }

    @JsonProperty
    public List getErrors() {
        return errors;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy