/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.contacts.model.impl; import aQute.bnd.annotation.ProviderType; import com.liferay.contacts.model.Entry; import com.liferay.portal.kernel.model.CacheModel; import com.liferay.portal.kernel.util.HashUtil; import com.liferay.portal.kernel.util.StringBundler; import com.liferay.portal.kernel.util.StringPool; import java.io.Externalizable; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.Date; /** * The cache model class for representing Entry in entity cache. * * @author Brian Wing Shun Chan * @see Entry * @generated */ @ProviderType public class EntryCacheModel implements CacheModel<Entry>, Externalizable { @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof EntryCacheModel)) { return false; } EntryCacheModel entryCacheModel = (EntryCacheModel)obj; if (entryId == entryCacheModel.entryId) { return true; } return false; } @Override public int hashCode() { return HashUtil.hash(0, entryId); } @Override public String toString() { StringBundler sb = new StringBundler(21); sb.append("{entryId="); sb.append(entryId); sb.append(", groupId="); sb.append(groupId); sb.append(", companyId="); sb.append(companyId); sb.append(", userId="); sb.append(userId); sb.append(", userName="); sb.append(userName); sb.append(", createDate="); sb.append(createDate); sb.append(", modifiedDate="); sb.append(modifiedDate); sb.append(", fullName="); sb.append(fullName); sb.append(", emailAddress="); sb.append(emailAddress); sb.append(", comments="); sb.append(comments); sb.append("}"); return sb.toString(); } @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 void readExternal(ObjectInput objectInput) throws IOException { entryId = objectInput.readLong(); groupId = objectInput.readLong(); companyId = objectInput.readLong(); userId = objectInput.readLong(); userName = objectInput.readUTF(); createDate = objectInput.readLong(); modifiedDate = objectInput.readLong(); fullName = objectInput.readUTF(); emailAddress = objectInput.readUTF(); comments = objectInput.readUTF(); } @Override public void writeExternal(ObjectOutput objectOutput) throws IOException { objectOutput.writeLong(entryId); objectOutput.writeLong(groupId); objectOutput.writeLong(companyId); objectOutput.writeLong(userId); if (userName == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(userName); } objectOutput.writeLong(createDate); objectOutput.writeLong(modifiedDate); if (fullName == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(fullName); } if (emailAddress == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(emailAddress); } if (comments == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(comments); } } public long entryId; public long groupId; public long companyId; public long userId; public String userName; public long createDate; public long modifiedDate; public String fullName; public String emailAddress; public String comments; }