1 | static final class TransactionManagerLookupAdaptor implements org.jboss.cache.TransactionManagerLookup {↵ | | 1 | static final class TransactionManagerLookupAdaptor implements org.jboss.cache.TransactionManagerLookup {↵
|
2 | private final TransactionManagerLookup tml;↵ | | 2 | private final TransactionManagerLookup tml;↵
|
3 | private final Properties props;↵ | | 3 | private final Properties props;↵
|
|
4 | TransactionManagerLookupAdaptor(TransactionManagerLookup tml, Properties props) {↵ | | 4 | TransactionManagerLookupAdaptor(TransactionManagerLookup tml, Properties props) {↵
|
5 | this.tml = tml;↵ | | 5 | this.tml=tml;↵
|
6 | this.props = props;↵ | | 6 | this.props=props;↵
|
7 | }↵ | | 7 | }↵
|
|
8 | public TransactionManager getTransactionManager() throws Exception {↵ | | 8 | public TransactionManager getTransactionManager() throws Exception {↵
|
9 | return tml.getTransactionManager( props );↵ | | 9 | return tml.getTransactionManager(props);↵
|
10 | | | 10 |
|