aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/test/java/org/opencomp/vid/model/workflow/ListOfErrorsResponse.java
blob: 60b733fe46830af7113221e8bac4d9b9105fa812 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.opencomp.vid.model.workflow;

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

public class ListOfErrorsResponse {
    protected List<String> errors;

    public ListOfErrorsResponse() {
        this.errors = new ArrayList<>();
    }

    public ListOfErrorsResponse(List<String> errors) {
        this.errors = errors;
    }

    public List<String> getErrors() {
        return errors;
    }

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