@Override
  public Object clone() {
    VideoUserContactEntryClp clone = new VideoUserContactEntryClp();

    clone.setVideoUserContactId(getVideoUserContactId());
    clone.setVideoUserId(getVideoUserId());
    clone.setContactId(getContactId());
    clone.setCompanyId(getCompanyId());
    clone.setStartTime(getStartTime());
    clone.setEndTime(getEndTime());
    clone.setPriority(getPriority());
    clone.setStatus(getStatus());

    return clone;
  }