org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / ListOfErrorsResponse.java
1 package org.onap.vid.model;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 public class ListOfErrorsResponse {
7     protected List<String> errors;
8
9     public ListOfErrorsResponse() {
10         this.errors = new ArrayList<>();
11     }
12
13     public ListOfErrorsResponse(List<String> errors) {
14         this.errors = errors;
15     }
16
17     public List<String> getErrors() {
18         return errors;
19     }
20
21     public void setErrors(List<String> errors) {
22         this.errors = errors;
23     }
24 }