Uses of Class
org.ujorm.orm.Session

Packages that use Session
org.ujorm.implementation.orm   
org.ujorm.orm The ORM support. 
org.ujorm.orm.metaModel   
org.ujorm.orm.utility   
 

Uses of Session in org.ujorm.implementation.orm
 

Methods in org.ujorm.implementation.orm that return Session
 Session OrmTable.readSession()
          Read a session
 Session OrmTableSynchronized.readSession()
          Read a session
 

Methods in org.ujorm.implementation.orm with parameters of type Session
 void OrmTable.writeSession(Session session)
          Write a session
 void OrmTableSynchronized.writeSession(Session session)
          Write a session
 

Uses of Session in org.ujorm.orm
 

Methods in org.ujorm.orm that return Session
 Session OrmHandler.createSession()
          Create new session
 Session OrmHandler.getDefaultSession()
          Get a default Session of the OrmHandler.
 Session OrmHandler.getSession()
          Deprecated. Method was replaced by the name OrmHandler.getDefaultSession()
 Session Query.getSession()
          Session
 Session Transaction.getSession()
          Get the current Session.
static Session Session.newClosedSession(OrmHandler handler)
          Create the closed session
 Session OrmUjo.readSession()
          Read an ORM session where the session is an transient key.
 

Methods in org.ujorm.orm with parameters of type Session
<T> T
DbProcedure.call(Session session)
          Call the procedure and return a value of the first Property.
<T> T
DbProcedure.call(Session session, Key<UJO,T> result)
          Call the procedure and return a type-safe value of the required Property
 long UjoSequencer.nextValue(Session session)
          Returns the next sequence value by a synchronized method.
 long NativeDbSequencer.nextValue(Session session)
          Returns the next sequence value by a synchronized method.
 void InitializationBatch.run(Session session)
          Inicializaton batch implementation can be called after building a meta-model.
 Query<UJO> Query.setSession(Session session)
          An open session must be assigned before executing a database request.
 void OrmUjo.writeSession(Session session)
          Write an ORM session.
 

Constructors in org.ujorm.orm with parameters of type Session
Query(MetaTable table, Criterion<UJO> criterion, Session session)
          Create new ORM query.
 

Uses of Session in org.ujorm.orm.metaModel
 

Methods in org.ujorm.orm.metaModel that return Session
 Session MetaDatabase.getDefaultSession()
          Returns a default handler session.
 

Methods in org.ujorm.orm.metaModel with parameters of type Session
 boolean MetaPKey.assignPrimaryKey(OrmUjo bo, Session session)
          Assign a PK from framework in case the PK generator is type of MEMO_SEQUENCE.
 void MetaTable.assignPrimaryKey(OrmUjo bo, Session session)
          Assign a PK from framework
 void MetaDbServiceEx.checkDBStructure(Session session, boolean repairDB)
           
 void MetaDbService.create(MetaDatabase metaDatabase, Session session)
          Create DB
 void MetaDatabase.create(Session session)
          Create DB
protected  long MetaPKey.nextValue(Session session)
          Generate a next value
 

Uses of Session in org.ujorm.orm.utility
 

Methods in org.ujorm.orm.utility with parameters of type Session
 boolean OrmTools.reload(OrmUjo ujo, Session session)
          Reload values of the persistent object.
 



Copyright 2013, Pavel Ponec