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