com.liferay.dynamic.data.mapping.model.impl.DDMTemplateLinkCacheModel Maven / Gradle / Ivy
/**
* 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.dynamic.data.mapping.model.impl;
import com.liferay.dynamic.data.mapping.model.DDMTemplateLink;
import com.liferay.petra.lang.HashUtil;
import com.liferay.petra.string.StringBundler;
import com.liferay.portal.kernel.model.CacheModel;
import com.liferay.portal.kernel.model.MVCCModel;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
/**
* The cache model class for representing DDMTemplateLink in entity cache.
*
* @author Brian Wing Shun Chan
* @generated
*/
public class DDMTemplateLinkCacheModel
implements CacheModel, Externalizable, MVCCModel {
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof DDMTemplateLinkCacheModel)) {
return false;
}
DDMTemplateLinkCacheModel ddmTemplateLinkCacheModel =
(DDMTemplateLinkCacheModel)obj;
if ((templateLinkId == ddmTemplateLinkCacheModel.templateLinkId) &&
(mvccVersion == ddmTemplateLinkCacheModel.mvccVersion)) {
return true;
}
return false;
}
@Override
public int hashCode() {
int hashCode = HashUtil.hash(0, templateLinkId);
return HashUtil.hash(hashCode, mvccVersion);
}
@Override
public long getMvccVersion() {
return mvccVersion;
}
@Override
public void setMvccVersion(long mvccVersion) {
this.mvccVersion = mvccVersion;
}
@Override
public String toString() {
StringBundler sb = new StringBundler(15);
sb.append("{mvccVersion=");
sb.append(mvccVersion);
sb.append(", ctCollectionId=");
sb.append(ctCollectionId);
sb.append(", templateLinkId=");
sb.append(templateLinkId);
sb.append(", companyId=");
sb.append(companyId);
sb.append(", classNameId=");
sb.append(classNameId);
sb.append(", classPK=");
sb.append(classPK);
sb.append(", templateId=");
sb.append(templateId);
sb.append("}");
return sb.toString();
}
@Override
public DDMTemplateLink toEntityModel() {
DDMTemplateLinkImpl ddmTemplateLinkImpl = new DDMTemplateLinkImpl();
ddmTemplateLinkImpl.setMvccVersion(mvccVersion);
ddmTemplateLinkImpl.setCtCollectionId(ctCollectionId);
ddmTemplateLinkImpl.setTemplateLinkId(templateLinkId);
ddmTemplateLinkImpl.setCompanyId(companyId);
ddmTemplateLinkImpl.setClassNameId(classNameId);
ddmTemplateLinkImpl.setClassPK(classPK);
ddmTemplateLinkImpl.setTemplateId(templateId);
ddmTemplateLinkImpl.resetOriginalValues();
return ddmTemplateLinkImpl;
}
@Override
public void readExternal(ObjectInput objectInput) throws IOException {
mvccVersion = objectInput.readLong();
ctCollectionId = objectInput.readLong();
templateLinkId = objectInput.readLong();
companyId = objectInput.readLong();
classNameId = objectInput.readLong();
classPK = objectInput.readLong();
templateId = objectInput.readLong();
}
@Override
public void writeExternal(ObjectOutput objectOutput) throws IOException {
objectOutput.writeLong(mvccVersion);
objectOutput.writeLong(ctCollectionId);
objectOutput.writeLong(templateLinkId);
objectOutput.writeLong(companyId);
objectOutput.writeLong(classNameId);
objectOutput.writeLong(classPK);
objectOutput.writeLong(templateId);
}
public long mvccVersion;
public long ctCollectionId;
public long templateLinkId;
public long companyId;
public long classNameId;
public long classPK;
public long templateId;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy