001package org.kuali.common.util.log4j.model;
002
003import javax.xml.bind.annotation.XmlAttribute;
004
005/**
006 * @deprecated
007 */
008@Deprecated
009public class AppenderRef {
010
011        String ref;
012
013        public AppenderRef(AppenderRef reference) {
014                super();
015                this.ref = reference.getRef();
016        }
017
018        public AppenderRef() {
019                this((String) null);
020        }
021
022        public AppenderRef(String ref) {
023                super();
024                this.ref = ref;
025        }
026
027        @XmlAttribute
028        public String getRef() {
029                return ref;
030        }
031
032        public void setRef(String ref) {
033                this.ref = ref;
034        }
035
036}