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

fm.pattern.tokamak.sdk.commons.ErrorsRepresentation Maven / Gradle / Ivy

The newest version!
package fm.pattern.tokamak.sdk.commons;

import java.util.ArrayList;
import java.util.List;

public class ErrorsRepresentation extends Representation {

	private List errors = new ArrayList();

	public ErrorsRepresentation() {

	}

	public ErrorsRepresentation(List errors) {
		this.errors.addAll(errors);
	}

	public List getErrors() {
		return errors;
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy