@Override
public List<Integer> getActionRecords() {
List<Integer> actionRecords = new ArrayList<Integer>();
try {
IActionLogRecordSearchBean searchBean = this.prepareSearchBean();
actionRecords = this.getActionLogManager().getActionRecords(searchBean);
} catch (Throwable t) {
ApsSystemUtils.logThrowable(t, this, "getActionRecords");
}
return actionRecords;