View Javadoc

1   package org.kuali.spring.util.event;
2   
3   public class ValueResolutionEvent {
4   	Object oldValue;
5   	Object newValue;
6   
7   	public ValueResolutionEvent() {
8   		this(null, null);
9   	}
10  
11  	public ValueResolutionEvent(Object oldValue, Object newValue) {
12  		super();
13  		this.oldValue = oldValue;
14  		this.newValue = newValue;
15  	}
16  
17  	public Object getOldValue() {
18  		return oldValue;
19  	}
20  
21  	public void setOldValue(Object oldValue) {
22  		this.oldValue = oldValue;
23  	}
24  
25  	public Object getNewValue() {
26  		return newValue;
27  	}
28  
29  	public void setNewValue(Object newValue) {
30  		this.newValue = newValue;
31  	}
32  }