Example usage for com.liferay.portal.kernel.search BaseIndexer subclass-usage

List of usage examples for com.liferay.portal.kernel.search BaseIndexer subclass-usage

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.search BaseIndexer subclass-usage.

Usage

From source file ca.efendi.datafeeds.search.CJProductIndexer.java

@Component(immediate = true, service = Indexer.class)
public class CJProductIndexer extends BaseIndexer<CJProduct> {

    private static final Log _log = LogFactoryUtil.getLog(CJProductIndexer.class);

    public static final String CLASS_NAME = CJProduct.class.getName();

From source file com.inkwell.internet.slogan.search.SloganIndexer.java

/**
 * @author Rich Sezov
 */
public class SloganIndexer extends BaseIndexer {

    public static final String[] CLASS_NAMES = { Slogan.class.getName() };

From source file com.liferay.alloy.mvc.BaseAlloyIndexer.java

/**
 * @author Brian Wing Shun Chan
 */
public abstract class BaseAlloyIndexer extends BaseIndexer {

    public AlloyServiceInvoker getAlloyServiceInvoker() {

From source file com.liferay.asset.categories.internal.search.AssetCategoryIndexer.java

/**
 * @author Istvan Andras Dezsi
 */
@Component(immediate = true, service = Indexer.class)
public class AssetCategoryIndexer extends BaseIndexer<AssetCategory> {

From source file com.liferay.asset.categories.internal.search.AssetVocabularyIndexer.java

/**
 * @author Istvan Andras Dezsi
 */
@Component(immediate = true, service = Indexer.class)
public class AssetVocabularyIndexer extends BaseIndexer<AssetVocabulary> {

From source file com.liferay.asset.internal.search.AssetEntryIndexer.java

/**
 * @author Brian Wing Shun Chan
 * @author Julio Camarero
 */
@Component(immediate = true, service = Indexer.class)
public class AssetEntryIndexer extends BaseIndexer<AssetEntry> {

From source file com.liferay.asset.tags.internal.search.AssetTagIndexer.java

/**
 * @author Pavel Savinov
 */
@Component(immediate = true, service = Indexer.class)
public class AssetTagIndexer extends BaseIndexer<AssetTag> {

From source file com.liferay.blogs.internal.search.BlogsEntryIndexer.java

/**
 * @author Brian Wing Shun Chan
 * @author Harry Mark
 * @author Bruno Farache
 * @author Raymond Aug
 */

From source file com.liferay.bookmarks.search.BookmarksEntryIndexer.java

/**
 * @author Brian Wing Shun Chan
 * @author Bruno Farache
 * @author Raymond Aug
 */
@Component(immediate = true, service = Indexer.class)

From source file com.liferay.bookmarks.search.BookmarksFolderIndexer.java

/**
 * @author Eduardo Garcia
 */
@Component(immediate = true, service = Indexer.class)
public class BookmarksFolderIndexer extends BaseIndexer<BookmarksFolder> {