List of usage examples for org.hibernate Session interface-usage
From source file org.opentaps.foundation.entity.hibernate.Session.java
/**
* Opentaps Session which wraps the org.hibernate.Session.
* With the following differences:
* <ul>
* <li>when the session is closed, the JDBC connection is also automatically
* closed</li>
From source file org.picocontainer.persistence.hibernate.AbstractSessionDecorator.java
/** * Abstract session decorator */ public abstract class AbstractSessionDecorator implements Session { /**
From source file solidstack.query.hibernate.StatelessSessionAdapter.java
/** * Adapts a Hibernate {@link StatelessSession} to a normal {@link Session}. * * @author Ren de Bloois */ @SuppressWarnings("rawtypes")
From source file us.mn.state.health.lims.hibernate.ElisHibernateSession.java
public class ElisHibernateSession implements Session { private Session session; public ElisHibernateSession(Session session) { this.session = session; }