1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util.log4j.model;
17
18 import javax.xml.bind.annotation.XmlAttribute;
19
20
21
22
23 @Deprecated
24 public class Param {
25
26 String name;
27 String value;
28
29 public Param(Param param) {
30 super();
31 this.name = param.getName();
32 this.value = param.getValue();
33 }
34
35 public Param() {
36 this(null, null);
37 }
38
39 public Param(String name, String value) {
40 super();
41 this.name = name;
42 this.value = value;
43 }
44
45 @XmlAttribute
46 public String getName() {
47 return name;
48 }
49
50 @XmlAttribute
51 public String getValue() {
52 return value;
53 }
54
55 public void setName(String name) {
56 this.name = name;
57 }
58
59 public void setValue(String value) {
60 this.value = value;
61 }
62
63 }