Package org.sonar.jpa.session

Examples of org.sonar.jpa.session.DatabaseSessionFactory


  @Override
  public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
    chain.doFilter(request, response);

    DatabaseSessionFactory sessionFactory = Platform.component(DatabaseSessionFactory.class);
    if (sessionFactory != null) {
      sessionFactory.clear();
    }
  }
View Full Code Here


  protected Database getDatabase() {
    return database;
  }

  protected DatabaseSessionFactory getSessionFactory() {
    return new DatabaseSessionFactory() {
      public DatabaseSession getSession() {
        return session;
      }

      public void clear() {
View Full Code Here

TOP

Related Classes of org.sonar.jpa.session.DatabaseSessionFactory

Copyright © 2018 www.massapicom. 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.