use of org.akaza.openclinica.bean.rule.RuleSetRuleBean in project OpenClinica by OpenClinica.
the class RuleSetRuleAuditDAO method create.
public EntityBean create(EntityBean eb) throws OpenClinicaException {
RuleSetRuleBean ruleSetRuleBean = (RuleSetRuleBean) eb;
UserAccountBean userAccount = new UserAccountBean();
userAccount.setId(ruleSetRuleBean.getUpdaterId());
return create(eb, userAccount);
}
Aggregations