com.liferay.commerce.payment.internal.search.CommercePaymentEntrySearcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.commerce.payment.service
Show all versions of com.liferay.commerce.payment.service
Liferay Commerce Payment 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.payment.internal.search;
import com.liferay.commerce.payment.model.CommercePaymentEntry;
import com.liferay.portal.kernel.search.BaseSearcher;
import org.osgi.service.component.annotations.Component;
/**
* @author Luca Pellizzon
*/
@Component(
property = "model.class.name=com.liferay.commerce.payment.model.CommercePaymentEntry",
service = BaseSearcher.class
)
public class CommercePaymentEntrySearcher extends BaseSearcher {
public CommercePaymentEntrySearcher() {
setFilterSearch(true);
setPermissionAware(true);
}
@Override
public String getClassName() {
return _CLASS_NAME;
}
private static final String _CLASS_NAME =
CommercePaymentEntry.class.getName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy