aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/test/java/org/onap/vid/model/workflow/ListOfErrorsResponse.java
blob: 0f38c2f4fbf44ae9e5922a3f36e9f81e2dfe7fc7 (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.onap.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;
    }
}