1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_51) on Sun Sep 15 17:15:11 CEST 2013 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Configuration (Bitronix Transaction Manager :: Core 2.1.4 API)
</TITLE>
<META NAME="date" CONTENT="2013-09-15">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Configuration (Bitronix Transaction Manager :: Core 2.1.4 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Configuration.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../bitronix/tm/BitronixXid.html" title="class in bitronix.tm"><B>PREV CLASS</B></A>
<A HREF="../../bitronix/tm/TransactionManagerServices.html" title="class in bitronix.tm"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?bitronix/tm/Configuration.html" target="_top"><B>FRAMES</B></A>
<A HREF="Configuration.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
bitronix.tm</FONT>
<BR>
Class Configuration</H2>
<PRE>
<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</A>
<IMG SRC="../../resources/inherit.gif" ALT="extended by "><B>bitronix.tm.Configuration</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../bitronix/tm/utils/Service.html" title="interface in bitronix.tm.utils">Service</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>Configuration</B><DT>extends <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A><DT>implements <A HREF="../../bitronix/tm/utils/Service.html" title="interface in bitronix.tm.utils">Service</A></DL>
</PRE>
<P>
Configuration repository of the transaction manager. You can set configurable values either via the properties file
or by setting properties of the <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm"><CODE>Configuration</CODE></A> object.
Once the transaction manager has started it is not possible to change the configuration: all calls to setters will
throw a <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/IllegalStateException.html?is-external=true" title="class or interface in java.lang"><CODE>IllegalStateException</CODE></A>.
<p>The configuration filename must be specified with the <code>bitronix.tm.configuration</code> system property.</p>
<p>The default settings are good enough for running in a test environment but certainly not for production usage.
Also, all properties are reset to their default value after the transaction manager has shut down.</p>
<p>All those properties can refer to other defined ones or to system properties using the Ant notation:
<code>${some.property.name}</code>.</p>
<P>
<P>
<DL>
<DT><B>Author:</B></DT>
<DD>lorban</DD>
</DL>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected </CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#Configuration()">Configuration</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> byte[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#buildServerIdArray()">buildServerIdArray</A></B>()</CODE>
<BR>
Build the server ID byte array that will be prepended in generated UIDs.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getBackgroundRecoveryInterval()">getBackgroundRecoveryInterval</A></B>()</CODE>
<BR>
<B>Deprecated.</B> <I>superceded by #getBackgroundRecoveryIntervalSeconds().</I></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getBackgroundRecoveryIntervalSeconds()">getBackgroundRecoveryIntervalSeconds</A></B>()</CODE>
<BR>
Interval in seconds at which to run the recovery process in the background.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getDefaultTransactionTimeout()">getDefaultTransactionTimeout</A></B>()</CODE>
<BR>
Default transaction timeout in seconds.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getExceptionAnalyzer()">getExceptionAnalyzer</A></B>()</CODE>
<BR>
Get the exception analyzer implementation.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getGracefulShutdownInterval()">getGracefulShutdownInterval</A></B>()</CODE>
<BR>
Maximum amount of seconds the TM will wait for transactions to get done before aborting them at shutdown time.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getJndiTransactionSynchronizationRegistryName()">getJndiTransactionSynchronizationRegistryName</A></B>()</CODE>
<BR>
Get the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/TransactionSynchronizationRegistry.html?is-external=true" title="class or interface in javax.transaction"><CODE>TransactionSynchronizationRegistry</CODE></A> should be bound under in the
<A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getJndiUserTransactionName()">getJndiUserTransactionName</A></B>()</CODE>
<BR>
Get the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/UserTransaction.html?is-external=true" title="class or interface in javax.transaction"><CODE>UserTransaction</CODE></A> should be bound under in the
<A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getJournal()">getJournal</A></B>()</CODE>
<BR>
Get the journal implementation.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getLogPart1Filename()">getLogPart1Filename</A></B>()</CODE>
<BR>
Get the journal fragment file 1 name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getLogPart2Filename()">getLogPart2Filename</A></B>()</CODE>
<BR>
Get the journal fragment file 2 name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getMaxLogSizeInMb()">getMaxLogSizeInMb</A></B>()</CODE>
<BR>
Maximum size in megabytes of the journal fragments.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getResourceConfigurationFilename()">getResourceConfigurationFilename</A></B>()</CODE>
<BR>
<A HREF="../../bitronix/tm/resource/ResourceLoader.html" title="class in bitronix.tm.resource"><CODE>ResourceLoader</CODE></A> configuration file name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#getServerId()">getServerId</A></B>()</CODE>
<BR>
ASCII ID that must uniquely identify this TM instance.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#isAllowMultipleLrc()">isAllowMultipleLrc</A></B>()</CODE>
<BR>
Should the transaction manager allow enlistment of multiple LRC resources in a single transaction?
This is highly unsafe but could be useful for testing.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#isAsynchronous2Pc()">isAsynchronous2Pc</A></B>()</CODE>
<BR>
Should two phase commit be executed asynchronously? Asynchronous two phase commit can improve performance when
there are many resources enlisted in transactions but is more CPU intensive due to the dynamic thread spawning
requirements.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#isCurrentNodeOnlyRecovery()">isCurrentNodeOnlyRecovery</A></B>()</CODE>
<BR>
Should the recovery process <b>not</b> recover XIDs generated with another JVM unique ID? Setting this property to true
is useful in clustered environments where multiple instances of BTM are running on different nodes.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#isDebugZeroResourceTransaction()">isDebugZeroResourceTransaction</A></B>()</CODE>
<BR>
Should creation and commit call stacks of transactions executed without a single enlisted tracked and logged
or not?</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#isDisableJmx()">isDisableJmx</A></B>()</CODE>
<BR>
Should JMX Mbeans not be registered even if a JMX MBean server is detected?</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#isFilterLogStatus()">isFilterLogStatus</A></B>()</CODE>
<BR>
Should only mandatory logs be written? Enabling this parameter lowers space usage of the fragments but makes
debugging more complex.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#isForceBatchingEnabled()">isForceBatchingEnabled</A></B>()</CODE>
<BR>
Are disk forces batched? Disabling batching can seriously lower the transaction manager's throughput.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#isForcedWriteEnabled()">isForcedWriteEnabled</A></B>()</CODE>
<BR>
Are logs forced to disk? Do not set to false in production since without disk force, integrity is not
guaranteed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#isSkipCorruptedLogs()">isSkipCorruptedLogs</A></B>()</CODE>
<BR>
Should corrupted logs be skipped?</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#isWarnAboutZeroResourceTransaction()">isWarnAboutZeroResourceTransaction</A></B>()</CODE>
<BR>
Should transactions executed without a single enlisted resource result in a warning or not? Most of the time
transactions executed with no enlisted resource reflect a bug or a mis-configuration somewhere.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setAllowMultipleLrc(boolean)">setAllowMultipleLrc</A></B>(boolean allowMultipleLrc)</CODE>
<BR>
Set to true if the transaction manager should allow enlistment of multiple LRC resources in a single transaction.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setAsynchronous2Pc(boolean)">setAsynchronous2Pc</A></B>(boolean asynchronous2Pc)</CODE>
<BR>
Set if two phase commit should be executed asynchronously.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setBackgroundRecoveryInterval(int)">setBackgroundRecoveryInterval</A></B>(int backgroundRecoveryInterval)</CODE>
<BR>
<B>Deprecated.</B> <I>superceded by #setBackgroundRecoveryIntervalSeconds(int).</I></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setBackgroundRecoveryIntervalSeconds(int)">setBackgroundRecoveryIntervalSeconds</A></B>(int backgroundRecoveryIntervalSeconds)</CODE>
<BR>
Set the interval in seconds at which to run the recovery process in the background.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setCurrentNodeOnlyRecovery(boolean)">setCurrentNodeOnlyRecovery</A></B>(boolean currentNodeOnlyRecovery)</CODE>
<BR>
Set to true if recovery should filter out recovered XIDs that do not contain this JVM's unique ID, false otherwise.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setDebugZeroResourceTransaction(boolean)">setDebugZeroResourceTransaction</A></B>(boolean debugZeroResourceTransaction)</CODE>
<BR>
Set if creation and commit call stacks of transactions executed without a single enlisted resource should be
tracked and logged.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setDefaultTransactionTimeout(int)">setDefaultTransactionTimeout</A></B>(int defaultTransactionTimeout)</CODE>
<BR>
Set the default transaction timeout in seconds.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setDisableJmx(boolean)">setDisableJmx</A></B>(boolean disableJmx)</CODE>
<BR>
Set to true if JMX Mbeans should not be registered even if a JMX MBean server is detected.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setExceptionAnalyzer(java.lang.String)">setExceptionAnalyzer</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> exceptionAnalyzer)</CODE>
<BR>
Set the exception analyzer implementation.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setFilterLogStatus(boolean)">setFilterLogStatus</A></B>(boolean filterLogStatus)</CODE>
<BR>
Set if only mandatory logs should be written.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setForceBatchingEnabled(boolean)">setForceBatchingEnabled</A></B>(boolean forceBatchingEnabled)</CODE>
<BR>
Set if disk forces are batched.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setForcedWriteEnabled(boolean)">setForcedWriteEnabled</A></B>(boolean forcedWriteEnabled)</CODE>
<BR>
Set if logs are forced to disk.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setGracefulShutdownInterval(int)">setGracefulShutdownInterval</A></B>(int gracefulShutdownInterval)</CODE>
<BR>
Set the maximum amount of seconds the TM will wait for transactions to get done before aborting them at shutdown
time.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setJndiTransactionSynchronizationRegistryName(java.lang.String)">setJndiTransactionSynchronizationRegistryName</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> jndiTransactionSynchronizationRegistryName)</CODE>
<BR>
Set the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/TransactionSynchronizationRegistry.html?is-external=true" title="class or interface in javax.transaction"><CODE>TransactionSynchronizationRegistry</CODE></A> should be bound under in the
<A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setJndiUserTransactionName(java.lang.String)">setJndiUserTransactionName</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> jndiUserTransactionName)</CODE>
<BR>
Set the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/UserTransaction.html?is-external=true" title="class or interface in javax.transaction"><CODE>UserTransaction</CODE></A> should be bound under in the
<A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setJournal(java.lang.String)">setJournal</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> journal)</CODE>
<BR>
Set the journal name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setLogPart1Filename(java.lang.String)">setLogPart1Filename</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> logPart1Filename)</CODE>
<BR>
Set the journal fragment file 1 name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setLogPart2Filename(java.lang.String)">setLogPart2Filename</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> logPart2Filename)</CODE>
<BR>
Set the journal fragment file 2 name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setMaxLogSizeInMb(int)">setMaxLogSizeInMb</A></B>(int maxLogSizeInMb)</CODE>
<BR>
Set the Maximum size in megabytes of the journal fragments.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setResourceConfigurationFilename(java.lang.String)">setResourceConfigurationFilename</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> resourceConfigurationFilename)</CODE>
<BR>
Set the <A HREF="../../bitronix/tm/resource/ResourceLoader.html" title="class in bitronix.tm.resource"><CODE>ResourceLoader</CODE></A> configuration file name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setServerId(java.lang.String)">setServerId</A></B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> serverId)</CODE>
<BR>
Set the ASCII ID that must uniquely identify this TM instance.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setSkipCorruptedLogs(boolean)">setSkipCorruptedLogs</A></B>(boolean skipCorruptedLogs)</CODE>
<BR>
Set if corrupted logs should be skipped.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#setWarnAboutZeroResourceTransaction(boolean)">setWarnAboutZeroResourceTransaction</A></B>(boolean warnAboutZeroResourceTransaction)</CODE>
<BR>
Set if transactions executed without a single enlisted resource should result in a warning or not.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#shutdown()">shutdown</A></B>()</CODE>
<BR>
Shutdown the service and free all held resources.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../bitronix/tm/Configuration.html#toString()">toString</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="Configuration()"><!-- --></A><H3>
Configuration</H3>
<PRE>
protected <B>Configuration</B>()</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="getServerId()"><!-- --></A><H3>
getServerId</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getServerId</B>()</PRE>
<DL>
<DD>ASCII ID that must uniquely identify this TM instance. It must not exceed 51 characters or it will be truncated.
<p>Property name:<br/><b>bitronix.tm.serverId -</b> <i>(defaults to server's IP address but that's unsafe for
production use)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the unique ID of this TM instance.</DL>
</DD>
</DL>
<HR>
<A NAME="setServerId(java.lang.String)"><!-- --></A><H3>
setServerId</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setServerId</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> serverId)</PRE>
<DL>
<DD>Set the ASCII ID that must uniquely identify this TM instance. It must not exceed 51 characters or it will be
truncated.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>serverId</CODE> - the unique ID of this TM instance.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getServerId()"><CODE>getServerId()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getLogPart1Filename()"><!-- --></A><H3>
getLogPart1Filename</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getLogPart1Filename</B>()</PRE>
<DL>
<DD>Get the journal fragment file 1 name.
<p>Property name:<br/><b>bitronix.tm.journal.disk.logPart1Filename -</b> <i>(defaults to btm1.tlog)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the journal fragment file 1 name.</DL>
</DD>
</DL>
<HR>
<A NAME="setLogPart1Filename(java.lang.String)"><!-- --></A><H3>
setLogPart1Filename</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setLogPart1Filename</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> logPart1Filename)</PRE>
<DL>
<DD>Set the journal fragment file 1 name.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>logPart1Filename</CODE> - the journal fragment file 1 name.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getLogPart1Filename()"><CODE>getLogPart1Filename()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getLogPart2Filename()"><!-- --></A><H3>
getLogPart2Filename</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getLogPart2Filename</B>()</PRE>
<DL>
<DD>Get the journal fragment file 2 name.
<p>Property name:<br/><b>bitronix.tm.journal.disk.logPart2Filename -</b> <i>(defaults to btm2.tlog)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the journal fragment file 2 name.</DL>
</DD>
</DL>
<HR>
<A NAME="setLogPart2Filename(java.lang.String)"><!-- --></A><H3>
setLogPart2Filename</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setLogPart2Filename</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> logPart2Filename)</PRE>
<DL>
<DD>Set the journal fragment file 2 name.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>logPart2Filename</CODE> - the journal fragment file 2 name.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getLogPart2Filename()"><CODE>getLogPart2Filename()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="isForcedWriteEnabled()"><!-- --></A><H3>
isForcedWriteEnabled</H3>
<PRE>
public boolean <B>isForcedWriteEnabled</B>()</PRE>
<DL>
<DD>Are logs forced to disk? Do not set to false in production since without disk force, integrity is not
guaranteed.
<p>Property name:<br/><b>bitronix.tm.journal.disk.forcedWriteEnabled -</b> <i>(defaults to true)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if logs are forced to disk, false otherwise.</DL>
</DD>
</DL>
<HR>
<A NAME="setForcedWriteEnabled(boolean)"><!-- --></A><H3>
setForcedWriteEnabled</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setForcedWriteEnabled</B>(boolean forcedWriteEnabled)</PRE>
<DL>
<DD>Set if logs are forced to disk. Do not set to false in production since without disk force, integrity is not
guaranteed.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>forcedWriteEnabled</CODE> - true if logs should be forced to disk, false otherwise.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#isForcedWriteEnabled()"><CODE>isForcedWriteEnabled()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="isForceBatchingEnabled()"><!-- --></A><H3>
isForceBatchingEnabled</H3>
<PRE>
public boolean <B>isForceBatchingEnabled</B>()</PRE>
<DL>
<DD>Are disk forces batched? Disabling batching can seriously lower the transaction manager's throughput.
<p>Property name:<br/><b>bitronix.tm.journal.disk.forceBatchingEnabled -</b> <i>(defaults to true)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if disk forces are batched, false otherwise.</DL>
</DD>
</DL>
<HR>
<A NAME="setForceBatchingEnabled(boolean)"><!-- --></A><H3>
setForceBatchingEnabled</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setForceBatchingEnabled</B>(boolean forceBatchingEnabled)</PRE>
<DL>
<DD>Set if disk forces are batched. Disabling batching can seriously lower the transaction manager's throughput.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>forceBatchingEnabled</CODE> - true if disk forces are batched, false otherwise.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#isForceBatchingEnabled()"><CODE>isForceBatchingEnabled()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getMaxLogSizeInMb()"><!-- --></A><H3>
getMaxLogSizeInMb</H3>
<PRE>
public int <B>getMaxLogSizeInMb</B>()</PRE>
<DL>
<DD>Maximum size in megabytes of the journal fragments. Larger logs allow transactions to stay longer in-doubt but
the TM pauses longer when a fragment is full.
<p>Property name:<br/><b>bitronix.tm.journal.disk.maxLogSize -</b> <i>(defaults to 2)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the maximum size in megabytes of the journal fragments.</DL>
</DD>
</DL>
<HR>
<A NAME="setMaxLogSizeInMb(int)"><!-- --></A><H3>
setMaxLogSizeInMb</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setMaxLogSizeInMb</B>(int maxLogSizeInMb)</PRE>
<DL>
<DD>Set the Maximum size in megabytes of the journal fragments. Larger logs allow transactions to stay longer
in-doubt but the TM pauses longer when a fragment is full.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>maxLogSizeInMb</CODE> - the maximum size in megabytes of the journal fragments.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getMaxLogSizeInMb()"><CODE>getMaxLogSizeInMb()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="isFilterLogStatus()"><!-- --></A><H3>
isFilterLogStatus</H3>
<PRE>
public boolean <B>isFilterLogStatus</B>()</PRE>
<DL>
<DD>Should only mandatory logs be written? Enabling this parameter lowers space usage of the fragments but makes
debugging more complex.
<p>Property name:<br/><b>bitronix.tm.journal.disk.filterLogStatus -</b> <i>(defaults to false)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if only mandatory logs should be written.</DL>
</DD>
</DL>
<HR>
<A NAME="setFilterLogStatus(boolean)"><!-- --></A><H3>
setFilterLogStatus</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setFilterLogStatus</B>(boolean filterLogStatus)</PRE>
<DL>
<DD>Set if only mandatory logs should be written. Enabling this parameter lowers space usage of the fragments but
makes debugging more complex.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>filterLogStatus</CODE> - true if only mandatory logs should be written.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#isFilterLogStatus()"><CODE>isFilterLogStatus()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="isSkipCorruptedLogs()"><!-- --></A><H3>
isSkipCorruptedLogs</H3>
<PRE>
public boolean <B>isSkipCorruptedLogs</B>()</PRE>
<DL>
<DD>Should corrupted logs be skipped?
<p>Property name:<br/><b>bitronix.tm.journal.disk.skipCorruptedLogs -</b> <i>(defaults to false)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if corrupted logs should be skipped.</DL>
</DD>
</DL>
<HR>
<A NAME="setSkipCorruptedLogs(boolean)"><!-- --></A><H3>
setSkipCorruptedLogs</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setSkipCorruptedLogs</B>(boolean skipCorruptedLogs)</PRE>
<DL>
<DD>Set if corrupted logs should be skipped.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>skipCorruptedLogs</CODE> - true if corrupted logs should be skipped.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#isSkipCorruptedLogs()"><CODE>isSkipCorruptedLogs()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="isAsynchronous2Pc()"><!-- --></A><H3>
isAsynchronous2Pc</H3>
<PRE>
public boolean <B>isAsynchronous2Pc</B>()</PRE>
<DL>
<DD>Should two phase commit be executed asynchronously? Asynchronous two phase commit can improve performance when
there are many resources enlisted in transactions but is more CPU intensive due to the dynamic thread spawning
requirements. It also makes debugging more complex.
<p>Property name:<br/><b>bitronix.tm.2pc.async -</b> <i>(defaults to false)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if two phase commit should be executed asynchronously.</DL>
</DD>
</DL>
<HR>
<A NAME="setAsynchronous2Pc(boolean)"><!-- --></A><H3>
setAsynchronous2Pc</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setAsynchronous2Pc</B>(boolean asynchronous2Pc)</PRE>
<DL>
<DD>Set if two phase commit should be executed asynchronously. Asynchronous two phase commit can improve performance
when there are many resources enlisted in transactions but is more CPU intensive due to the dynamic thread
spawning requirements. It also makes debugging more complex.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>asynchronous2Pc</CODE> - true if two phase commit should be executed asynchronously.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#isAsynchronous2Pc()"><CODE>isAsynchronous2Pc()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="isWarnAboutZeroResourceTransaction()"><!-- --></A><H3>
isWarnAboutZeroResourceTransaction</H3>
<PRE>
public boolean <B>isWarnAboutZeroResourceTransaction</B>()</PRE>
<DL>
<DD>Should transactions executed without a single enlisted resource result in a warning or not? Most of the time
transactions executed with no enlisted resource reflect a bug or a mis-configuration somewhere.
<p>Property name:<br/><b>bitronix.tm.2pc.warnAboutZeroResourceTransactions -</b> <i>(defaults to true)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if transactions executed without a single enlisted resource should result in a warning.</DL>
</DD>
</DL>
<HR>
<A NAME="setWarnAboutZeroResourceTransaction(boolean)"><!-- --></A><H3>
setWarnAboutZeroResourceTransaction</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setWarnAboutZeroResourceTransaction</B>(boolean warnAboutZeroResourceTransaction)</PRE>
<DL>
<DD>Set if transactions executed without a single enlisted resource should result in a warning or not. Most of the
time transactions executed with no enlisted resource reflect a bug or a mis-configuration somewhere.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>warnAboutZeroResourceTransaction</CODE> - true if transactions executed without a single enlisted resource should
result in a warning.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#isWarnAboutZeroResourceTransaction()"><CODE>isWarnAboutZeroResourceTransaction()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="isDebugZeroResourceTransaction()"><!-- --></A><H3>
isDebugZeroResourceTransaction</H3>
<PRE>
public boolean <B>isDebugZeroResourceTransaction</B>()</PRE>
<DL>
<DD>Should creation and commit call stacks of transactions executed without a single enlisted tracked and logged
or not?
<p>Property name:<br/><b>bitronix.tm.2pc.debugZeroResourceTransactions -</b> <i>(defaults to false)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if creation and commit call stacks of transactions executed without a single enlisted resource
should be tracked and logged.</DL>
</DD>
</DL>
<HR>
<A NAME="setDebugZeroResourceTransaction(boolean)"><!-- --></A><H3>
setDebugZeroResourceTransaction</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setDebugZeroResourceTransaction</B>(boolean debugZeroResourceTransaction)</PRE>
<DL>
<DD>Set if creation and commit call stacks of transactions executed without a single enlisted resource should be
tracked and logged.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>debugZeroResourceTransaction</CODE> - true if the creation and commit call stacks of transaction executed without
a single enlisted resource should be tracked and logged.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#isDebugZeroResourceTransaction()"><CODE>isDebugZeroResourceTransaction()</CODE></A>,
<A HREF="../../bitronix/tm/Configuration.html#isWarnAboutZeroResourceTransaction()"><CODE>isWarnAboutZeroResourceTransaction()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getDefaultTransactionTimeout()"><!-- --></A><H3>
getDefaultTransactionTimeout</H3>
<PRE>
public int <B>getDefaultTransactionTimeout</B>()</PRE>
<DL>
<DD>Default transaction timeout in seconds.
<p>Property name:<br/><b>bitronix.tm.timer.defaultTransactionTimeout -</b> <i>(defaults to 60)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the default transaction timeout in seconds.</DL>
</DD>
</DL>
<HR>
<A NAME="setDefaultTransactionTimeout(int)"><!-- --></A><H3>
setDefaultTransactionTimeout</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setDefaultTransactionTimeout</B>(int defaultTransactionTimeout)</PRE>
<DL>
<DD>Set the default transaction timeout in seconds.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>defaultTransactionTimeout</CODE> - the default transaction timeout in seconds.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getDefaultTransactionTimeout()"><CODE>getDefaultTransactionTimeout()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getGracefulShutdownInterval()"><!-- --></A><H3>
getGracefulShutdownInterval</H3>
<PRE>
public int <B>getGracefulShutdownInterval</B>()</PRE>
<DL>
<DD>Maximum amount of seconds the TM will wait for transactions to get done before aborting them at shutdown time.
<p>Property name:<br/><b>bitronix.tm.timer.gracefulShutdownInterval -</b> <i>(defaults to 60)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the maximum amount of time in seconds.</DL>
</DD>
</DL>
<HR>
<A NAME="setGracefulShutdownInterval(int)"><!-- --></A><H3>
setGracefulShutdownInterval</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setGracefulShutdownInterval</B>(int gracefulShutdownInterval)</PRE>
<DL>
<DD>Set the maximum amount of seconds the TM will wait for transactions to get done before aborting them at shutdown
time.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>gracefulShutdownInterval</CODE> - the maximum amount of time in seconds.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getGracefulShutdownInterval()"><CODE>getGracefulShutdownInterval()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getBackgroundRecoveryInterval()"><!-- --></A><H3>
getBackgroundRecoveryInterval</H3>
<PRE>
public int <B>getBackgroundRecoveryInterval</B>()</PRE>
<DL>
<DD><B>Deprecated.</B> <I>superceded by #getBackgroundRecoveryIntervalSeconds().</I>
<P>
<DD>Interval in minutes at which to run the recovery process in the background. Disabled when set to 0.
<p>Property name:<br/><b>bitronix.tm.timer.backgroundRecoveryInterval -</b> <i>(defaults to 0)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the interval in minutes.</DL>
</DD>
</DL>
<HR>
<A NAME="setBackgroundRecoveryInterval(int)"><!-- --></A><H3>
setBackgroundRecoveryInterval</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setBackgroundRecoveryInterval</B>(int backgroundRecoveryInterval)</PRE>
<DL>
<DD><B>Deprecated.</B> <I>superceded by #setBackgroundRecoveryIntervalSeconds(int).</I>
<P>
<DD>Set the interval in minutes at which to run the recovery process in the background. Disabled when set to 0.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>backgroundRecoveryInterval</CODE> - the interval in minutes.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getBackgroundRecoveryInterval()"><CODE>getBackgroundRecoveryInterval()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getBackgroundRecoveryIntervalSeconds()"><!-- --></A><H3>
getBackgroundRecoveryIntervalSeconds</H3>
<PRE>
public int <B>getBackgroundRecoveryIntervalSeconds</B>()</PRE>
<DL>
<DD>Interval in seconds at which to run the recovery process in the background. Disabled when set to 0.
<p>Property name:<br/><b>bitronix.tm.timer.backgroundRecoveryIntervalSeconds -</b> <i>(defaults to 60)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the interval in seconds.</DL>
</DD>
</DL>
<HR>
<A NAME="setBackgroundRecoveryIntervalSeconds(int)"><!-- --></A><H3>
setBackgroundRecoveryIntervalSeconds</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setBackgroundRecoveryIntervalSeconds</B>(int backgroundRecoveryIntervalSeconds)</PRE>
<DL>
<DD>Set the interval in seconds at which to run the recovery process in the background. Disabled when set to 0.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>backgroundRecoveryIntervalSeconds</CODE> - the interval in minutes.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getBackgroundRecoveryIntervalSeconds()"><CODE>getBackgroundRecoveryIntervalSeconds()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="isDisableJmx()"><!-- --></A><H3>
isDisableJmx</H3>
<PRE>
public boolean <B>isDisableJmx</B>()</PRE>
<DL>
<DD>Should JMX Mbeans not be registered even if a JMX MBean server is detected?
<p>Property name:<br/><b>bitronix.tm.disableJmx -</b> <i>(defaults to false)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if JMX MBeans should never be registered.</DL>
</DD>
</DL>
<HR>
<A NAME="setDisableJmx(boolean)"><!-- --></A><H3>
setDisableJmx</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setDisableJmx</B>(boolean disableJmx)</PRE>
<DL>
<DD>Set to true if JMX Mbeans should not be registered even if a JMX MBean server is detected.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>disableJmx</CODE> - true if JMX MBeans should never be registered.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#isDisableJmx()"><CODE>isDisableJmx()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getJndiUserTransactionName()"><!-- --></A><H3>
getJndiUserTransactionName</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getJndiUserTransactionName</B>()</PRE>
<DL>
<DD>Get the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/UserTransaction.html?is-external=true" title="class or interface in javax.transaction"><CODE>UserTransaction</CODE></A> should be bound under in the
<A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/UserTransaction.html?is-external=true" title="class or interface in javax.transaction"><CODE>UserTransaction</CODE></A> should
be bound under in the <A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.</DL>
</DD>
</DL>
<HR>
<A NAME="setJndiUserTransactionName(java.lang.String)"><!-- --></A><H3>
setJndiUserTransactionName</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setJndiUserTransactionName</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> jndiUserTransactionName)</PRE>
<DL>
<DD>Set the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/UserTransaction.html?is-external=true" title="class or interface in javax.transaction"><CODE>UserTransaction</CODE></A> should be bound under in the
<A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>jndiUserTransactionName</CODE> - the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/UserTransaction.html?is-external=true" title="class or interface in javax.transaction"><CODE>UserTransaction</CODE></A> should
be bound under in the <A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getJndiUserTransactionName()"><CODE>getJndiUserTransactionName()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getJndiTransactionSynchronizationRegistryName()"><!-- --></A><H3>
getJndiTransactionSynchronizationRegistryName</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getJndiTransactionSynchronizationRegistryName</B>()</PRE>
<DL>
<DD>Get the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/TransactionSynchronizationRegistry.html?is-external=true" title="class or interface in javax.transaction"><CODE>TransactionSynchronizationRegistry</CODE></A> should be bound under in the
<A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/TransactionSynchronizationRegistry.html?is-external=true" title="class or interface in javax.transaction"><CODE>TransactionSynchronizationRegistry</CODE></A> should
be bound under in the <A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.</DL>
</DD>
</DL>
<HR>
<A NAME="setJndiTransactionSynchronizationRegistryName(java.lang.String)"><!-- --></A><H3>
setJndiTransactionSynchronizationRegistryName</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setJndiTransactionSynchronizationRegistryName</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> jndiTransactionSynchronizationRegistryName)</PRE>
<DL>
<DD>Set the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/TransactionSynchronizationRegistry.html?is-external=true" title="class or interface in javax.transaction"><CODE>TransactionSynchronizationRegistry</CODE></A> should be bound under in the
<A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>jndiTransactionSynchronizationRegistryName</CODE> - the name the <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/javax/transaction/TransactionSynchronizationRegistry.html?is-external=true" title="class or interface in javax.transaction"><CODE>TransactionSynchronizationRegistry</CODE></A> should
be bound under in the <A HREF="../../bitronix/tm/jndi/BitronixContext.html" title="class in bitronix.tm.jndi"><CODE>BitronixContext</CODE></A>.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getJndiUserTransactionName()"><CODE>getJndiUserTransactionName()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getJournal()"><!-- --></A><H3>
getJournal</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getJournal</B>()</PRE>
<DL>
<DD>Get the journal implementation. Can be <code>disk</code>, <code>null</code> or a class name.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the journal name.</DL>
</DD>
</DL>
<HR>
<A NAME="setJournal(java.lang.String)"><!-- --></A><H3>
setJournal</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setJournal</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> journal)</PRE>
<DL>
<DD>Set the journal name. Can be <code>disk</code>, <code>null</code> or a class name.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>journal</CODE> - the journal name.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getJournal()"><CODE>getJournal()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getExceptionAnalyzer()"><!-- --></A><H3>
getExceptionAnalyzer</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getExceptionAnalyzer</B>()</PRE>
<DL>
<DD>Get the exception analyzer implementation. Can be <code>null</code> for the default one or a class name.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the exception analyzer name.</DL>
</DD>
</DL>
<HR>
<A NAME="setExceptionAnalyzer(java.lang.String)"><!-- --></A><H3>
setExceptionAnalyzer</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setExceptionAnalyzer</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> exceptionAnalyzer)</PRE>
<DL>
<DD>Set the exception analyzer implementation. Can be <code>null</code> for the default one or a class name.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>exceptionAnalyzer</CODE> - the exception analyzer name.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getExceptionAnalyzer()"><CODE>getExceptionAnalyzer()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="isCurrentNodeOnlyRecovery()"><!-- --></A><H3>
isCurrentNodeOnlyRecovery</H3>
<PRE>
public boolean <B>isCurrentNodeOnlyRecovery</B>()</PRE>
<DL>
<DD>Should the recovery process <b>not</b> recover XIDs generated with another JVM unique ID? Setting this property to true
is useful in clustered environments where multiple instances of BTM are running on different nodes.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if recovery should filter out recovered XIDs that do not contain this JVM's unique ID, false otherwise.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getServerId()"><CODE>contains the value used as the JVM unique ID.</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="setCurrentNodeOnlyRecovery(boolean)"><!-- --></A><H3>
setCurrentNodeOnlyRecovery</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setCurrentNodeOnlyRecovery</B>(boolean currentNodeOnlyRecovery)</PRE>
<DL>
<DD>Set to true if recovery should filter out recovered XIDs that do not contain this JVM's unique ID, false otherwise.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>currentNodeOnlyRecovery</CODE> - true if recovery should filter out recovered XIDs that do not contain this JVM's unique ID, false otherwise.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#isCurrentNodeOnlyRecovery()"><CODE>isCurrentNodeOnlyRecovery()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="isAllowMultipleLrc()"><!-- --></A><H3>
isAllowMultipleLrc</H3>
<PRE>
public boolean <B>isAllowMultipleLrc</B>()</PRE>
<DL>
<DD>Should the transaction manager allow enlistment of multiple LRC resources in a single transaction?
This is highly unsafe but could be useful for testing.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if the transaction manager should allow enlistment of multiple LRC resources in a single transaction, false otherwise.</DL>
</DD>
</DL>
<HR>
<A NAME="setAllowMultipleLrc(boolean)"><!-- --></A><H3>
setAllowMultipleLrc</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setAllowMultipleLrc</B>(boolean allowMultipleLrc)</PRE>
<DL>
<DD>Set to true if the transaction manager should allow enlistment of multiple LRC resources in a single transaction.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>allowMultipleLrc</CODE> - true if the transaction manager should allow enlistment of multiple LRC resources in a single transaction, false otherwise.
<DT><B>Returns:</B><DD>this</DL>
</DD>
</DL>
<HR>
<A NAME="getResourceConfigurationFilename()"><!-- --></A><H3>
getResourceConfigurationFilename</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>getResourceConfigurationFilename</B>()</PRE>
<DL>
<DD><A HREF="../../bitronix/tm/resource/ResourceLoader.html" title="class in bitronix.tm.resource"><CODE>ResourceLoader</CODE></A> configuration file name. <A HREF="../../bitronix/tm/resource/ResourceLoader.html" title="class in bitronix.tm.resource"><CODE>ResourceLoader</CODE></A>
will be disabled if this value is null.
<p>Property name:<br/><b>bitronix.tm.resource.configuration -</b> <i>(defaults to null)</i></p>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the filename of the resources configuration file or null if not configured.</DL>
</DD>
</DL>
<HR>
<A NAME="setResourceConfigurationFilename(java.lang.String)"><!-- --></A><H3>
setResourceConfigurationFilename</H3>
<PRE>
public <A HREF="../../bitronix/tm/Configuration.html" title="class in bitronix.tm">Configuration</A> <B>setResourceConfigurationFilename</B>(<A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> resourceConfigurationFilename)</PRE>
<DL>
<DD>Set the <A HREF="../../bitronix/tm/resource/ResourceLoader.html" title="class in bitronix.tm.resource"><CODE>ResourceLoader</CODE></A> configuration file name.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>resourceConfigurationFilename</CODE> - the filename of the resources configuration file or null you do not want to
use the <A HREF="../../bitronix/tm/resource/ResourceLoader.html" title="class in bitronix.tm.resource"><CODE>ResourceLoader</CODE></A>.
<DT><B>Returns:</B><DD>this.<DT><B>See Also:</B><DD><A HREF="../../bitronix/tm/Configuration.html#getResourceConfigurationFilename()"><CODE>getResourceConfigurationFilename()</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="buildServerIdArray()"><!-- --></A><H3>
buildServerIdArray</H3>
<PRE>
public byte[] <B>buildServerIdArray</B>()</PRE>
<DL>
<DD>Build the server ID byte array that will be prepended in generated UIDs. Once built, the value is cached for
the duration of the JVM lifespan.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the server ID.</DL>
</DD>
</DL>
<HR>
<A NAME="shutdown()"><!-- --></A><H3>
shutdown</H3>
<PRE>
public void <B>shutdown</B>()</PRE>
<DL>
<DD><B>Description copied from interface: <CODE><A HREF="../../bitronix/tm/utils/Service.html#shutdown()">Service</A></CODE></B></DD>
<DD>Shutdown the service and free all held resources.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../bitronix/tm/utils/Service.html#shutdown()">shutdown</A></CODE> in interface <CODE><A HREF="../../bitronix/tm/utils/Service.html" title="interface in bitronix.tm.utils">Service</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="toString()"><!-- --></A><H3>
toString</H3>
<PRE>
public <A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>toString</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</A></CODE> in class <CODE><A HREF="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Configuration.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../bitronix/tm/BitronixXid.html" title="class in bitronix.tm"><B>PREV CLASS</B></A>
<A HREF="../../bitronix/tm/TransactionManagerServices.html" title="class in bitronix.tm"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?bitronix/tm/Configuration.html" target="_top"><B>FRAMES</B></A>
<A HREF="Configuration.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2006-2013 <a href="http://bitronix.be/">Bitronix Software</a>. All Rights Reserved.
</BODY>
</HTML>
|