1 16 17 package org.springframework.orm.toplink; 18 19 import oracle.toplink.exceptions.TopLinkException; 20 import oracle.toplink.sessions.Session; 21 22 38 public interface SessionFactory { 39 40 53 Session createSession() throws TopLinkException; 54 55 70 Session createManagedClientSession() throws TopLinkException; 71 72 88 Session createTransactionAwareSession() throws TopLinkException; 89 90 93 void close(); 94 95 } 96 | Popular Tags |