blob: 31432181191f7bafd5e6a269df8f49383e6b14a9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
public class AuditImpl implements Audit {
private String lastUpdatedBy;
public String getLastUpdatedBy() {
return lastUpdatedBy;
}
public void setLastUpdatedBy(String un) {
lastUpdatedBy = un;
}
}
|