/*
  * NOTE FOR DEVELOPERS:
  *
  * Never modify or reference this class directly. All methods that expect a kaleo task assignment model instance should use the {@link KaleoTaskAssignment} interface instead.
  */
 public void persist() throws SystemException {
   if (this.isNew()) {
     KaleoTaskAssignmentLocalServiceUtil.addKaleoTaskAssignment(this);
   } else {
     KaleoTaskAssignmentLocalServiceUtil.updateKaleoTaskAssignment(this);
   }
 }