001package org.kuali.asr.bo;
002
003import org.codehaus.jackson.annotate.JsonAutoDetect;
004import org.codehaus.jackson.annotate.JsonMethod;
005import org.codehaus.jackson.annotate.JsonProperty;
006
007import javax.xml.bind.annotation.*;
008import java.util.List;
009
010/**
011 * Created with IntelliJ IDEA.
012 * User: maheswarang
013 * Date: 12/24/13
014 * Time: 6:28 PM
015 * To change this template use File | Settings | File Templates.
016 */
017@XmlRootElement
018@XmlAccessorType(XmlAccessType.FIELD)
019@JsonAutoDetect(JsonMethod.FIELD)
020public class ASRRequests {
021    @XmlElementWrapper
022    @XmlElement(name="asrRequest")
023    @JsonProperty
024    private List<ASRRequest> asrRequests;
025
026    public List<ASRRequest> getAsrRequests() {
027        return asrRequests;
028    }
029
030    public void setAsrRequests(List<ASRRequest> asrRequests) {
031        this.asrRequests = asrRequests;
032    }
033}