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 Param {
10  
11  	String name;
12  	String value;
13  
14  	public Param(Param param) {
15  		super();
16  		this.name = param.getName();
17  		this.value = param.getValue();
18  	}
19  
20  	public Param() {
21  		this(null, null);
22  	}
23  
24  	public Param(String name, String value) {
25  		super();
26  		this.name = name;
27  		this.value = value;
28  	}
29  
30  	@XmlAttribute
31  	public String getName() {
32  		return name;
33  	}
34  
35  	@XmlAttribute
36  	public String getValue() {
37  		return value;
38  	}
39  
40  	public void setName(String name) {
41  		this.name = name;
42  	}
43  
44  	public void setValue(String value) {
45  		this.value = value;
46  	}
47  
48  }