com.liferay.depot.internal.search.DepotEntryModelSearchConfigurator Maven / Gradle / Ivy
The newest version!
/**
* SPDX-FileCopyrightText: (c) 2023 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.depot.internal.search;
import com.liferay.depot.internal.search.spi.model.index.contributor.DepotEntryModelIndexerWriterContributor;
import com.liferay.depot.model.DepotEntry;
import com.liferay.depot.service.DepotEntryLocalService;
import com.liferay.portal.kernel.search.Field;
import com.liferay.portal.search.batch.DynamicQueryBatchIndexingActionableFactory;
import com.liferay.portal.search.spi.model.index.contributor.ModelIndexerWriterContributor;
import com.liferay.portal.search.spi.model.registrar.ModelSearchConfigurator;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
/**
* @author Alejandro Tardín
*/
@Component(service = ModelSearchConfigurator.class)
public class DepotEntryModelSearchConfigurator
implements ModelSearchConfigurator {
@Override
public String getClassName() {
return DepotEntry.class.getName();
}
@Override
public String[] getDefaultSelectedFieldNames() {
return new String[] {
Field.COMPANY_ID, Field.ENTRY_CLASS_NAME, Field.ENTRY_CLASS_PK,
Field.GROUP_ID, Field.MODIFIED_DATE, Field.NAME,
Field.SCOPE_GROUP_ID, Field.TITLE, Field.UID
};
}
@Override
public String[] getDefaultSelectedLocalizedFieldNames() {
return new String[] {Field.NAME};
}
@Override
public ModelIndexerWriterContributor
getModelIndexerWriterContributor() {
return _modelIndexWriterContributor;
}
@Activate
protected void activate() {
_modelIndexWriterContributor =
new DepotEntryModelIndexerWriterContributor(
_depotEntryLocalService,
_dynamicQueryBatchIndexingActionableFactory);
}
@Reference
private DepotEntryLocalService _depotEntryLocalService;
@Reference
private DynamicQueryBatchIndexingActionableFactory
_dynamicQueryBatchIndexingActionableFactory;
private ModelIndexerWriterContributor
_modelIndexWriterContributor;
}