Skip to content

Commit

Permalink
add setters for create time, update time, and update by
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed May 23, 2014
1 parent 4df53ae commit 70cec6c
Showing 1 changed file with 13 additions and 1 deletion.
Expand Up @@ -218,5 +218,17 @@ public void setFileSyncFlag(boolean value) {
public boolean isFileSyncFlag() {
return this.channel.isFileSyncFlag();
}


public Date getCreateTime() {
return this.channel.getCreateTime();
}

public String getLastUpdateBy() {
return this.channel.getLastUpdateBy();
}

public Date getLastUpdateTime() {
return this.channel.getLastUpdateTime();
}

}

0 comments on commit 70cec6c

Please sign in to comment.