Examples of IActionLogRecordSearchBean


Examples of org.entando.entando.aps.system.services.actionlog.model.IActionLogRecordSearchBean

 
  @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;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.