View Javadoc
1   /**
2    * Copyright 2010-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.common.util.log4j.model;
17  
18  import javax.xml.bind.annotation.XmlAttribute;
19  
20  /**
21   * @deprecated
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  }