Examples of ActionLogRecordSearchBean


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

    }
    return actionRecord;
  }
 
  protected IActionLogRecordSearchBean prepareSearchBean() {
    ActionLogRecordSearchBean searchBean = new ActionLogRecordSearchBean();
    searchBean.setUsername(this.getUsername());
    searchBean.setActionName(this.getActionName());
    searchBean.setNamespace(this.getNamespace());
    searchBean.setParams(this.getParams());
    searchBean.setStart(this.getStart());
    Date end = this.getEnd();
    if (end != null) {
      searchBean.setEnd(new Date(end.getTime() + 86400000)); // un giorno dopo
    }
    return searchBean;
  }
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.