• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mybatis / ibatis-2 / #341

08 Sep 2023 11:16PM UTC coverage: 64.938% (+0.03%) from 64.913%
#341

push

github

web-flow
Merge pull request #183 from hazendaz/master

fixes #174, update GHA, maven wrapper, fix EOL markers, do not use star imports

5047 of 7772 relevant lines covered (64.94%)

0.65 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/ibatis/sqlmap/engine/transaction/jta/JtaTransactionConfig.java
1
/*
2
 * Copyright 2004-2023 the original author or authors.
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 *    https://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16
package com.ibatis.sqlmap.engine.transaction.jta;
17

18
import com.ibatis.sqlmap.client.SqlMapException;
19
import com.ibatis.sqlmap.engine.transaction.BaseTransactionConfig;
20
import com.ibatis.sqlmap.engine.transaction.Transaction;
21
import com.ibatis.sqlmap.engine.transaction.TransactionException;
22

23
import java.sql.SQLException;
24
import java.util.Properties;
25

26
import javax.naming.InitialContext;
27
import javax.naming.NamingException;
28
import javax.transaction.UserTransaction;
29

30
/**
31
 * The Class JtaTransactionConfig.
32
 */
33
public class JtaTransactionConfig extends BaseTransactionConfig {
×
34

35
  /** The user transaction. */
36
  private UserTransaction userTransaction;
37

38
  public Transaction newTransaction(int transactionIsolation) throws SQLException, TransactionException {
39
    return new JtaTransaction(userTransaction, dataSource, transactionIsolation);
×
40
  }
41

42
  /**
43
   * Gets the user transaction.
44
   *
45
   * @return the user transaction
46
   */
47
  public UserTransaction getUserTransaction() {
48
    return userTransaction;
×
49
  }
50

51
  /**
52
   * Sets the user transaction.
53
   *
54
   * @param userTransaction
55
   *          the new user transaction
56
   */
57
  public void setUserTransaction(UserTransaction userTransaction) {
58
    this.userTransaction = userTransaction;
×
59
  }
×
60

61
  public void setProperties(Properties props) throws SQLException, TransactionException {
62
    String utxName = null;
×
63
    try {
64
      utxName = (String) props.get("UserTransaction");
×
65
      InitialContext initCtx = new InitialContext();
×
66
      userTransaction = (UserTransaction) initCtx.lookup(utxName);
×
67
    } catch (NamingException e) {
×
68
      throw new SqlMapException(
×
69
          "Error initializing JtaTransactionConfig while looking up UserTransaction (" + utxName + ").  Cause: " + e);
70
    }
×
71
  }
×
72

73
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc