1 package org.bsf.smartValueObject.mediator; 2 3 7 public class ChangeSummary { 8 private Object key; 9 private String report; 10 11 public ChangeSummary(Object key, String report) { 12 this.key = key; 13 this.report = report; 14 } 15 16 public Object getKey() { 17 return key; 18 } 19 20 public void setKey(Object key) { 21 this.key = key; 22 } 23 24 public String getReport() { 25 return report; 26 } 27 28 public void setReport(String report) { 29 this.report = report; 30 } 31 } 32 | Popular Tags |