com.liferay.commerce.discount.service.persistence.impl.CommerceDiscountUsageEntryModelArgumentsResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.commerce.discount.service
Show all versions of com.liferay.commerce.discount.service
Liferay Commerce Discount Service
The newest version!
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.commerce.discount.service.persistence.impl;
import com.liferay.commerce.discount.model.CommerceDiscountUsageEntryTable;
import com.liferay.commerce.discount.model.impl.CommerceDiscountUsageEntryImpl;
import com.liferay.commerce.discount.model.impl.CommerceDiscountUsageEntryModelImpl;
import com.liferay.portal.kernel.dao.orm.ArgumentsResolver;
import com.liferay.portal.kernel.dao.orm.FinderPath;
import com.liferay.portal.kernel.model.BaseModel;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import org.osgi.service.component.annotations.Component;
/**
* The arguments resolver class for retrieving value from CommerceDiscountUsageEntry.
*
* @author Marco Leo
* @generated
*/
@Component(
property = {
"class.name=com.liferay.commerce.discount.model.impl.CommerceDiscountUsageEntryImpl",
"table.name=CommerceDiscountUsageEntry"
},
service = ArgumentsResolver.class
)
public class CommerceDiscountUsageEntryModelArgumentsResolver
implements ArgumentsResolver {
@Override
public Object[] getArguments(
FinderPath finderPath, BaseModel> baseModel, boolean checkColumn,
boolean original) {
String[] columnNames = finderPath.getColumnNames();
if ((columnNames == null) || (columnNames.length == 0)) {
if (baseModel.isNew()) {
return new Object[0];
}
return null;
}
CommerceDiscountUsageEntryModelImpl
commerceDiscountUsageEntryModelImpl =
(CommerceDiscountUsageEntryModelImpl)baseModel;
long columnBitmask =
commerceDiscountUsageEntryModelImpl.getColumnBitmask();
if (!checkColumn || (columnBitmask == 0)) {
return _getValue(
commerceDiscountUsageEntryModelImpl, columnNames, original);
}
Long finderPathColumnBitmask = _finderPathColumnBitmasksCache.get(
finderPath);
if (finderPathColumnBitmask == null) {
finderPathColumnBitmask = 0L;
for (String columnName : columnNames) {
finderPathColumnBitmask |=
commerceDiscountUsageEntryModelImpl.getColumnBitmask(
columnName);
}
if (finderPath.isBaseModelResult() &&
(CommerceDiscountUsageEntryPersistenceImpl.
FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION ==
finderPath.getCacheName())) {
finderPathColumnBitmask |= _ORDER_BY_COLUMNS_BITMASK;
}
_finderPathColumnBitmasksCache.put(
finderPath, finderPathColumnBitmask);
}
if ((columnBitmask & finderPathColumnBitmask) != 0) {
return _getValue(
commerceDiscountUsageEntryModelImpl, columnNames, original);
}
return null;
}
@Override
public String getClassName() {
return CommerceDiscountUsageEntryImpl.class.getName();
}
@Override
public String getTableName() {
return CommerceDiscountUsageEntryTable.INSTANCE.getTableName();
}
private static Object[] _getValue(
CommerceDiscountUsageEntryModelImpl commerceDiscountUsageEntryModelImpl,
String[] columnNames, boolean original) {
Object[] arguments = new Object[columnNames.length];
for (int i = 0; i < arguments.length; i++) {
String columnName = columnNames[i];
if (original) {
arguments[i] =
commerceDiscountUsageEntryModelImpl.getColumnOriginalValue(
columnName);
}
else {
arguments[i] =
commerceDiscountUsageEntryModelImpl.getColumnValue(
columnName);
}
}
return arguments;
}
private static final Map _finderPathColumnBitmasksCache =
new ConcurrentHashMap<>();
private static final long _ORDER_BY_COLUMNS_BITMASK;
static {
long orderByColumnsBitmask = 0;
orderByColumnsBitmask |=
CommerceDiscountUsageEntryModelImpl.getColumnBitmask("createDate");
_ORDER_BY_COLUMNS_BITMASK = orderByColumnsBitmask;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy