1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.kuali.kfs.module.external.kc.dto;
20
21 import java.util.List;
22
23 import javax.xml.bind.annotation.XmlAccessType;
24 import javax.xml.bind.annotation.XmlAccessorType;
25 import javax.xml.bind.annotation.XmlType;
26
27 @XmlAccessorType(XmlAccessType.FIELD)
28 @XmlType(name = "customerCreationStatusDto", propOrder = {
29 "customerNumber",
30 "errors"
31 })
32 public class CustomerCreationStatusDto {
33 private List<String> errors;
34 private String customerNumber;
35
36 public List<String> getErrors() {
37 return errors;
38 }
39 public void setErrors(List<String> errors) {
40 this.errors = errors;
41 }
42 public String getCustomerNumber() {
43 return customerNumber;
44 }
45 public void setCustomerNumber(String customerNumber) {
46 this.customerNumber = customerNumber;
47 }
48 }