/** * 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.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.model.Host; import java.io.Externalizable; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; /** * The cache model class for representing Host in entity cache. * * @author Iavor Sturm * @see Host * @generated */ public class HostCacheModel implements CacheModel<Host>, Externalizable { @Override public String toString() { StringBundler sb = new StringBundler(19); sb.append("{hostId="); sb.append(hostId); sb.append(", protocol="); sb.append(protocol); sb.append(", streamer="); sb.append(streamer); sb.append(", port="); sb.append(port); sb.append(", serverRoot="); sb.append(serverRoot); sb.append(", name="); sb.append(name); sb.append(", groupId="); sb.append(groupId); sb.append(", companyId="); sb.append(companyId); sb.append(", defaultHost="); sb.append(defaultHost); sb.append("}"); return sb.toString(); } @Override public Host toEntityModel() { HostImpl hostImpl = new HostImpl(); hostImpl.setHostId(hostId); if (protocol == null) { hostImpl.setProtocol(StringPool.BLANK); } else { hostImpl.setProtocol(protocol); } if (streamer == null) { hostImpl.setStreamer(StringPool.BLANK); } else { hostImpl.setStreamer(streamer); } hostImpl.setPort(port); if (serverRoot == null) { hostImpl.setServerRoot(StringPool.BLANK); } else { hostImpl.setServerRoot(serverRoot); } if (name == null) { hostImpl.setName(StringPool.BLANK); } else { hostImpl.setName(name); } hostImpl.setGroupId(groupId); hostImpl.setCompanyId(companyId); hostImpl.setDefaultHost(defaultHost); hostImpl.resetOriginalValues(); return hostImpl; } @Override public void readExternal(ObjectInput objectInput) throws IOException { hostId = objectInput.readLong(); protocol = objectInput.readUTF(); streamer = objectInput.readUTF(); port = objectInput.readInt(); serverRoot = objectInput.readUTF(); name = objectInput.readUTF(); groupId = objectInput.readLong(); companyId = objectInput.readLong(); defaultHost = objectInput.readInt(); } @Override public void writeExternal(ObjectOutput objectOutput) throws IOException { objectOutput.writeLong(hostId); if (protocol == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(protocol); } if (streamer == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(streamer); } objectOutput.writeInt(port); if (serverRoot == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(serverRoot); } if (name == null) { objectOutput.writeUTF(StringPool.BLANK); } else { objectOutput.writeUTF(name); } objectOutput.writeLong(groupId); objectOutput.writeLong(companyId); objectOutput.writeInt(defaultHost); } public long hostId; public String protocol; public String streamer; public int port; public String serverRoot; public String name; public long groupId; public long companyId; public int defaultHost; }