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

com.github.jasminb.jsonapi.models.errors.Errors Maven / Gradle / Ivy

Go to download

JSONAPI-Converter is a library that provides means for integrating with services using JSON API specification.

There is a newer version: 0.14
Show newest version
package com.github.jasminb.jsonapi.models.errors;

import java.util.List;

/**
 * JSON API error response.
 *
 * @author jbegic
 */
public class Errors {
	private List errors;

	public List getErrors() {
		return errors;
	}

	public void setErrors(List errors) {
		this.errors = errors;
	}

	@Override
	public String toString() {
		return "Errors{" +
				"errors=" + (errors != null ? errors : "Undefined") +
				'}';
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy