1 21 package oracle.toplink.essentials.ejb.cmp3; 23 24 import oracle.toplink.essentials.sessions.*; 25 import oracle.toplink.essentials.expressions.Expression; 26 import oracle.toplink.essentials.threetier.ServerSession; 27 28 34 37 38 public interface EntityManager extends javax.persistence.EntityManager { 39 40 46 public Session getActiveSession(); 47 48 51 public ServerSession getServerSession(); 52 53 57 public UnitOfWork getUnitOfWork(); 58 59 62 public Session getSession(); 63 64 67 public javax.persistence.Query createQuery(Expression expression, Class resultType); 68 69 70 } 71 | Popular Tags |