/** * 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 de.uhh.l2g.plugins.migration.model.impl; import com.liferay.portal.kernel.util.StringBundler; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.model.CacheModel; import de.uhh.l2g.plugins.migration.model.LegacyFacility; import java.io.Externalizable; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; /** * The cache model class for representing LegacyFacility in entity cache. * * @author unihh * @see LegacyFacility * @generated */ public class LegacyFacilityCacheModel implements CacheModel<LegacyFacility>, Externalizable { @Override public String toString() { StringBundler sb = new StringBundler(15); sb.append("{id="); sb.append(id); sb.append(", parentId="); sb.append(parentId); sb.append(", name="); sb.append(name); sb.append(", typ="); sb.append(typ); sb.append(", www="); sb.append(www); sb.append(", level="); sb.append(level); sb.append(", sort="); sb.append(sort); sb.append("}"); return sb.toString(); } @Override public LegacyFacility toEntityModel() { LegacyFacilityImpl legacyFacilityImpl = new LegacyFacilityImpl(); legacyFacilityImpl.setId(id); legacyFacilityImpl.setParentId(parentId); if (name == null) { legacyFacilityImpl.setName(StringPool.BLANK); } else { legacyFacilityImpl.setName(name); } if (typ == null) { legacyFacilityImpl.setTyp(StringPool.BLANK); } else { legacyFacilityImpl.setTyp(typ); } if (www == null) { legacyFacilityImpl.setWww(StringPool.BLANK); } else { legacyFacilityImpl.setWww(www); } legacyFacilityImpl.setLevel(level); legacyFacilityImpl.setSort(sort); legacyFacilityImpl.resetOriginalValues(); return legacyFacilityImpl; } @Override public void readExternal(ObjectInput objectInput) throws IOException { id = objectInput.readLong(); parentId = objectInput.readLong(); name = objectInput.readUTF(); typ = objectInput.readUTF(); www = objectInput.readUTF(); level = objectInput.readInt(); sort = objectInput.readInt(); } @Override public void writeExternal(ObjectOutput objectOutput) throws IOException { objectOutput.writeLong(id); objectOutput.writeLong(parentId); if (name == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(name); } if (typ == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(typ); } if (www == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(www); } objectOutput.writeInt(level); objectOutput.writeInt(sort); } public long id; public long parentId; public String name; public String typ; public String www; public int level; public int sort; }