org.hibernate.search.bridge.ParameterizedBridge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$Id: $
package org.hibernate.search.bridge;
import java.util.Map;
/**
* Allow parameter injection to a given bridge
*
* @author Emmanuel Bernard
*/
public interface ParameterizedBridge {
//TODO inject Properties? since the annotations cannot support Object attribute?
void setParameterValues(Map parameters);
}