View Javadoc
1   package org.kuali.common.util.log4j.model;
2   
3   import javax.xml.bind.annotation.XmlAttribute;
4   
5   /**
6    * @deprecated
7    */
8   @Deprecated
9   public class AppenderRef {
10  
11  	String ref;
12  
13  	public AppenderRef(AppenderRef reference) {
14  		super();
15  		this.ref = reference.getRef();
16  	}
17  
18  	public AppenderRef() {
19  		this((String) null);
20  	}
21  
22  	public AppenderRef(String ref) {
23  		super();
24  		this.ref = ref;
25  	}
26  
27  	@XmlAttribute
28  	public String getRef() {
29  		return ref;
30  	}
31  
32  	public void setRef(String ref) {
33  		this.ref = ref;
34  	}
35  
36  }