/**
  * @see
  *     com.gridnode.pdip.framework.db.AbstractEntityHandler#updateEntity(com.gridnode.pdip.framework.db.entity.IEntity)
  */
 @Override
 public IEntity updateEntity(IEntity entity) throws Throwable {
   ResponseTrackRecordDAOHelper.getInstance().checkDuplicate((ResponseTrackRecord) entity, true);
   return super.updateEntity(entity);
 }
  public void update(IEntity entity) throws java.lang.Throwable {
    ResponseTrackRecordDAOHelper.getInstance().checkDuplicate((ResponseTrackRecord) entity, true);

    super.update(entity);
  }