001package org.kuali.common.util.properties.rice;
002
003import java.util.List;
004
005import javax.xml.bind.annotation.XmlAccessType;
006import javax.xml.bind.annotation.XmlAccessorType;
007import javax.xml.bind.annotation.XmlElement;
008import javax.xml.bind.annotation.XmlRootElement;
009
010@XmlRootElement
011@XmlAccessorType(XmlAccessType.FIELD)
012public class Config {
013
014        @XmlElement(name = "param")
015        private List<Param> params;
016
017        public List<Param> getParams() {
018                return params;
019        }
020
021        public void setParams(List<Param> params) {
022                this.params = params;
023        }
024
025}