001package org.biopax.paxtools.util;
002
003import org.biopax.paxtools.impl.BioPAXElementImpl;
004import org.biopax.paxtools.impl.level3.PhysicalEntityImpl;
005
006/**
007 * A Filter factory implementation to define
008 * the full-text search filter "by data source".
009 * It is defined in the {@link PhysicalEntityImpl},
010 * but any other (one) indexed entity can be used as well.
011 * 
012 * @author rodche
013 * @deprecated Hibernate ORM/Search will be removed in v5
014 */
015public class DataSourceFilterFactory extends BasicFilterFactory{
016
017        public DataSourceFilterFactory() {
018                super(BioPAXElementImpl.FIELD_DATASOURCE);
019        }
020}