com.liferay.account.model.impl.AccountEntryUserRelCacheModel 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.account.model.impl;
import com.liferay.account.model.AccountEntryUserRel;
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 AccountEntryUserRel in entity cache.
*
* @author Brian Wing Shun Chan
* @generated
*/
public class AccountEntryUserRelCacheModel
implements CacheModel, Externalizable, MVCCModel {
@Override
public boolean equals(Object object) {
if (this == object) {
return true;
}
if (!(object instanceof AccountEntryUserRelCacheModel)) {
return false;
}
AccountEntryUserRelCacheModel accountEntryUserRelCacheModel =
(AccountEntryUserRelCacheModel)object;
if ((accountEntryUserRelId ==
accountEntryUserRelCacheModel.accountEntryUserRelId) &&
(mvccVersion == accountEntryUserRelCacheModel.mvccVersion)) {
return true;
}
return false;
}
@Override
public int hashCode() {
int hashCode = HashUtil.hash(0, accountEntryUserRelId);
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(11);
sb.append("{mvccVersion=");
sb.append(mvccVersion);
sb.append(", accountEntryUserRelId=");
sb.append(accountEntryUserRelId);
sb.append(", companyId=");
sb.append(companyId);
sb.append(", accountEntryId=");
sb.append(accountEntryId);
sb.append(", accountUserId=");
sb.append(accountUserId);
sb.append("}");
return sb.toString();
}
@Override
public AccountEntryUserRel toEntityModel() {
AccountEntryUserRelImpl accountEntryUserRelImpl =
new AccountEntryUserRelImpl();
accountEntryUserRelImpl.setMvccVersion(mvccVersion);
accountEntryUserRelImpl.setAccountEntryUserRelId(accountEntryUserRelId);
accountEntryUserRelImpl.setCompanyId(companyId);
accountEntryUserRelImpl.setAccountEntryId(accountEntryId);
accountEntryUserRelImpl.setAccountUserId(accountUserId);
accountEntryUserRelImpl.resetOriginalValues();
return accountEntryUserRelImpl;
}
@Override
public void readExternal(ObjectInput objectInput) throws IOException {
mvccVersion = objectInput.readLong();
accountEntryUserRelId = objectInput.readLong();
companyId = objectInput.readLong();
accountEntryId = objectInput.readLong();
accountUserId = objectInput.readLong();
}
@Override
public void writeExternal(ObjectOutput objectOutput) throws IOException {
objectOutput.writeLong(mvccVersion);
objectOutput.writeLong(accountEntryUserRelId);
objectOutput.writeLong(companyId);
objectOutput.writeLong(accountEntryId);
objectOutput.writeLong(accountUserId);
}
public long mvccVersion;
public long accountEntryUserRelId;
public long companyId;
public long accountEntryId;
public long accountUserId;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy