org.hibernate.search.Search 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;
import org.hibernate.Session;
import org.hibernate.search.impl.FullTextSessionImpl;
/**
* Helper class to get a FullTextSession out of a regular session
* @author Emmanuel Bernard
*/
public final class Search {
private Search() {
}
public static FullTextSession createFullTextSession(Session session) {
return new FullTextSessionImpl(session);
}
}