/** * 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.wsrp.model.impl; import aQute.bnd.annotation.ProviderType; 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 com.liferay.wsrp.model.WSRPConsumerPortlet; 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 WSRPConsumerPortlet in entity cache. * * @author Brian Wing Shun Chan * @see WSRPConsumerPortlet * @generated */ @ProviderType public class WSRPConsumerPortletCacheModel implements CacheModel<WSRPConsumerPortlet>, Externalizable { @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof WSRPConsumerPortletCacheModel)) { return false; } WSRPConsumerPortletCacheModel wsrpConsumerPortletCacheModel = (WSRPConsumerPortletCacheModel)obj; if (wsrpConsumerPortletId == wsrpConsumerPortletCacheModel.wsrpConsumerPortletId) { return true; } return false; } @Override public int hashCode() { return HashUtil.hash(0, wsrpConsumerPortletId); } @Override public String toString() { StringBundler sb = new StringBundler(19); sb.append("{uuid="); sb.append(uuid); sb.append(", wsrpConsumerPortletId="); sb.append(wsrpConsumerPortletId); sb.append(", companyId="); sb.append(companyId); sb.append(", createDate="); sb.append(createDate); sb.append(", modifiedDate="); sb.append(modifiedDate); sb.append(", wsrpConsumerId="); sb.append(wsrpConsumerId); sb.append(", name="); sb.append(name); sb.append(", portletHandle="); sb.append(portletHandle); sb.append(", lastPublishDate="); sb.append(lastPublishDate); sb.append("}"); return sb.toString(); } @Override public WSRPConsumerPortlet toEntityModel() { WSRPConsumerPortletImpl wsrpConsumerPortletImpl = new WSRPConsumerPortletImpl(); if (uuid == null) { wsrpConsumerPortletImpl.setUuid(StringPool.BLANK); } else { wsrpConsumerPortletImpl.setUuid(uuid); } wsrpConsumerPortletImpl.setWsrpConsumerPortletId(wsrpConsumerPortletId); wsrpConsumerPortletImpl.setCompanyId(companyId); if (createDate == Long.MIN_VALUE) { wsrpConsumerPortletImpl.setCreateDate(null); } else { wsrpConsumerPortletImpl.setCreateDate(new Date(createDate)); } if (modifiedDate == Long.MIN_VALUE) { wsrpConsumerPortletImpl.setModifiedDate(null); } else { wsrpConsumerPortletImpl.setModifiedDate(new Date(modifiedDate)); } wsrpConsumerPortletImpl.setWsrpConsumerId(wsrpConsumerId); if (name == null) { wsrpConsumerPortletImpl.setName(StringPool.BLANK); } else { wsrpConsumerPortletImpl.setName(name); } if (portletHandle == null) { wsrpConsumerPortletImpl.setPortletHandle(StringPool.BLANK); } else { wsrpConsumerPortletImpl.setPortletHandle(portletHandle); } if (lastPublishDate == Long.MIN_VALUE) { wsrpConsumerPortletImpl.setLastPublishDate(null); } else { wsrpConsumerPortletImpl.setLastPublishDate(new Date(lastPublishDate)); } wsrpConsumerPortletImpl.resetOriginalValues(); return wsrpConsumerPortletImpl; } @Override public void readExternal(ObjectInput objectInput) throws IOException { uuid = objectInput.readUTF(); wsrpConsumerPortletId = objectInput.readLong(); companyId = objectInput.readLong(); createDate = objectInput.readLong(); modifiedDate = objectInput.readLong(); wsrpConsumerId = objectInput.readLong(); name = objectInput.readUTF(); portletHandle = objectInput.readUTF(); lastPublishDate = objectInput.readLong(); } @Override public void writeExternal(ObjectOutput objectOutput) throws IOException { if (uuid == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(uuid); } objectOutput.writeLong(wsrpConsumerPortletId); objectOutput.writeLong(companyId); objectOutput.writeLong(createDate); objectOutput.writeLong(modifiedDate); objectOutput.writeLong(wsrpConsumerId); if (name == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(name); } if (portletHandle == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(portletHandle); } objectOutput.writeLong(lastPublishDate); } public String uuid; public long wsrpConsumerPortletId; public long companyId; public long createDate; public long modifiedDate; public long wsrpConsumerId; public String name; public String portletHandle; public long lastPublishDate; }