package org.onap.vid.model; import java.util.ArrayList; import java.util.List; public class ListOfErrorsResponse { protected List errors; public ListOfErrorsResponse() { this.errors = new ArrayList<>(); } public ListOfErrorsResponse(List errors) { this.errors = errors; } public List getErrors() { return errors; } public void setErrors(List errors) { this.errors = errors; } }