Package org.hibernate.search

Source Code of org.hibernate.search.Search

/*
* Hibernate Search, full-text search for your domain model
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
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
* @author Hardy Ferentschik
*/
public final class Search {

  private Search() {
  }

  public static FullTextSession getFullTextSession(Session session) {
    if ( session instanceof FullTextSession ) {
      return (FullTextSession) session;
    }
    else {
      return new FullTextSessionImpl( session );
    }
  }

}
TOP

Related Classes of org.hibernate.search.Search

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.