1 package org.kuali.asr.bo;
2
3 import org.codehaus.jackson.annotate.JsonAutoDetect;
4 import org.codehaus.jackson.annotate.JsonMethod;
5 import org.codehaus.jackson.annotate.JsonProperty;
6
7 import javax.xml.bind.annotation.*;
8 import java.util.List;
9
10
11
12
13
14
15
16
17 @XmlRootElement
18 @XmlAccessorType(XmlAccessType.FIELD)
19 @JsonAutoDetect(JsonMethod.FIELD)
20 public class ASRRequests {
21 @XmlElementWrapper
22 @XmlElement(name="asrRequest")
23 @JsonProperty
24 private List<ASRRequest> asrRequests;
25
26 public List<ASRRequest> getAsrRequests() {
27 return asrRequests;
28 }
29
30 public void setAsrRequests(List<ASRRequest> asrRequests) {
31 this.asrRequests = asrRequests;
32 }
33 }