@Override public Entry toEntityModel() { EntryImpl entryImpl = new EntryImpl(); entryImpl.setEntryId(entryId); entryImpl.setGroupId(groupId); entryImpl.setCompanyId(companyId); entryImpl.setUserId(userId); if (userName == null) { entryImpl.setUserName(StringPool.BLANK); } else { entryImpl.setUserName(userName); } if (createDate == Long.MIN_VALUE) { entryImpl.setCreateDate(null); } else { entryImpl.setCreateDate(new Date(createDate)); } if (modifiedDate == Long.MIN_VALUE) { entryImpl.setModifiedDate(null); } else { entryImpl.setModifiedDate(new Date(modifiedDate)); } if (name == null) { entryImpl.setName(StringPool.BLANK); } else { entryImpl.setName(name); } if (email == null) { entryImpl.setEmail(StringPool.BLANK); } else { entryImpl.setEmail(email); } if (message == null) { entryImpl.setMessage(StringPool.BLANK); } else { entryImpl.setMessage(message); } entryImpl.setGuestbookId(guestbookId); entryImpl.resetOriginalValues(); return entryImpl; }
@Override public Entry toEntityModel() { EntryImpl entryImpl = new EntryImpl(); entryImpl.setEntryId(entryId); entryImpl.setGroupId(groupId); entryImpl.setCompanyId(companyId); entryImpl.setUserId(userId); if (userName == null) { entryImpl.setUserName(StringPool.BLANK); } else { entryImpl.setUserName(userName); } if (createDate == Long.MIN_VALUE) { entryImpl.setCreateDate(null); } else { entryImpl.setCreateDate(new Date(createDate)); } if (modifiedDate == Long.MIN_VALUE) { entryImpl.setModifiedDate(null); } else { entryImpl.setModifiedDate(new Date(modifiedDate)); } if (fullName == null) { entryImpl.setFullName(StringPool.BLANK); } else { entryImpl.setFullName(fullName); } if (emailAddress == null) { entryImpl.setEmailAddress(StringPool.BLANK); } else { entryImpl.setEmailAddress(emailAddress); } if (comments == null) { entryImpl.setComments(StringPool.BLANK); } else { entryImpl.setComments(comments); } entryImpl.resetOriginalValues(); return entryImpl; }
@Override public Object clone() { EntryImpl entryImpl = new EntryImpl(); entryImpl.setEntryId(getEntryId()); entryImpl.setGroupId(getGroupId()); entryImpl.setCompanyId(getCompanyId()); entryImpl.setUserId(getUserId()); entryImpl.setUserName(getUserName()); entryImpl.setCreateDate(getCreateDate()); entryImpl.setModifiedDate(getModifiedDate()); entryImpl.setFullName(getFullName()); entryImpl.setEmailAddress(getEmailAddress()); entryImpl.setComments(getComments()); entryImpl.resetOriginalValues(); return entryImpl; }