Package org.hibernate

Examples of org.hibernate.SessionException


          new ConnectionObserverStatsBridge( factory )
      );
    }
    else {
      if ( connection != null ) {
        throw new SessionException( "Cannot simultaneously share transaction context and specify connection" );
      }
      this.transactionCoordinator = transactionCoordinator;
      this.isTransactionCoordinatorShared = true;
      this.autoJoinTransactions = false;
      if ( autoJoinTransactions ) {
View Full Code Here


  }

  public Connection close() throws HibernateException {
    LOG.trace( "Closing session" );
    if ( isClosed() ) {
      throw new SessionException( "Session was already closed" );
    }

    if ( factory.getStatistics().isStatisticsEnabled() ) {
      factory.getStatisticsImplementor().closeSession();
    }
View Full Code Here

    closed = true;
  }

  protected void errorIfClosed() {
    if ( closed ) {
      throw new SessionException( "Session is closed!" );
    }
  }
View Full Code Here

  }

  public Connection close() throws HibernateException {
    log.trace( "closing session" );
    if ( isClosed() ) {
      throw new SessionException( "Session was already closed" );
    }
   

    if ( factory.getStatistics().isStatisticsEnabled() ) {
      factory.getStatisticsImplementor().closeSession();
View Full Code Here

  }

  @Override
  public Object immediateLoad(String entityName, Serializable id)
      throws HibernateException {
    throw new SessionException("proxies cannot be fetched by a stateless session");
  }
View Full Code Here

  @Override
  public void initializeCollection(
      PersistentCollection collection,
          boolean writing) throws HibernateException {
    throw new SessionException("collections cannot be fetched by a stateless session");
  }
View Full Code Here

  }

  @Override
  public void managedClose() {
    if ( isClosed() ) {
      throw new SessionException( "Session was already closed!" );
    }
    transactionCoordinator.close();
    setClosed();
  }
View Full Code Here

    }

    @Override
    public SessionBuilder tenantIdentifier(String tenantIdentifier) {
      // todo : is this always true?  Or just in the case of sharing JDBC resources?
      throw new SessionException( "Cannot redefine tenant identifier on child session" );
    }
View Full Code Here

    UnresolvableObjectException.throwIfNull( result, id, persister.getEntityName() );
  }

  public Object immediateLoad(String entityName, Serializable id)
      throws HibernateException {
    throw new SessionException("proxies cannot be fetched by a stateless session");
  }
View Full Code Here

  }

  public void initializeCollection(
      PersistentCollection collection,
          boolean writing) throws HibernateException {
    throw new SessionException("collections cannot be fetched by a stateless session");
  }
View Full Code Here

TOP

Related Classes of org.hibernate.SessionException

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.