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 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Fri Jan 14 17:00:44 PST 2000 -->
<TITLE>
: Index
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" ID="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="overview-summary.html"><FONT ID="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <FONT ID="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <FONT ID="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="overview-tree.html"><FONT ID="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="deprecated-list.html"><FONT ID="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" ID="NavBarCell1Rev"> <FONT ID="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="help-doc.html"><FONT ID="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" ID="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" ID="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="index-all.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<A HREF="#_<_"><</A> <A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_J_">J</A> <A HREF="#_K_">K</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_Q_">Q</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <A HREF="#_X_">X</A> <HR>
<A NAME="_<_"><!-- --></A><H2>
<B><</B></H2>
<DL>
<DT><A HREF="org/apache/jserv/JServUtils.html#<clinit>()"><B><clinit>()</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServUtils.html">JServUtils</A>
<DD>
</DL>
<HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#accept()"><B>accept()</B></A> -
Method in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>Blocks until a connection is made to the port.
<DT><A HREF="org/apache/java/io/SimpleFileFilter.html#accept(java.io.File, java.lang.String)"><B>accept(File, String)</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/SimpleFileFilter.html">SimpleFileFilter</A>
<DD>filenamefilter interface method
<DT><A HREF="org/apache/jserv/JServSession.html#access()"><B>access()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Tells the session that it has been accessed
<DT><A HREF="org/apache/jserv/JServLog.html#active"><B>active</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>
<DT><A HREF="org/apache/java/io/LogWriter.html#active"><B>active</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Tells if this log is active
<DT><A HREF="org/apache/java/lang/Lock.html#activeReadLocks"><B>activeReadLocks</B></A> -
Variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>
<DT><A HREF="org/apache/java/lang/Lock.html#activeWriteLocks"><B>activeWriteLocks</B></A> -
Variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html"><B>AdaptiveClassLoader</B></A> - class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>.<DD>A class loader that loads classes from directories and/or zip-format
file such as JAR file.<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html"><B>AdaptiveClassLoader.ClassCacheEntry</B></A> - class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html">AdaptiveClassLoader.ClassCacheEntry</A>.<DD>Private class used to maintain information about the classes that
we loaded.<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html#AdaptiveClassLoader.ClassCacheEntry()"><B>AdaptiveClassLoader.ClassCacheEntry()</B></A> -
Constructor for class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html">AdaptiveClassLoader.ClassCacheEntry</A>
<DD>
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#AdaptiveClassLoader(java.util.Vector)"><B>AdaptiveClassLoader(Vector)</B></A> -
Constructor for class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Creates a new class loader that will load classes from specified
class repositories.
<DT><A HREF="org/apache/java/recycle/AdaptiveController.html"><B>AdaptiveController</B></A> - class org.apache.java.recycle.<A HREF="org/apache/java/recycle/AdaptiveController.html">AdaptiveController</A>.<DD>This controller creates a simple yet very effective negative feedback
that stabilizes the level of the container.<DT><A HREF="org/apache/java/recycle/AdaptiveController.html#AdaptiveController()"><B>AdaptiveController()</B></A> -
Constructor for class org.apache.java.recycle.<A HREF="org/apache/java/recycle/AdaptiveController.html">AdaptiveController</A>
<DD>
<DT><A HREF="org/apache/jserv/JServSTMStore.html#addContext(org.apache.jserv.JServSendError)"><B>addContext(JServSendError)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>Add a new created context.
<DT><A HREF="org/apache/jserv/JServConnection.html#addCookie(javax.servlet.http.Cookie)"><B>addCookie(Cookie)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Adds the specified cookie to the response.
<DT><A HREF="org/apache/jserv/Ajpv12InputStream.html"><B>Ajpv12InputStream</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/Ajpv12InputStream.html">Ajpv12InputStream</A>.<DD>A high speed wrapper around the connection to the server.<DT><A HREF="org/apache/jserv/Ajpv12InputStream.html#Ajpv12InputStream(java.io.InputStream)"><B>Ajpv12InputStream(InputStream)</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/Ajpv12InputStream.html">Ajpv12InputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/Ajpv12InputStream.html#Ajpv12InputStream(java.io.InputStream, int)"><B>Ajpv12InputStream(InputStream, int)</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/Ajpv12InputStream.html">Ajpv12InputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServContext.html#aliasName"><B>aliasName</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/Worker.html#alive"><B>alive</B></A> -
Variable in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/Worker.html">Worker</A>
<DD>
<DT><A HREF="org/apache/jserv/JServSTMStore.html#allContexts"><B>allContexts</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>We need a copy of all the contexts, busy or free.
<DT><A HREF="org/apache/java/lang/Semaphore.html#allowed"><B>allowed</B></A> -
Variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/Semaphore.html">Semaphore</A>
<DD>
<DT><A HREF="org/apache/java/lang/Lock.html#allowReadLock()"><B>allowReadLock()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>
<DT><A HREF="org/apache/java/lang/Lock.html#allowWriteLock()"><B>allowWriteLock()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>
<DT><A HREF="org/apache/java/security/MessageDigest.html#append(byte[])"><B>append(byte[])</B></A> -
Method in class org.apache.java.security.<A HREF="org/apache/java/security/MessageDigest.html">MessageDigest</A>
<DD>Append another block to the message.
<DT><A HREF="org/apache/java/lang/Bytes.html#append(byte[], byte[])"><B>append(byte[], byte[])</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Appends two bytes array into one.
<DT><A HREF="org/apache/java/lang/Bytes.html#append(byte[], byte[], byte[])"><B>append(byte[], byte[], byte[])</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Appends three bytes array into one.
<DT><A HREF="org/apache/java/security/MessageDigest.html#append(byte[], int)"><B>append(byte[], int)</B></A> -
Method in class org.apache.java.security.<A HREF="org/apache/java/security/MessageDigest.html">MessageDigest</A>
<DD>Append another block of specified length to the message.
<DT><A HREF="org/apache/java/security/MessageDigest.html#append(byte[], int, int)"><B>append(byte[], int, int)</B></A> -
Method in class org.apache.java.security.<A HREF="org/apache/java/security/MessageDigest.html">MessageDigest</A>
<DD>Append another block of specified length to the message
starting at the given offset.
<DT><A HREF="org/apache/java/security/MD5.html#append(byte[], int, int)"><B>append(byte[], int, int)</B></A> -
Method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>Append another block of specified length to the message
starting at the given offset.
<DT><A HREF="org/apache/java/lang/Bytes.html#areEqual(byte[], byte[])"><B>areEqual(byte[], byte[])</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Compares two byte arrays for equality.
<DT><A HREF="org/apache/jserv/JServConnection.html#auth"><B>auth</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html"><B>AuthenticatedServerSocket</B></A> - class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>.<DD>This class implements an authenticated server socket that binds to
port and listens for authenticated connections.<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#AuthenticatedServerSocket(int, int, java.util.Vector)"><B>AuthenticatedServerSocket(int, int, Vector)</B></A> -
Constructor for class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>Construct the authenticated socket listening to the specified port
but with authentication disabled.
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#AuthenticatedServerSocket(int, int, java.util.Vector, java.net.InetAddress)"><B>AuthenticatedServerSocket(int, int, Vector, InetAddress)</B></A> -
Constructor for class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>Construct the authenticated socket listening to the specified port
but with authentication disabled.
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#AuthenticatedServerSocket(int, int, java.util.Vector, org.apache.java.security.MessageDigest, byte[], int, java.net.InetAddress)"><B>AuthenticatedServerSocket(int, int, Vector, MessageDigest, byte[], int, InetAddress)</B></A> -
Constructor for class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>Construct the authenticated socket listening to the specified port.
<DT><A HREF="org/apache/java/net/AuthenticatedSocket.html"><B>AuthenticatedSocket</B></A> - class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedSocket.html">AuthenticatedSocket</A>.<DD>This class implements an authenticated server socket that binds to
port and listens for authenticated connections.<DT><A HREF="org/apache/java/net/AuthenticatedSocket.html#AuthenticatedSocket(java.net.InetAddress, int)"><B>AuthenticatedSocket(InetAddress, int)</B></A> -
Constructor for class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedSocket.html">AuthenticatedSocket</A>
<DD>
<DT><A HREF="org/apache/java/net/AuthenticatedSocket.html#AuthenticatedSocket(java.net.InetAddress, int, org.apache.java.security.MessageDigest, byte[])"><B>AuthenticatedSocket(InetAddress, int, MessageDigest, byte[])</B></A> -
Constructor for class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedSocket.html">AuthenticatedSocket</A>
<DD>
<DT><A HREF="org/apache/java/net/AuthenticatedSocket.html#AuthenticatedSocket(java.lang.String, int)"><B>AuthenticatedSocket(String, int)</B></A> -
Constructor for class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedSocket.html">AuthenticatedSocket</A>
<DD>
<DT><A HREF="org/apache/java/net/AuthenticatedSocket.html#AuthenticatedSocket(java.lang.String, int, org.apache.java.security.MessageDigest, byte[])"><B>AuthenticatedSocket(String, int, MessageDigest, byte[])</B></A> -
Constructor for class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedSocket.html">AuthenticatedSocket</A>
<DD>
<DT><A HREF="org/apache/java/net/AuthenticationException.html"><B>AuthenticationException</B></A> - exception org.apache.java.net.<A HREF="org/apache/java/net/AuthenticationException.html">AuthenticationException</A>.<DD>This exception is thrown when socket authentication fails.<DT><A HREF="org/apache/java/net/AuthenticationException.html#AuthenticationException()"><B>AuthenticationException()</B></A> -
Constructor for class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticationException.html">AuthenticationException</A>
<DD>Constructs a new <code>AuthenticationException</code> with
no detail message.
<DT><A HREF="org/apache/java/net/AuthenticationException.html#AuthenticationException(java.lang.String)"><B>AuthenticationException(String)</B></A> -
Constructor for class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticationException.html">AuthenticationException</A>
<DD>Constructs a new <code>AuthenticationException</code> with the
specified detail message.
<DT><A HREF="org/apache/jserv/JServConnection.JServInputStream.html#available()"><B>available()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServInputStream.html">JServConnection.JServInputStream</A>
<DD>We must implement this method because java.io.InputStream
javadocs says that this will return 0.
</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="org/apache/java/recycle/GaussianController.html#BIAS"><B>BIAS</B></A> -
Static variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>This is the minimum value allowed to be reached.
<DT><A HREF="org/apache/java/recycle/MinMaxController.html#BIAS"><B>BIAS</B></A> -
Static variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/MinMaxController.html">MinMaxController</A>
<DD>This is the minimum value allowed to be reached.
<DT><A HREF="org/apache/jserv/JServ.html#bindTo(java.lang.String)"><B>bindTo(String)</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>returns the InetAddress this JServ is binding to
read from properties file.
<DT><A HREF="org/apache/java/security/MD5.html#buffer"><B>buffer</B></A> -
Variable in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/java/security/MD5.html#byte2int(byte[], int[])"><B>byte2int(byte[], int[])</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>Converts a 64-byte array into a 16-int array.
<DT><A HREF="org/apache/java/lang/Bytes.html"><B>Bytes</B></A> - class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>.<DD>Static methods for managing byte arrays
(all methods follow Big Endian order
where most significant bits are in front).<DT><A HREF="org/apache/java/lang/Bytes.html#Bytes()"><B>Bytes()</B></A> -
Constructor for class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>
</DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#cache"><B>cache</B></A> -
Variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Cache of the loaded classes.
<DT><A HREF="org/apache/jserv/JServConnection.html#called_getInput"><B>called_getInput</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#called_getOutput"><B>called_getOutput</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/java/recycle/LimitedContainer.html#capacity"><B>capacity</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/LimitedContainer.html">LimitedContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/WorkerContainer.html#capacity"><B>capacity</B></A> -
Variable in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerContainer.html">WorkerContainer</A>
<DD>
<DT><A HREF="org/apache/jserv/JServLogChannels.html#CH_CONTAINER_EXCEPTION"><B>CH_CONTAINER_EXCEPTION</B></A> -
Static variable in interface org.apache.jserv.<A HREF="org/apache/jserv/JServLogChannels.html">JServLogChannels</A>
<DD>Container (i.e.
<DT><A HREF="org/apache/jserv/JServLogChannels.html#CH_CRITICAL"><B>CH_CRITICAL</B></A> -
Static variable in interface org.apache.jserv.<A HREF="org/apache/jserv/JServLogChannels.html">JServLogChannels</A>
<DD>Critical messages that stop further processing.
<DT><A HREF="org/apache/jserv/JServLogChannels.html#CH_DEBUG"><B>CH_DEBUG</B></A> -
Static variable in interface org.apache.jserv.<A HREF="org/apache/jserv/JServLogChannels.html">JServLogChannels</A>
<DD>Debugging messages
<DT><A HREF="org/apache/java/io/LogWriter.html#CH_EXCEPTION_TRACING"><B>CH_EXCEPTION_TRACING</B></A> -
Static variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>String identifier for the exception tracing channel.
<DT><A HREF="org/apache/jserv/JServLogChannels.html#CH_INFO"><B>CH_INFO</B></A> -
Static variable in interface org.apache.jserv.<A HREF="org/apache/jserv/JServLogChannels.html">JServLogChannels</A>
<DD>Informational messages
<DT><A HREF="org/apache/java/io/LogWriter.html#CH_QUEUE_STATUS"><B>CH_QUEUE_STATUS</B></A> -
Static variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>
<DT><A HREF="org/apache/jserv/JServLogChannels.html#CH_SERVLET_EXCEPTION"><B>CH_SERVLET_EXCEPTION</B></A> -
Static variable in interface org.apache.jserv.<A HREF="org/apache/jserv/JServLogChannels.html">JServLogChannels</A>
<DD>Exceptions internal to servlets (thrown in servlet.service())
<DT><A HREF="org/apache/jserv/JServLogChannels.html#CH_SERVLET_LOG"><B>CH_SERVLET_LOG</B></A> -
Static variable in interface org.apache.jserv.<A HREF="org/apache/jserv/JServLogChannels.html">JServLogChannels</A>
<DD>Servlet log channel identifier.
<DT><A HREF="org/apache/jserv/JServLogChannels.html#CH_WARNING"><B>CH_WARNING</B></A> -
Static variable in interface org.apache.jserv.<A HREF="org/apache/jserv/JServLogChannels.html">JServLogChannels</A>
<DD>Warnings, i.e.
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#challengeSize"><B>challengeSize</B></A> -
Variable in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>
<DT><A HREF="org/apache/java/io/LogRecord.html#channel"><B>channel</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogRecord.html">LogRecord</A>
<DD>Log channel.
<DT><A HREF="org/apache/jserv/JServServletManager.html#checkClasses"><B>checkClasses</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Determines whether to check the classes for changes.
<DT><A HREF="org/apache/jserv/JServServletManager.html#checkFile"><B>checkFile</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Determines wheter to check the property file for changes.
<DT><A HREF="org/apache/jserv/JServServletManager.html#checkReload(org.apache.jserv.JServSendError)"><B>checkReload(JServSendError)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Reinstantiate the classloader if necessary.
<DT><A HREF="org/apache/jserv/JServSession.html#checkState()"><B>checkState()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Throws an IllegalStateException when the session is no longer valid.
<DT><A HREF="org/apache/java/recycle/Recyclable.html#clean()"><B>clean()</B></A> -
Method in interface org.apache.java.recycle.<A HREF="org/apache/java/recycle/Recyclable.html">Recyclable</A>
<DD>This method cleans this object by setting every container
reference to null, causing the content to be garbage collected.
<DT><A HREF="org/apache/java/recycle/pool/Worker.html#clean()"><B>clean()</B></A> -
Method in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/Worker.html">Worker</A>
<DD>Cleans this worker by setting its <code>Work</code> code to null.
<DT><A HREF="org/apache/jserv/JServSTMStore.html#clear()"><B>clear()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>Return all the contexts stored here and clear the content of the pool.
<DT><A HREF="org/apache/jserv/JServ.html#clear()"><B>clear()</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>Clears JServ and prepare it for restart of termination
<DT><A HREF="org/apache/jserv/JServConnection.html#client"><B>client</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.JServInputStream.html#close()"><B>close()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServInputStream.html">JServConnection.JServInputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.JServOutputStream.html#close()"><B>close()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServOutputStream.html">JServConnection.JServOutputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#colors"><B>colors</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#confFile"><B>confFile</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#confFile"><B>confFile</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The file that contains the servlet properties.
<DT><A HREF="org/apache/java/io/LogWriter.html#configurations"><B>configurations</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Configuration parameters.
<DT><A HREF="org/apache/java/util/Configurations.html"><B>Configurations</B></A> - class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>.<DD>This class is used to encapsulate properties and addresses
the need for a flexible, portable and fast configurations
repository.<DT><A HREF="org/apache/java/util/Configurations.html#Configurations()"><B>Configurations()</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Creates an empty configuration repository
with no default values.
<DT><A HREF="org/apache/java/util/Configurations.html#Configurations(org.apache.java.util.Configurations)"><B>Configurations(Configurations)</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Creates an empty configuration repository with
the specified defaults.
<DT><A HREF="org/apache/java/util/Configurations.html#Configurations(org.apache.java.util.ConfigurationsRepository)"><B>Configurations(ConfigurationsRepository)</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Creates a configuration repository encapsulating
the given properties with no default values.
<DT><A HREF="org/apache/java/util/Configurations.html#Configurations(org.apache.java.util.ConfigurationsRepository, org.apache.java.util.Configurations)"><B>Configurations(ConfigurationsRepository, Configurations)</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Merge the given properties object as configurations.
<DT><A HREF="org/apache/java/util/ConfigurationsRepository.html"><B>ConfigurationsRepository</B></A> - class org.apache.java.util.<A HREF="org/apache/java/util/ConfigurationsRepository.html">ConfigurationsRepository</A>.<DD>This class must be extended by properties providers that are
syntax dependent.<DT><A HREF="org/apache/java/util/ConfigurationsRepository.html#ConfigurationsRepository()"><B>ConfigurationsRepository()</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/ConfigurationsRepository.html">ConfigurationsRepository</A>
<DD>Creates an empty configuration repository.
<DT><A HREF="org/apache/java/util/ConfigurationsRepository.html#ConfigurationsRepository(java.lang.String)"><B>ConfigurationsRepository(String)</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/ConfigurationsRepository.html">ConfigurationsRepository</A>
<DD>Creates a configuration repository parsing given file.
<DT><A HREF="org/apache/java/util/ConfigurationsRepository.html#ConfigurationsRepository(java.lang.String, java.lang.String)"><B>ConfigurationsRepository(String, String)</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/ConfigurationsRepository.html">ConfigurationsRepository</A>
<DD>Creates a configuration repository parsing given file and
using given model.
<DT><A HREF="org/apache/jserv/JServ.html#confs"><B>confs</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#confs"><B>confs</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The configurations containing information
for these servlets.
<DT><A HREF="org/apache/java/recycle/ControlledContainer.html#container"><B>container</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControlledContainer.html">ControlledContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/Container.html#container"><B>container</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/Container.html">Container</A>
<DD>
<DT><A HREF="org/apache/java/recycle/LimitedContainer.html#container"><B>container</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/LimitedContainer.html">LimitedContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/WorkerContainer.html#container"><B>container</B></A> -
Variable in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerContainer.html">WorkerContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/Container.html"><B>Container</B></A> - class org.apache.java.recycle.<A HREF="org/apache/java/recycle/Container.html">Container</A>.<DD>This class implements the simplest recycle bin wrapping around
a Stack implementation.<DT><A HREF="org/apache/java/recycle/Container.html#Container()"><B>Container()</B></A> -
Constructor for class org.apache.java.recycle.<A HREF="org/apache/java/recycle/Container.html">Container</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#containsHeader(java.lang.String)"><B>containsHeader(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Checks whether the response message header has a field with
the specified name.
<DT><A HREF="org/apache/jserv/JServConnection.html#context"><B>context</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServSession.html#context"><B>context</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>The session context
<DT><A HREF="org/apache/java/recycle/ControlledContainer.html"><B>ControlledContainer</B></A> - class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControlledContainer.html">ControlledContainer</A>.<DD>This class wraps around a RecycleBin to control it with a given
controller.<DT><A HREF="org/apache/java/recycle/ControlledContainer.html#ControlledContainer(org.apache.java.recycle.RecycleBin, org.apache.java.recycle.Controller)"><B>ControlledContainer(RecycleBin, Controller)</B></A> -
Constructor for class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControlledContainer.html">ControlledContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/ControlledContainer.html#controller"><B>controller</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControlledContainer.html">ControlledContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/Controller.html"><B>Controller</B></A> - interface org.apache.java.recycle.<A HREF="org/apache/java/recycle/Controller.html">Controller</A>.<DD>This interface should be implemented by those classes willing
to control the level of recycle bins.<DT><A HREF="org/apache/java/recycle/ControllerFactory.html"><B>ControllerFactory</B></A> - class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControllerFactory.html">ControllerFactory</A>.<DD>This class provides static methods to create Controllers given
their class names.<DT><A HREF="org/apache/java/recycle/ControllerFactory.html#ControllerFactory()"><B>ControllerFactory()</B></A> -
Constructor for class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControllerFactory.html">ControllerFactory</A>
<DD>
<DT><A HREF="org/apache/jserv/JServUtils.html#cookieDate"><B>cookieDate</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServUtils.html">JServUtils</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#cookies_in"><B>cookies_in</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#cookies_out"><B>cookies_out</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/java/lang/Bytes.html#copy(byte[], int)"><B>copy(byte[], int)</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Gets the end of the byte array given.
<DT><A HREF="org/apache/java/lang/Bytes.html#copy(byte[], int, int)"><B>copy(byte[], int, int)</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Gets a sub-set of the byte array given.
<DT><A HREF="org/apache/java/security/MD5.html#counter"><B>counter</B></A> -
Variable in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/java/recycle/ControllerFactory.html#create()"><B>create()</B></A> -
Static method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControllerFactory.html">ControllerFactory</A>
<DD>Create the default Controller.
<DT><A HREF="org/apache/java/recycle/ControllerFactory.html#create(java.lang.String)"><B>create(String)</B></A> -
Static method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControllerFactory.html">ControllerFactory</A>
<DD>Create the controller indentified by the name.
<DT><A HREF="org/apache/jserv/JServServletManager.html#createSession(javax.servlet.http.HttpServletResponse)"><B>createSession(HttpServletResponse)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Creates a new session.
<DT><A HREF="org/apache/jserv/JServServletManager.html#createSession(javax.servlet.http.HttpServletResponse, java.lang.String)"><B>createSession(HttpServletResponse, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Creates a new session.
<DT><A HREF="org/apache/jserv/JServSession.html#creationTime"><B>creationTime</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>The time at which this session has been created
<DT><A HREF="org/apache/java/recycle/GaussianController.html#cursor"><B>cursor</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>The cursor in the circular array.
<DT><A HREF="org/apache/java/recycle/MinMaxController.html#cursor"><B>cursor</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/MinMaxController.html">MinMaxController</A>
<DD>The pointer in the circular array.
</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="org/apache/java/io/LogRecord.html#date"><B>date</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogRecord.html">LogRecord</A>
<DD>Creation time.
<DT><A HREF="org/apache/java/recycle/ControllerFactory.html#DEBUG"><B>DEBUG</B></A> -
Static variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControllerFactory.html">ControllerFactory</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/WorkerPool.html#DEBUG"><B>DEBUG</B></A> -
Static variable in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerPool.html">WorkerPool</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#DEFAULT_CONTROLLER"><B>DEFAULT_CONTROLLER</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/java/io/LogWriter.html#DEFAULT_DATEFORMAT"><B>DEFAULT_DATEFORMAT</B></A> -
Static variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>This string control the standard date format used
used for log timestamping.
<DT><A HREF="org/apache/java/io/LogWriter.html#DEFAULT_IDENTIFIER"><B>DEFAULT_IDENTIFIER</B></A> -
Static variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>This string identifies this log writer and its used to
differentiate between configurations.
<DT><A HREF="org/apache/jserv/JServ.html#DEFAULT_PORT"><B>DEFAULT_PORT</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>Default port to listen to.
<DT><A HREF="org/apache/jserv/JServServletManager.html#defaultArgs"><B>defaultArgs</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The default init arguments for all the servlets
in this name space.
<DT><A HREF="org/apache/java/recycle/DefaultController.html"><B>DefaultController</B></A> - class org.apache.java.recycle.<A HREF="org/apache/java/recycle/DefaultController.html">DefaultController</A>.<DD>The default controller doesn't do anything.<DT><A HREF="org/apache/java/recycle/DefaultController.html#DefaultController()"><B>DefaultController()</B></A> -
Constructor for class org.apache.java.recycle.<A HREF="org/apache/java/recycle/DefaultController.html">DefaultController</A>
<DD>
<DT><A HREF="org/apache/java/util/Configurations.html#defaults"><B>defaults</B></A> -
Variable in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Default configurations repository.
<DT><A HREF="org/apache/java/recycle/Recyclable.html#destroy()"><B>destroy()</B></A> -
Method in interface org.apache.java.recycle.<A HREF="org/apache/java/recycle/Recyclable.html">Recyclable</A>
<DD>This method is called to kill this object when not needed.
<DT><A HREF="org/apache/java/recycle/pool/Worker.html#destroy()"><B>destroy()</B></A> -
Method in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/Worker.html">Worker</A>
<DD>Set the <code>alive</code> variable to false causing the worker to die.
<DT><A HREF="org/apache/jserv/JServServletManager.html#destroyServlet(java.lang.String)"><B>destroyServlet(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Destroy one servlet or a set of SingleThreadModel servlets.
<DT><A HREF="org/apache/jserv/JServServletManager.html#destroyServlets()"><B>destroyServlets()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Destroy all the servlets and servlet contexts.
<DT><A HREF="org/apache/jserv/JServServletManager.html#destroyTimeout"><B>destroyTimeout</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The amount of time to wait before giving up on lock when destroying
servlet.
<DT><A HREF="org/apache/java/security/MessageDigest.html#digest(byte[])"><B>digest(byte[])</B></A> -
Method in class org.apache.java.security.<A HREF="org/apache/java/security/MessageDigest.html">MessageDigest</A>
<DD>Appends a message block and return its message digest.
<DT><A HREF="org/apache/java/security/MessageDigest.html#digest(byte[], int)"><B>digest(byte[], int)</B></A> -
Method in class org.apache.java.security.<A HREF="org/apache/java/security/MessageDigest.html">MessageDigest</A>
<DD>Appends a message block with specified length
and return its message digest.
<DT><A HREF="org/apache/java/security/MessageDigest.html#digest(byte[], int, int)"><B>digest(byte[], int, int)</B></A> -
Method in class org.apache.java.security.<A HREF="org/apache/java/security/MessageDigest.html">MessageDigest</A>
<DD>Appends a message block with specified length starting
from the given offset and return its message digest.
<DT><A HREF="org/apache/java/security/MD5.html#digest(byte[], int, int)"><B>digest(byte[], int, int)</B></A> -
Method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>Appends a message block with specified length starting
from the given offset and return its message digest.
<DT><A HREF="org/apache/java/security/MD5.html#digests"><B>digests</B></A> -
Static variable in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/java/recycle/GaussianController.html#down()"><B>down()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>Writes on the memory of this controller decrementing the level.
<DT><A HREF="org/apache/java/recycle/AdaptiveController.html#down()"><B>down()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/AdaptiveController.html">AdaptiveController</A>
<DD>Signal an object request.
<DT><A HREF="org/apache/java/recycle/MinMaxController.html#down()"><B>down()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/MinMaxController.html">MinMaxController</A>
<DD>Writes on the memory of this controller decrementing the level.
<DT><A HREF="org/apache/java/recycle/DefaultController.html#down()"><B>down()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/DefaultController.html">DefaultController</A>
<DD>
<DT><A HREF="org/apache/java/recycle/Controller.html#down()"><B>down()</B></A> -
Method in interface org.apache.java.recycle.<A HREF="org/apache/java/recycle/Controller.html">Controller</A>
<DD>This method is called by a ControlledContainer when
some object is removed from the container.
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="org/apache/jserv/JServUtils.html#encodeCookie(javax.servlet.http.Cookie)"><B>encodeCookie(Cookie)</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServUtils.html">JServUtils</A>
<DD>Encode a cookie as per the Netscape Cookies specification.
<DT><A HREF="org/apache/jserv/JServConnection.html#encodeRedirectUrl(java.lang.String)"><B>encodeRedirectUrl(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Encodes the specified URL for use in the
<code>sendRedirect</code> method or, if encoding is not needed,
returns the URL unchanged.
<DT><A HREF="org/apache/jserv/JServConnection.html#encodeUrl(java.lang.String)"><B>encodeUrl(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Encodes the specified URL by including the session ID in it,
or, if encoding is not needed, returns the URL unchanged.
<DT><A HREF="org/apache/jserv/JServServletManager.html#encodeUrl(java.lang.String, java.lang.String)"><B>encodeUrl(String, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Encode a URL with a session identifier.
<DT><A HREF="org/apache/java/lang/Semaphore.html#entry()"><B>entry()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Semaphore.html">Semaphore</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#env_vars"><B>env_vars</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServLog.html#errorMessage"><B>errorMessage</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/WorkerPool.html#execute(org.apache.java.lang.Stoppable)"><B>execute(Stoppable)</B></A> -
Method in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerPool.html">WorkerPool</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/Worker.html#execute(org.apache.java.lang.Stoppable)"><B>execute(Stoppable)</B></A> -
Method in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/Worker.html">Worker</A>
<DD>Set the <code>Work</code> code this <code>Worker</code> must
execute and <i>notifies</i> its thread to do it.
<DT><A HREF="org/apache/java/lang/Semaphore.html#exit()"><B>exit()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Semaphore.html">Semaphore</A>
<DD>
<DT><A HREF="org/apache/java/util/ExtendedProperties.html"><B>ExtendedProperties</B></A> - class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.html">ExtendedProperties</A>.<DD>This class extends normal Java properties by adding the possibility
to use the same key many times concatenating the value strings instead
of overwriting them.<DT><A HREF="org/apache/java/util/ExtendedProperties.PropertiesReader.html"><B>ExtendedProperties.PropertiesReader</B></A> - class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.PropertiesReader.html">ExtendedProperties.PropertiesReader</A>.<DD>This class is used to read properties lines.<DT><A HREF="org/apache/java/util/ExtendedProperties.PropertiesReader.html#ExtendedProperties.PropertiesReader(org.apache.java.util.ExtendedProperties, java.io.Reader)"><B>ExtendedProperties.PropertiesReader(ExtendedProperties, Reader)</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.PropertiesReader.html">ExtendedProperties.PropertiesReader</A>
<DD>
<DT><A HREF="org/apache/java/util/ExtendedProperties.PropertiesTokenizer.html"><B>ExtendedProperties.PropertiesTokenizer</B></A> - class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.PropertiesTokenizer.html">ExtendedProperties.PropertiesTokenizer</A>.<DD>This class divides into tokens a property value.<DT><A HREF="org/apache/java/util/ExtendedProperties.PropertiesTokenizer.html#ExtendedProperties.PropertiesTokenizer(org.apache.java.util.ExtendedProperties, java.lang.String)"><B>ExtendedProperties.PropertiesTokenizer(ExtendedProperties, String)</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.PropertiesTokenizer.html">ExtendedProperties.PropertiesTokenizer</A>
<DD>
<DT><A HREF="org/apache/java/util/ExtendedProperties.html#ExtendedProperties()"><B>ExtendedProperties()</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.html">ExtendedProperties</A>
<DD>Creates an empty extended properties object.
<DT><A HREF="org/apache/java/util/ExtendedProperties.html#ExtendedProperties(java.lang.String)"><B>ExtendedProperties(String)</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.html">ExtendedProperties</A>
<DD>Creates and loads the extended properties from the specified file.
<DT><A HREF="org/apache/java/io/SimpleFileFilter.html#extensions"><B>extensions</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/SimpleFileFilter.html">SimpleFileFilter</A>
<DD>
</DL>
<HR>
<A NAME="_F_"><!-- --></A><H2>
<B>F</B></H2>
<DL>
<DT><A HREF="org/apache/java/security/MD5.html#F(int, int, int)"><B>F(int, int, int)</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/java/recycle/GaussianController.html#FACTOR"><B>FACTOR</B></A> -
Static variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>This is multiplication factor for the standard deviation.
<DT><A HREF="org/apache/jserv/JServ.html#fail(java.lang.String)"><B>fail(String)</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>Exit with an error message.
<DT><A HREF="org/apache/jserv/JServ.html#fail(java.lang.String, java.lang.Throwable)"><B>fail(String, Throwable)</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>Exit with an error message formatted using the exception message.
<DT><A HREF="org/apache/java/security/MD5.html#FF(int, int, int, int, int, int, int)"><B>FF(int, int, int, int, int, int, int)</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/java/util/ConfigurationsRepository.html#file"><B>file</B></A> -
Variable in class org.apache.java.util.<A HREF="org/apache/java/util/ConfigurationsRepository.html">ConfigurationsRepository</A>
<DD>The file connected to this repository (holding comments and such)
<DT><A HREF="org/apache/java/io/SimpleFileFilter.html#fileOrFiles(java.io.File)"><B>fileOrFiles(File)</B></A> -
Static method in class org.apache.java.io.<A HREF="org/apache/java/io/SimpleFileFilter.html">SimpleFileFilter</A>
<DD>this method checks to see if an asterisk
is imbedded in the filename, if it is, it
does an "ls" or "dir" of the parent directory
returning a list of files that match
eg.
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#filterList"><B>filterList</B></A> -
Variable in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#findStatusString(int)"><B>findStatusString(int)</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Finds a status string from one of the standard
status code.
<DT><A HREF="org/apache/jserv/JServLog.html#flush()"><B>flush()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>Flush the log.
<DT><A HREF="org/apache/jserv/JServConnection.JServOutputStream.html#flush()"><B>flush()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServOutputStream.html">JServConnection.JServOutputStream</A>
<DD>
<DT><A HREF="org/apache/java/io/LogWriter.html#flush()"><B>flush()</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Flush the log.
<DT><A HREF="org/apache/java/io/LogWriter.Agent.html#flush()"><B>flush()</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.Agent.html">LogWriter.Agent</A>
<DD>Flush the log record queue.
<DT><A HREF="org/apache/java/io/Logger.html#flush()"><B>flush()</B></A> -
Method in interface org.apache.java.io.<A HREF="org/apache/java/io/Logger.html">Logger</A>
<DD>Flush the log.
<DT><A HREF="org/apache/java/io/LogWriter.html#formatter"><B>formatter</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>The timestamp formatter.
<DT><A HREF="org/apache/jserv/JServSTMStore.html#freeContexts"><B>freeContexts</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>The array of free contexts.
</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="org/apache/java/security/MD5.html#G(int, int, int)"><B>G(int, int, int)</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/java/recycle/GaussianController.html"><B>GaussianController</B></A> - class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>.<DD>This is an adaptive controller based on a statistical analysis of
the level transitions.<DT><A HREF="org/apache/java/recycle/GaussianController.html#GaussianController()"><B>GaussianController()</B></A> -
Constructor for class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#generation"><B>generation</B></A> -
Variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Generation number of the classloader, used to distinguish between
different instances.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#generationCounter"><B>generationCounter</B></A> -
Static variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Generation counter, incremented for each classloader as they are
created.
<DT><A HREF="org/apache/java/util/SimpleQueue.html#get()"><B>get()</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/SimpleQueue.html">SimpleQueue</A>
<DD>Get the object waiting in the queue.
<DT><A HREF="org/apache/jserv/JServContext.html#getAttribute(java.lang.String)"><B>getAttribute(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Returns the value of the named attribute of the network service,
or null if the attribute does not exist.
<DT><A HREF="org/apache/jserv/JServConnection.html#getAttribute(java.lang.String)"><B>getAttribute(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the value of the named attribute of the request, or
null if the attribute does not exist.
<DT><A HREF="org/apache/jserv/JServConnection.html#getAuthType()"><B>getAuthType()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets the authentication scheme of this request.
<DT><A HREF="org/apache/java/recycle/GaussianController.html#getAverage(int[])"><B>getAverage(int[])</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>Calculates the average value of a given array.
<DT><A HREF="org/apache/java/util/Configurations.html#getBoolean(java.lang.String)"><B>getBoolean(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a boolean associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getBoolean(java.lang.String, boolean)"><B>getBoolean(String, boolean)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a boolean associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getBoolean(java.lang.String, java.lang.Boolean)"><B>getBoolean(String, Boolean)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a boolean associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getByte(java.lang.String)"><B>getByte(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a byte associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getByte(java.lang.String, byte)"><B>getByte(String, byte)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a byte associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getByte(java.lang.String, java.lang.Byte)"><B>getByte(String, Byte)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a byte associated with the given configuration key.
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#getChallengeSize()"><B>getChallengeSize()</B></A> -
Method in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>Return the currently used challenge size.
<DT><A HREF="org/apache/jserv/JServConnection.html#getCharacterEncoding()"><B>getCharacterEncoding()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the character set encoding used for this MIME body.
<DT><A HREF="org/apache/jserv/JServConnection.html#getContentLength()"><B>getContentLength()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the size of the request entity data, or -1 if not
known.
<DT><A HREF="org/apache/jserv/JServConnection.html#getContentType()"><B>getContentType()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the Internet Media Type of the request entity data,
or null if not known.
<DT><A HREF="org/apache/jserv/JServSTMStore.html#getContext(org.apache.jserv.JServSendError)"><B>getContext(JServSendError)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>Get a free context (servlet) from the pool.
<DT><A HREF="org/apache/jserv/JServConnection.html#getCookies()"><B>getCookies()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets the array of cookies found in this request.
<DT><A HREF="org/apache/jserv/JServServletManager.html#getCookieSessionId(javax.servlet.http.Cookie[])"><B>getCookieSessionId(Cookie[])</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Get the session identifier set in cookies.
<DT><A HREF="org/apache/jserv/JServSession.html#getCreationTime()"><B>getCreationTime()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Returns the time at which this session representation was created,
in milliseconds since midnight, January 1, 1970 UTC.
<DT><A HREF="org/apache/jserv/JServConnection.html#getDateHeader(java.lang.String)"><B>getDateHeader(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets the value of the requested date header field of this
request.
<DT><A HREF="org/apache/java/util/Configurations.html#getDouble(java.lang.String)"><B>getDouble(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a double associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getDouble(java.lang.String, double)"><B>getDouble(String, double)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a double associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getDouble(java.lang.String, java.lang.Double)"><B>getDouble(String, Double)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a double associated with the given configuration key.
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#getFilterList()"><B>getFilterList()</B></A> -
Method in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>Return the IP address filter list used by this server socket.
<DT><A HREF="org/apache/java/util/Configurations.html#getFloat(java.lang.String)"><B>getFloat(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a float associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getFloat(java.lang.String, float)"><B>getFloat(String, float)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a float associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getFloat(java.lang.String, java.lang.Float)"><B>getFloat(String, Float)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a float associated with the given configuration key.
<DT><A HREF="org/apache/jserv/JServConnection.html#getHeader(java.lang.String)"><B>getHeader(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets the value of the requested header field of this request.
<DT><A HREF="org/apache/jserv/JServConnection.html#getHeaderNames()"><B>getHeaderNames()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets the header names for this request.
<DT><A HREF="org/apache/jserv/JServConnection.html#getHostName()"><B>getHostName()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Return the hostname
<DT><A HREF="org/apache/jserv/JServSession.html#getId()"><B>getId()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Returns the identifier assigned to this session.
<DT><A HREF="org/apache/jserv/JServServletManager.html#getIdentifier()"><B>getIdentifier()</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#getIdentifier(java.lang.String)"><B>getIdentifier(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#getIds()"><B>getIds()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Returns an enumeration of all of the session IDs in this context.
<DT><A HREF="org/apache/jserv/JServContext.html#getInitParameter(java.lang.String)"><B>getInitParameter(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Returns a string containing the value of the named
initialization parameter of the servlet, or null if the
parameter does not exist.
<DT><A HREF="org/apache/jserv/JServContext.html#getInitParameterNames()"><B>getInitParameterNames()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Returns the names of the servlet's initialization parameters
as an enumeration of strings, or an empty enumeration if there
are no initialization parameters.
<DT><A HREF="org/apache/jserv/JServConnection.html#getInputStream()"><B>getInputStream()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns an input stream for reading binary data in the request body.
<DT><A HREF="org/apache/java/util/Configurations.html#getInteger(java.lang.String)"><B>getInteger(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a int associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getInteger(java.lang.String, int)"><B>getInteger(String, int)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a int associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getInteger(java.lang.String, java.lang.Integer)"><B>getInteger(String, Integer)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a int associated with the given configuration key.
<DT><A HREF="org/apache/jserv/JServConnection.html#getIntHeader(java.lang.String)"><B>getIntHeader(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets the value of the specified integer header field of this
request.
<DT><A HREF="org/apache/jserv/JServConnection.html#getJServRoute()"><B>getJServRoute()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the JServ Identifier for this server
it is passed in through the env_vars as "JSERV_ROUTE"
<DT><A HREF="org/apache/java/util/Configurations.html#getKeys()"><B>getKeys()</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get the list of the keys contained in the
configuration repository.
<DT><A HREF="org/apache/java/util/Configurations.html#getKeys(java.lang.String)"><B>getKeys(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get the list of the keys contained in the
configuration repository that match the
specified prefix.
<DT><A HREF="org/apache/jserv/JServSession.html#getLastAccessedTime()"><B>getLastAccessedTime()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Returns the last time the client sent a request carrying the identifier
assigned to the session.
<DT><A HREF="org/apache/java/recycle/MinMaxController.html#getLevel(int[])"><B>getLevel(int[])</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/MinMaxController.html">MinMaxController</A>
<DD>Returns the predicted correct level
calculating the max variable amplitude in levels statistics.
<DT><A HREF="org/apache/java/util/Configurations.html#getList(java.lang.String)"><B>getList(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a list of strings associated with the
given configuration key.
<DT><A HREF="org/apache/jserv/JServServletManager.html#getLoadedServlets()"><B>getLoadedServlets()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Get an enumeration of all the servlets that have been loaded.
<DT><A HREF="org/apache/java/util/Configurations.html#getLong(java.lang.String)"><B>getLong(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a long associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getLong(java.lang.String, long)"><B>getLong(String, long)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a long associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getLong(java.lang.String, java.lang.Long)"><B>getLong(String, Long)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a long associated with the given configuration key.
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#getMaxConnections()"><B>getMaxConnections()</B></A> -
Method in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>Return maximum number of connections this socket can handle.
<DT><A HREF="org/apache/jserv/JServConnection.html#getMethod()"><B>getMethod()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets the HTTP method (for example, GET, POST, PUT) with which
this request was made.
<DT><A HREF="org/apache/jserv/JServContext.html#getMimeType(java.lang.String)"><B>getMimeType(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Returns the mime type of the specified file, or null if not known.
<DT><A HREF="org/apache/jserv/JServServletManager.html#getName()"><B>getName()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Get the name of this ServletManager.
<DT><A HREF="org/apache/jserv/JServConnection.html#getOutputStream()"><B>getOutputStream()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns an output stream for writing binary response data.
<DT><A HREF="org/apache/jserv/JServConnection.html#getParameter(java.lang.String)"><B>getParameter(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD><B>Deprecated.</B> <I>Please use getParameterValues</I>
<DT><A HREF="org/apache/jserv/JServConnection.html#getParameterNames()"><B>getParameterNames()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the parameter names for this request as an enumeration
of strings, or an empty enumeration if there are no parameters
or the input stream is empty.
<DT><A HREF="org/apache/jserv/JServConnection.html#getParameterValues(java.lang.String)"><B>getParameterValues(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the values of the specified parameter for the request as
an array of strings, or null if the named parameter does not
exist.
<DT><A HREF="org/apache/jserv/JServConnection.html#getPathInfo()"><B>getPathInfo()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets any optional extra path information following the servlet
path of this request's URI, but immediately preceding its query
string.
<DT><A HREF="org/apache/jserv/JServConnection.html#getPathTranslated()"><B>getPathTranslated()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets any optional extra path information following the servlet
path of this request's URI, but immediately preceding its query
string, and translates it to a real path.
<DT><A HREF="org/apache/java/util/Configurations.html#getProperties(java.lang.String)"><B>getProperties(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a list of properties associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getProperties(java.lang.String, java.util.Properties)"><B>getProperties(String, Properties)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a list of properties associated with the given configuration key.
<DT><A HREF="org/apache/jserv/JServConnection.html#getProtocol()"><B>getProtocol()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the protocol and version of the request as a string of
the form <code><protocol>/<major version>.<minor
version></code>.
<DT><A HREF="org/apache/jserv/JServConnection.html#getQueryString()"><B>getQueryString()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets any query string that is part of the servlet URI.
<DT><A HREF="org/apache/jserv/JServConnection.html#getReader()"><B>getReader()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns a buffered reader for reading text in the request body.
<DT><A HREF="org/apache/jserv/JServContext.html#getRealPath(java.lang.String)"><B>getRealPath(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Applies alias rules to the specified virtual path and returns the
corresponding real path.
<DT><A HREF="org/apache/jserv/JServConnection.html#getRealPath(java.lang.String)"><B>getRealPath(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Applies alias rules to the specified virtual path and returns
the corresponding real path, or null if the translation can not
be performed for any reason.
<DT><A HREF="org/apache/java/recycle/ControlledContainer.html#getRecyclable()"><B>getRecyclable()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControlledContainer.html">ControlledContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/Container.html#getRecyclable()"><B>getRecyclable()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/Container.html">Container</A>
<DD>
<DT><A HREF="org/apache/java/recycle/RecycleBin.html#getRecyclable()"><B>getRecyclable()</B></A> -
Method in interface org.apache.java.recycle.<A HREF="org/apache/java/recycle/RecycleBin.html">RecycleBin</A>
<DD>This method is called to obtain a recyclable object from this
recycle bin.
<DT><A HREF="org/apache/java/recycle/LimitedContainer.html#getRecyclable()"><B>getRecyclable()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/LimitedContainer.html">LimitedContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/WorkerContainer.html#getRecyclable()"><B>getRecyclable()</B></A> -
Method in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerContainer.html">WorkerContainer</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#getRemoteAddr()"><B>getRemoteAddr()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the IP address of the agent that sent the request.
<DT><A HREF="org/apache/jserv/JServConnection.html#getRemoteHost()"><B>getRemoteHost()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the fully qualified host name of the agent that sent the
request.
<DT><A HREF="org/apache/jserv/JServConnection.html#getRemoteUser()"><B>getRemoteUser()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets the name of the user making this request.
<DT><A HREF="org/apache/java/util/Configurations.html#getRepository()"><B>getRepository()</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get encapsulated configuration repository.
<DT><A HREF="org/apache/jserv/JServConnection.html#getRequestedSessionId()"><B>getRequestedSessionId()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets the session id specified with this request.
<DT><A HREF="org/apache/jserv/JServConnection.html#getRequestURI()"><B>getRequestURI()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets this request's URI as a URL.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#getResource(java.lang.String)"><B>getResource(String)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Find a resource with a given name.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#getResourceAsStream(java.lang.String)"><B>getResourceAsStream(String)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Get an InputStream on a given resource.
<DT><A HREF="org/apache/jserv/JServConnection.html#getScheme()"><B>getScheme()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the scheme of the URL used in this request, for example
"http", "https", or "ftp".
<DT><A HREF="org/apache/jserv/JServContext.html#getServerInfo()"><B>getServerInfo()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Returns the name and version of the network service under which
the servlet is running.
<DT><A HREF="org/apache/jserv/JServConnection.html#getServerName()"><B>getServerName()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the host name of the server that received the request.
<DT><A HREF="org/apache/jserv/JServConnection.html#getServerPort()"><B>getServerPort()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns the port number on which this request was received.
<DT><A HREF="org/apache/jserv/JServContext.html#getServlet()"><B>getServlet()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>
<DT><A HREF="org/apache/jserv/JServContext.html#getServlet(java.lang.String)"><B>getServlet(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Returns the servlet of the specified name, or null if not
found.
<DT><A HREF="org/apache/jserv/JServContext.html#getServletContext()"><B>getServletContext()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Returns the context for the servlet.
<DT><A HREF="org/apache/jserv/JServContext.html#getServletNames()"><B>getServletNames()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Returns an enumeration of the Servlet object names in this server.
<DT><A HREF="org/apache/jserv/JServServletManager.html#getServletNames()"><B>getServletNames()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Get all the name that are defined in this ServletManager
<DT><A HREF="org/apache/jserv/JServConnection.html#getServletPath()"><B>getServletPath()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets the part of this request's URI that refers to the servlet
being invoked.
<DT><A HREF="org/apache/jserv/JServSTMStore.html#getServlets()"><B>getServlets()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>Return the servlets stored in this pool.
<DT><A HREF="org/apache/jserv/JServContext.html#getServlets()"><B>getServlets()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD><B>Deprecated.</B> <I>Please use getServletNames in conjunction with getServlet</I>
<DT><A HREF="org/apache/jserv/JServConnection.html#getSession(boolean)"><B>getSession(boolean)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Gets the current valid session associated with this request, if
create is false or, if necessary, creates a new session for the
request, if create is true.
<DT><A HREF="org/apache/jserv/JServServletManager.html#getSession(java.lang.String)"><B>getSession(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Returns the session bound to the specified session ID.
<DT><A HREF="org/apache/jserv/JServSession.html#getSessionContext()"><B>getSessionContext()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Returns the context in which this session is bound.
<DT><A HREF="org/apache/java/util/Configurations.html#getShort(java.lang.String)"><B>getShort(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a short associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getShort(java.lang.String, short)"><B>getShort(String, short)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a short associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getShort(java.lang.String, java.lang.Short)"><B>getShort(String, Short)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a short associated with the given configuration key.
<DT><A HREF="org/apache/java/recycle/ControlledContainer.html#getSize()"><B>getSize()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControlledContainer.html">ControlledContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/Container.html#getSize()"><B>getSize()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/Container.html">Container</A>
<DD>
<DT><A HREF="org/apache/java/recycle/RecycleBin.html#getSize()"><B>getSize()</B></A> -
Method in interface org.apache.java.recycle.<A HREF="org/apache/java/recycle/RecycleBin.html">RecycleBin</A>
<DD>This method returns the actual number of recyclable objects
contained in this recycle bin.
<DT><A HREF="org/apache/java/recycle/LimitedContainer.html#getSize()"><B>getSize()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/LimitedContainer.html">LimitedContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/WorkerContainer.html#getSize()"><B>getSize()</B></A> -
Method in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerContainer.html">WorkerContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/GaussianController.html#getStandardDeviation(int[])"><B>getStandardDeviation(int[])</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>Calculates the RMS value of a given array.
<DT><A HREF="org/apache/java/util/Configurations.html#getString(java.lang.String)"><B>getString(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a string associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getString(java.lang.String, java.lang.String)"><B>getString(String, String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a string associated with the given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getStringArray(java.lang.String)"><B>getStringArray(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get an array of strings associated with the given configuration key.
<DT><A HREF="org/apache/jserv/JServLog.html#getSubsystemError()"><B>getSubsystemError()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>returns the last Error occured in this subsystem
<DT><A HREF="org/apache/jserv/JServServletManager.html#getUrlSessionId(java.lang.String)"><B>getUrlSessionId(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Get the session identifier in a query string.
<DT><A HREF="org/apache/jserv/JServSession.html#getValue(java.lang.String)"><B>getValue(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Returns the object bound to the given name in the session's
application layer data.
<DT><A HREF="org/apache/jserv/JServSession.html#getValueNames()"><B>getValueNames()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Returns an array of the names of all the application layer
data objects bound into the session.
<DT><A HREF="org/apache/java/util/Configurations.html#getVector(java.lang.String)"><B>getVector(String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a Vector of strings associated with the
given configuration key.
<DT><A HREF="org/apache/java/util/Configurations.html#getVector(java.lang.String, java.util.Vector)"><B>getVector(String, Vector)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Get a Vector of strings associated with the
given configuration key.
<DT><A HREF="org/apache/jserv/JServConnection.html#getWriter()"><B>getWriter()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Returns a print writer for writing formatted text responses.
<DT><A HREF="org/apache/java/security/MD5.html#GG(int, int, int, int, int, int, int)"><B>GG(int, int, int, int, int, int, int)</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#got_input"><B>got_input</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/WorkerContainer.html#group"><B>group</B></A> -
Variable in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerContainer.html">WorkerContainer</A>
<DD>
</DL>
<HR>
<A NAME="_H_"><!-- --></A><H2>
<B>H</B></H2>
<DL>
<DT><A HREF="org/apache/java/security/MD5.html#H(int, int, int)"><B>H(int, int, int)</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#handleStatus(javax.servlet.ServletOutputStream, java.lang.String)"><B>handleStatus(ServletOutputStream, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#handleZones(javax.servlet.ServletOutputStream, java.lang.String)"><B>handleZones(ServletOutputStream, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/java/util/ExtendedProperties.PropertiesTokenizer.html#hasMoreTokens()"><B>hasMoreTokens()</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.PropertiesTokenizer.html">ExtendedProperties.PropertiesTokenizer</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#headers_in"><B>headers_in</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#headers_out"><B>headers_out</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/java/lang/Bytes.html#hexDigits"><B>hexDigits</B></A> -
Static variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>
<DT><A HREF="org/apache/java/security/MD5.html#HH(int, int, int, int, int, int, int)"><B>HH(int, int, int, int, int, int, int)</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#hostname"><B>hostname</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
</DL>
<HR>
<A NAME="_I_"><!-- --></A><H2>
<B>I</B></H2>
<DL>
<DT><A HREF="org/apache/java/security/MD5.html#I(int, int, int)"><B>I(int, int, int)</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/jserv/JServSession.html#id"><B>id</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>The session id
<DT><A HREF="org/apache/jserv/JServConnection.html#idCameAsCookie"><B>idCameAsCookie</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#idCameAsUrl"><B>idCameAsUrl</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/java/io/LogWriter.html#identifier"><B>identifier</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>This string identifies this log writer and its used to
discriminate between configuration parameters.
<DT><A HREF="org/apache/java/security/MD5.html#II(int, int, int, int, int, int, int)"><B>II(int, int, int, int, int, int, int)</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#in"><B>in</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.JServInputStream.html#in"><B>in</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServInputStream.html">JServConnection.JServInputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.JServOutputStream.html#in"><B>in</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServOutputStream.html">JServConnection.JServOutputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServSTMStore.html#incrementCapacity"><B>incrementCapacity</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>The increment capacity parameter.
<DT><A HREF="org/apache/jserv/JServSTMStore.html#indexAll"><B>indexAll</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>The index in the <code>allContexts</code> array.
<DT><A HREF="org/apache/jserv/JServSTMStore.html#indexFree"><B>indexFree</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>The index used in the array of free contexts.
<DT><A HREF="org/apache/jserv/JServServletManager.html#init(org.apache.jserv.JServSendError)"><B>init(JServSendError)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Load the configuration from the property file and load the
startup servlets.
<DT><A HREF="org/apache/jserv/JServConnection.html#init(java.net.Socket, org.apache.java.lang.Semaphore)"><B>init(Socket, Semaphore)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Initalize the connection handler with the client socket.
<DT><A HREF="org/apache/jserv/JServContext.html#initargs"><B>initargs</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>
<DT><A HREF="org/apache/jserv/JServSTMStore.html#initialCapacity"><B>initialCapacity</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>The initial capacity of this store
<DT><A HREF="org/apache/jserv/JServServletManager.html#initTimeout"><B>initTimeout</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The amount of time to wait before giving up on lock when initializing a
servlet.
<DT><A HREF="org/apache/java/security/MD5.html#int2byte(int[], byte[])"><B>int2byte(int[], byte[])</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>Converts a 4-int array into a 16-byte array.
<DT><A HREF="org/apache/jserv/JServSession.html#invalidate()"><B>invalidate()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Causes this representation of the session to be invalidated and removed
from its context.
<DT><A HREF="org/apache/jserv/JServLog.html#isActive()"><B>isActive()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>Tells if it is active.
<DT><A HREF="org/apache/java/io/LogWriter.html#isActive()"><B>isActive()</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Tells if it is active.
<DT><A HREF="org/apache/java/io/Logger.html#isActive()"><B>isActive()</B></A> -
Method in interface org.apache.java.io.<A HREF="org/apache/java/io/Logger.html">Logger</A>
<DD>Tells if it is active.
<DT><A HREF="org/apache/jserv/JServLog.html#isActive(java.lang.String)"><B>isActive(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>Tells if the given channel is active.
<DT><A HREF="org/apache/java/io/LogWriter.html#isActive(java.lang.String)"><B>isActive(String)</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Tells if the given channel is active.
<DT><A HREF="org/apache/java/io/Logger.html#isActive(java.lang.String)"><B>isActive(String)</B></A> -
Method in interface org.apache.java.io.<A HREF="org/apache/java/io/Logger.html">Logger</A>
<DD>Tells if the given channel is active.
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#isAuthenticated(java.net.Socket)"><B>isAuthenticated(Socket)</B></A> -
Method in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>Used internally to authenticate a newly connected socket
<DT><A HREF="org/apache/java/util/SimpleQueue.html#isEmpty()"><B>isEmpty()</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/SimpleQueue.html">SimpleQueue</A>
<DD>Find out if the queue is empty.
<DT><A HREF="org/apache/jserv/JServSession.html#isNew"><B>isNew</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Is this session new
<DT><A HREF="org/apache/jserv/JServSession.html#isNew()"><B>isNew()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>A session is considered to be "new" if it has been created by the server,
but the client has not yet acknowledged joining the session.
<DT><A HREF="org/apache/jserv/JServConnection.html#isRequestedSessionIdFromCookie()"><B>isRequestedSessionIdFromCookie()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Checks whether the session id specified by this request came in
as a cookie.
<DT><A HREF="org/apache/jserv/JServConnection.html#isRequestedSessionIdFromUrl()"><B>isRequestedSessionIdFromUrl()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Checks whether the session id specified by this request came in
as part of the URL.
<DT><A HREF="org/apache/jserv/JServConnection.html#isRequestedSessionIdValid()"><B>isRequestedSessionIdValid()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Checks whether this request is associated with a session that
is valid in the current session context.
<DT><A HREF="org/apache/jserv/JServLog.html#isSane()"><B>isSane()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>returns true if this subsystem is sane
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html#isSystemClass()"><B>isSystemClass()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html">AdaptiveClassLoader.ClassCacheEntry</A>
<DD>Check whether this class was loaded from the system.
<DT><A HREF="org/apache/java/recycle/GaussianController.html#isThereRoomFor(org.apache.java.recycle.Recyclable)"><B>isThereRoomFor(Recyclable)</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>Evaluates the room for the object to recycle basing this
decision to the optimum level estrapolated from the
level history.
<DT><A HREF="org/apache/java/recycle/AdaptiveController.html#isThereRoomFor(org.apache.java.recycle.Recyclable)"><B>isThereRoomFor(Recyclable)</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/AdaptiveController.html">AdaptiveController</A>
<DD>Evaluates the room for the recyclable object
<DT><A HREF="org/apache/java/recycle/MinMaxController.html#isThereRoomFor(org.apache.java.recycle.Recyclable)"><B>isThereRoomFor(Recyclable)</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/MinMaxController.html">MinMaxController</A>
<DD>Evaluates the room for the object to recycle basing this
decision to the optimum level estrapolated from the
level history.
<DT><A HREF="org/apache/java/recycle/DefaultController.html#isThereRoomFor(org.apache.java.recycle.Recyclable)"><B>isThereRoomFor(Recyclable)</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/DefaultController.html">DefaultController</A>
<DD>
<DT><A HREF="org/apache/java/recycle/Controller.html#isThereRoomFor(org.apache.java.recycle.Recyclable)"><B>isThereRoomFor(Recyclable)</B></A> -
Method in interface org.apache.java.recycle.<A HREF="org/apache/java/recycle/Controller.html">Controller</A>
<DD>This method is called to obtain info about the
container level status and should return
true if the controller grants access for the new
object to be stored in the container.
<DT><A HREF="org/apache/jserv/JServSession.html#isValid()"><B>isValid()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Has the session been invalidated.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#isZipOrJarArchive(java.io.File)"><B>isZipOrJarArchive(File)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Test if a file is a ZIP or JAR archive.
</DL>
<HR>
<A NAME="_J_"><!-- --></A><H2>
<B>J</B></H2>
<DL>
<DT><A HREF="org/apache/jserv/JServ.html"><B>JServ</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>.<DD><code>JServ</code> is the entry point to the Java part of <b>JServ</b>
It sets up the server, initalizes everything, and listens on a TCP
port for requests for the server.<DT><A HREF="org/apache/jserv/JServ.html#JServ()"><B>JServ()</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html"><B>JServConnection</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>.<DD>This class is the thread that handles all communications between
the Java VM and the web server.<DT><A HREF="org/apache/jserv/JServConnection.JServInputStream.html"><B>JServConnection.JServInputStream</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServInputStream.html">JServConnection.JServInputStream</A>.<DD>ServletInputStream implementation as inner class<DT><A HREF="org/apache/jserv/JServConnection.JServInputStream.html#JServConnection.JServInputStream(org.apache.jserv.JServConnection, int, java.io.InputStream)"><B>JServConnection.JServInputStream(JServConnection, int, InputStream)</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServInputStream.html">JServConnection.JServInputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.JServOutputStream.html"><B>JServConnection.JServOutputStream</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServOutputStream.html">JServConnection.JServOutputStream</A>.<DD>ServletOutputStream implementation as inner class<DT><A HREF="org/apache/jserv/JServConnection.JServOutputStream.html#JServConnection.JServOutputStream(org.apache.jserv.JServConnection, java.io.OutputStream, java.io.InputStream)"><B>JServConnection.JServOutputStream(JServConnection, OutputStream, InputStream)</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServOutputStream.html">JServConnection.JServOutputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#JServConnection()"><B>JServConnection()</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServContext.html"><B>JServContext</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>.<DD>This class implements the parts of the servlet that are longer-lived
than a single request, ServletConfig and ServletContext.<DT><A HREF="org/apache/jserv/JServContext.html#JServContext(javax.servlet.Servlet, org.apache.jserv.JServServletManager, java.util.Properties, java.lang.String)"><B>JServContext(Servlet, JServServletManager, Properties, String)</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>
<DT><A HREF="org/apache/jserv/JServDefs.html"><B>JServDefs</B></A> - interface org.apache.jserv.<A HREF="org/apache/jserv/JServDefs.html">JServDefs</A>.<DD>This interface is a placeholder for some of the constants used throughout
the ApacheJServ project.<DT><A HREF="org/apache/jserv/JServLog.html"><B>JServLog</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>.<DD>This class is used to trace and report errors and execution.<DT><A HREF="org/apache/jserv/JServLog.html#JServLog(java.lang.String, org.apache.java.util.Configurations)"><B>JServLog(String, Configurations)</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>Construct this class
<DT><A HREF="org/apache/jserv/JServLogChannels.html"><B>JServLogChannels</B></A> - interface org.apache.jserv.<A HREF="org/apache/jserv/JServLogChannels.html">JServLogChannels</A>.<DD>Changes made before 1.0.1 release to log messages by severity, not by
the portion of code they occur in.<DT><A HREF="org/apache/jserv/JServSendError.html"><B>JServSendError</B></A> - interface org.apache.jserv.<A HREF="org/apache/jserv/JServSendError.html">JServSendError</A>.<DD>The JServSendError interface is implemented by classes that
know how to return an error to the web server.<DT><A HREF="org/apache/jserv/JServServletManager.html"><B>JServServletManager</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>.<DD>Class that encapsulates the loading and managing of servlets per
servlet zone.<DT><A HREF="org/apache/jserv/JServServletManager.ACLObjectInputStream.html"><B>JServServletManager.ACLObjectInputStream</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.ACLObjectInputStream.html">JServServletManager.ACLObjectInputStream</A>.<DD>When deserializing the sessions during a class
loader reload, override the resolveClass() method
so that it uses the AdaptiveClassLoader to deserialize
the sessions.<DT><A HREF="org/apache/jserv/JServServletManager.ACLObjectInputStream.html#JServServletManager.ACLObjectInputStream(org.apache.jserv.JServServletManager, java.io.InputStream)"><B>JServServletManager.ACLObjectInputStream(JServServletManager, InputStream)</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.ACLObjectInputStream.html">JServServletManager.ACLObjectInputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#JServServletManager(java.lang.String, java.lang.String)"><B>JServServletManager(String, String)</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Creates a new servlet manager.
<DT><A HREF="org/apache/jserv/JServSession.html"><B>JServSession</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>.<DD>This is the object that encapsulates a session.<DT><A HREF="org/apache/jserv/JServSession.html#JServSession(java.lang.String, org.apache.jserv.JServServletManager)"><B>JServSession(String, JServServletManager)</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Creates a new session.
<DT><A HREF="org/apache/jserv/JServSTMStore.html"><B>JServSTMStore</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>.<DD>This class is used to store a set of JServContexts for servlets which
implement the javax.servlet.SingleThreadModel interface.<DT><A HREF="org/apache/jserv/JServSTMStore.html#JServSTMStore(org.apache.java.util.Configurations, org.apache.jserv.JServServletManager, java.lang.String, org.apache.jserv.JServSendError, org.apache.jserv.JServContext)"><B>JServSTMStore(Configurations, JServServletManager, String, JServSendError, JServContext)</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>Constructs a store fill it with contexts.
<DT><A HREF="org/apache/jserv/JServUtils.html"><B>JServUtils</B></A> - class org.apache.jserv.<A HREF="org/apache/jserv/JServUtils.html">JServUtils</A>.<DD>Various utility methods used by the servlet engine.<DT><A HREF="org/apache/jserv/JServUtils.html#JServUtils()"><B>JServUtils()</B></A> -
Constructor for class org.apache.jserv.<A HREF="org/apache/jserv/JServUtils.html">JServUtils</A>
<DD>
</DL>
<HR>
<A NAME="_K_"><!-- --></A><H2>
<B>K</B></H2>
<DL>
<DT><A HREF="org/apache/java/io/LogWriter.html#KEYWORD_CHANNEL"><B>KEYWORD_CHANNEL</B></A> -
Static variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>
<DT><A HREF="org/apache/java/io/LogWriter.html#KEYWORD_DATEFORMAT"><B>KEYWORD_DATEFORMAT</B></A> -
Static variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>
<DT><A HREF="org/apache/java/io/LogWriter.html#KEYWORD_FILE"><B>KEYWORD_FILE</B></A> -
Static variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>
<DT><A HREF="org/apache/java/io/LogWriter.html#KEYWORD_QUEUE_MAXAGE"><B>KEYWORD_QUEUE_MAXAGE</B></A> -
Static variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>
<DT><A HREF="org/apache/java/io/LogWriter.html#KEYWORD_QUEUE_MAXSIZE"><B>KEYWORD_QUEUE_MAXSIZE</B></A> -
Static variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>
<DT><A HREF="org/apache/java/io/LogWriter.html#KEYWORD_TIMESTAMP"><B>KEYWORD_TIMESTAMP</B></A> -
Static variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>
</DL>
<HR>
<A NAME="_L_"><!-- --></A><H2>
<B>L</B></H2>
<DL>
<DT><A HREF="org/apache/jserv/JServSession.html#lastAccessTime"><B>lastAccessTime</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>The last time the session was accessed.
<DT><A HREF="org/apache/jserv/JServServletManager.html#lastInitialization"><B>lastInitialization</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The time of the last initialization.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html#lastModified"><B>lastModified</B></A> -
Variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html">AdaptiveClassLoader.ClassCacheEntry</A>
<DD>The time at which the class was loaded from the origin
file, in ms since the epoch.
<DT><A HREF="org/apache/jserv/JServConnection.JServInputStream.html#length"><B>length</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServInputStream.html">JServConnection.JServInputStream</A>
<DD>
<DT><A HREF="org/apache/java/recycle/GaussianController.html#level"><B>level</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>The current pool level.
<DT><A HREF="org/apache/java/recycle/AdaptiveController.html#level"><B>level</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/AdaptiveController.html">AdaptiveController</A>
<DD>
<DT><A HREF="org/apache/java/recycle/MinMaxController.html#level"><B>level</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/MinMaxController.html">MinMaxController</A>
<DD>The current level.
<DT><A HREF="org/apache/java/recycle/pool/WorkerContainer.html#level"><B>level</B></A> -
Variable in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerContainer.html">WorkerContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/GaussianController.html#levels"><B>levels</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>The array of pool levels.
<DT><A HREF="org/apache/java/recycle/MinMaxController.html#levels"><B>levels</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/MinMaxController.html">MinMaxController</A>
<DD>The array of levels.
<DT><A HREF="org/apache/java/recycle/LimitedContainer.html"><B>LimitedContainer</B></A> - class org.apache.java.recycle.<A HREF="org/apache/java/recycle/LimitedContainer.html">LimitedContainer</A>.<DD>This class wraps around a container to limit its capacity.<DT><A HREF="org/apache/java/recycle/LimitedContainer.html#LimitedContainer(org.apache.java.recycle.RecycleBin, int)"><B>LimitedContainer(RecycleBin, int)</B></A> -
Constructor for class org.apache.java.recycle.<A HREF="org/apache/java/recycle/LimitedContainer.html">LimitedContainer</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#listenSocket"><B>listenSocket</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#load_init(java.lang.String, org.apache.jserv.JServSendError)"><B>load_init(String, JServSendError)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>
<DT><A HREF="org/apache/java/util/ConfigurationsRepository.html#load(java.io.InputStream)"><B>load(InputStream)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/ConfigurationsRepository.html">ConfigurationsRepository</A>
<DD>
<DT><A HREF="org/apache/java/util/ExtendedProperties.html#load(java.io.InputStream)"><B>load(InputStream)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.html">ExtendedProperties</A>
<DD>Load the properties from the given input stream.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#loadBytesFromStream(java.io.InputStream, int)"><B>loadBytesFromStream(InputStream, int)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Loads all the bytes of an InputStream.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#loadClass(java.lang.String, boolean)"><B>loadClass(String, boolean)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Resolves the specified name to a Class.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#loadClassFromDirectory(java.io.File, java.lang.String, org.apache.java.lang.AdaptiveClassLoader.ClassCacheEntry)"><B>loadClassFromDirectory(File, String, AdaptiveClassLoader.ClassCacheEntry)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Tries to load the class from a directory.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#loadClassFromZipfile(java.io.File, java.lang.String, org.apache.java.lang.AdaptiveClassLoader.ClassCacheEntry)"><B>loadClassFromZipfile(File, String, AdaptiveClassLoader.ClassCacheEntry)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Tries to load the class from a zip file.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html#loadedClass"><B>loadedClass</B></A> -
Variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html">AdaptiveClassLoader.ClassCacheEntry</A>
<DD>The actual loaded class
<DT><A HREF="org/apache/jserv/JServServletManager.html#loader"><B>loader</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The class loader used for loading new servlets
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#loadResourceFromDirectory(java.io.File, java.lang.String)"><B>loadResourceFromDirectory(File, String)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Loads resource from a directory.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#loadResourceFromZipfile(java.io.File, java.lang.String)"><B>loadResourceFromZipfile(File, String)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Loads resource from a zip file
<DT><A HREF="org/apache/jserv/JServServletManager.html#loadServlet(java.lang.String, org.apache.jserv.JServSendError)"><B>loadServlet(String, JServSendError)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Loads and initialize a servlet.
<DT><A HREF="org/apache/jserv/JServServletManager.html#loadStartupServlets(org.apache.jserv.JServSendError)"><B>loadStartupServlets(JServSendError)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Loads and initialize all the startup servlets.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#loadSystemClass(java.lang.String, boolean)"><B>loadSystemClass(String, boolean)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Load a class using the system classloader.
<DT><A HREF="org/apache/jserv/JServContext.html#lock"><B>lock</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>
<DT><A HREF="org/apache/java/lang/Lock.html"><B>Lock</B></A> - class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>.<DD>This is a reader/writer lock object.<DT><A HREF="org/apache/java/lang/Lock.html#Lock()"><B>Lock()</B></A> -
Constructor for class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#log"><B>log</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServContext.html#log(java.lang.Exception, java.lang.String)"><B>log(Exception, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Write the stacktrace and the given message string to the
servlet log file.
<DT><A HREF="org/apache/jserv/JServContext.html#log(java.lang.String)"><B>log(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Writes the given message string to the servlet log file.
<DT><A HREF="org/apache/jserv/JServLog.html#log(java.lang.String, java.lang.String)"><B>log(String, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>Prints the log message on the right channel.
<DT><A HREF="org/apache/java/io/LogWriter.html#log(java.lang.String, java.lang.String)"><B>log(String, String)</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Prints the log message on the right channel.
<DT><A HREF="org/apache/java/io/Logger.html#log(java.lang.String, java.lang.String)"><B>log(String, String)</B></A> -
Method in interface org.apache.java.io.<A HREF="org/apache/java/io/Logger.html">Logger</A>
<DD>Prints the log message on the right channel.
<DT><A HREF="org/apache/jserv/JServSession.html#log(java.lang.String, java.lang.String, java.lang.Throwable)"><B>log(String, String, Throwable)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Logs an exception report to the servlet log file.
<DT><A HREF="org/apache/jserv/JServContext.html#log(java.lang.String, java.lang.Throwable)"><B>log(String, Throwable)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>Write the given message string and the stacktrace to the servlet log
file.
<DT><A HREF="org/apache/jserv/JServLog.html#log(java.lang.String, java.lang.Throwable)"><B>log(String, Throwable)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>Prints the error message and stack trace if channel enabled.
<DT><A HREF="org/apache/java/io/LogWriter.html#log(java.lang.String, java.lang.Throwable)"><B>log(String, Throwable)</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Prints the error message and stack trace if channel enabled.
<DT><A HREF="org/apache/java/io/Logger.html#log(java.lang.String, java.lang.Throwable)"><B>log(String, Throwable)</B></A> -
Method in interface org.apache.java.io.<A HREF="org/apache/java/io/Logger.html">Logger</A>
<DD>Prints the error message and stack trace if channel enabled.
<DT><A HREF="org/apache/java/io/LogWriter.html#log(java.lang.Throwable)"><B>log(Throwable)</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD><B>Deprecated.</B> <I></I>
<DT><A HREF="org/apache/java/io/LogWriter.html#logChannel"><B>logChannel</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Tells if the log message should contain a channel.
<DT><A HREF="org/apache/java/io/LogWriter.html#logDaemon"><B>logDaemon</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Background logger thread.
<DT><A HREF="org/apache/jserv/JServLog.html#logger"><B>logger</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>
<DT><A HREF="org/apache/java/io/Logger.html"><B>Logger</B></A> - interface org.apache.java.io.<A HREF="org/apache/java/io/Logger.html">Logger</A>.<DD>This interface represents a simple logger
(LogWriter is an implementation).<DT><A HREF="org/apache/java/io/LogWriter.html#logQueue"><B>logQueue</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Log message queue.
<DT><A HREF="org/apache/java/io/LogRecord.html"><B>LogRecord</B></A> - class org.apache.java.io.<A HREF="org/apache/java/io/LogRecord.html">LogRecord</A>.<DD>Class to store the logging information until it gets processed by the
logger thread.<DT><A HREF="org/apache/java/io/LogRecord.html#LogRecord(java.lang.String, java.lang.String, java.lang.Throwable)"><B>LogRecord(String, String, Throwable)</B></A> -
Constructor for class org.apache.java.io.<A HREF="org/apache/java/io/LogRecord.html">LogRecord</A>
<DD>Constructor.
<DT><A HREF="org/apache/java/io/LogWriter.html"><B>LogWriter</B></A> - class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>.<DD>A <code>LogWriter</code> allows an application to incapsulate an output
stream and dumps its logs on it.<DT><A HREF="org/apache/java/io/LogWriter.Agent.html"><B>LogWriter.Agent</B></A> - class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.Agent.html">LogWriter.Agent</A>.<DD>Class implementing the background logging.<DT><A HREF="org/apache/java/io/LogWriter.Agent.html#LogWriter.Agent(org.apache.java.io.LogWriter)"><B>LogWriter.Agent(LogWriter)</B></A> -
Constructor for class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.Agent.html">LogWriter.Agent</A>
<DD>
<DT><A HREF="org/apache/java/io/LogWriter.html#LogWriter(org.apache.java.util.Configurations)"><B>LogWriter(Configurations)</B></A> -
Constructor for class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Constructs this class and gets output file from configurations.
<DT><A HREF="org/apache/java/io/LogWriter.html#LogWriter(java.io.OutputStream, org.apache.java.util.Configurations)"><B>LogWriter(OutputStream, Configurations)</B></A> -
Constructor for class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Constructs this class with the output stream to encapsulate using
default identifier.
<DT><A HREF="org/apache/java/io/LogWriter.html#LogWriter(java.io.OutputStream, java.lang.String, org.apache.java.util.Configurations)"><B>LogWriter(OutputStream, String, Configurations)</B></A> -
Constructor for class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Constructs this class with the output stream to encapsulate.
<DT><A HREF="org/apache/java/io/LogWriter.html#LogWriter(java.lang.String, org.apache.java.util.Configurations)"><B>LogWriter(String, Configurations)</B></A> -
Constructor for class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Constructs this class using identifier to discriminate between
configuration parameters and gets output file from configurations.
<DT><A HREF="org/apache/java/io/LogWriter.html#LogWriter(java.io.Writer, org.apache.java.util.Configurations)"><B>LogWriter(Writer, Configurations)</B></A> -
Constructor for class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Constructs this class with the output writer to encapsulate using
default identifier.
<DT><A HREF="org/apache/java/io/LogWriter.html#LogWriter(java.io.Writer, java.lang.String, org.apache.java.util.Configurations)"><B>LogWriter(Writer, String, Configurations)</B></A> -
Constructor for class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Constructs this class with the output writer to encapsulate.
</DL>
<HR>
<A NAME="_M_"><!-- --></A><H2>
<B>M</B></H2>
<DL>
<DT><A HREF="org/apache/jserv/JServ.html#main(java.lang.String[])"><B>main(String[])</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>Start up JServ.
<DT><A HREF="org/apache/java/security/MD5.html#main(java.lang.String[])"><B>main(String[])</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#maxConnections"><B>maxConnections</B></A> -
Variable in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>
<DT><A HREF="org/apache/jserv/JServSTMStore.html#maximumCapacity"><B>maximumCapacity</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>The maximum size of this pool.
<DT><A HREF="org/apache/jserv/JServServletManager.html#maxRandomLen"><B>maxRandomLen</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#maxSessionLifespanTics"><B>maxSessionLifespanTics</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#md"><B>md</B></A> -
Variable in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>
<DT><A HREF="org/apache/java/security/MD5.html"><B>MD5</B></A> - class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>.<DD>This class implements the Message Digest 5 algorithm (MD5) as
defined in RFC-1321.<DT><A HREF="org/apache/java/security/MD5.html#MD5()"><B>MD5()</B></A> -
Constructor for class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>Creates the algorithm and reset its state.
<DT><A HREF="org/apache/java/lang/Bytes.html#merge(byte[], byte[])"><B>merge(byte[], byte[])</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Merges a bytes array into another.
<DT><A HREF="org/apache/java/lang/Bytes.html#merge(byte[], byte[], int)"><B>merge(byte[], byte[], int)</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Merges a bytes array into another starting from the
given position.
<DT><A HREF="org/apache/java/lang/Bytes.html#merge(byte[], byte[], int, int)"><B>merge(byte[], byte[], int, int)</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Merges a bytes array into another starting from the
given position.
<DT><A HREF="org/apache/java/lang/Bytes.html#merge(byte[], byte[], int, int, int)"><B>merge(byte[], byte[], int, int, int)</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Merges a bytes array into another starting from the
given positions.
<DT><A HREF="org/apache/java/io/LogRecord.html#message"><B>message</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogRecord.html">LogRecord</A>
<DD>Message to log, if any.
<DT><A HREF="org/apache/java/security/MessageDigest.html"><B>MessageDigest</B></A> - class org.apache.java.security.<A HREF="org/apache/java/security/MessageDigest.html">MessageDigest</A>.<DD>This interface abstracts a message digest algorithm.<DT><A HREF="org/apache/java/security/MessageDigest.html#MessageDigest()"><B>MessageDigest()</B></A> -
Constructor for class org.apache.java.security.<A HREF="org/apache/java/security/MessageDigest.html">MessageDigest</A>
<DD>Creates the algorithm and reset its state.
<DT><A HREF="org/apache/java/security/MD5.html#messages"><B>messages</B></A> -
Static variable in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>Self Test
<DT><A HREF="org/apache/jserv/JServConnection.html#mgr"><B>mgr</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/java/recycle/MinMaxController.html"><B>MinMaxController</B></A> - class org.apache.java.recycle.<A HREF="org/apache/java/recycle/MinMaxController.html">MinMaxController</A>.<DD>This level controller is based on a simpler variance method: the
variance of the request frequency is obtained from the difference
between the minimum and maximum value of the level.<DT><A HREF="org/apache/java/recycle/MinMaxController.html#MinMaxController()"><B>MinMaxController()</B></A> -
Constructor for class org.apache.java.recycle.<A HREF="org/apache/java/recycle/MinMaxController.html">MinMaxController</A>
<DD>
<DT><A HREF="org/apache/java/util/ConfigurationsRepository.html#model"><B>model</B></A> -
Variable in class org.apache.java.util.<A HREF="org/apache/java/util/ConfigurationsRepository.html">ConfigurationsRepository</A>
<DD>The file that contains the model of this repository
</DL>
<HR>
<A NAME="_N_"><!-- --></A><H2>
<B>N</B></H2>
<DL>
<DT><A HREF="org/apache/jserv/JServServletManager.html#name"><B>name</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The name of this ServletManager.
<DT><A HREF="org/apache/jserv/JServServletManager.html#NAME"><B>NAME</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#newSessionTimeout"><B>newSessionTimeout</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The amount of time to wait before invalidating a new session that
has never been "used" by the client.
<DT><A HREF="org/apache/java/util/ExtendedProperties.PropertiesTokenizer.html#nextToken()"><B>nextToken()</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.PropertiesTokenizer.html">ExtendedProperties.PropertiesTokenizer</A>
<DD>
</DL>
<HR>
<A NAME="_O_"><!-- --></A><H2>
<B>O</B></H2>
<DL>
<DT><A HREF="org/apache/java/io/package-summary.html">org.apache.java.io</A> - package org.apache.java.io<DD> <DT><A HREF="org/apache/java/lang/package-summary.html">org.apache.java.lang</A> - package org.apache.java.lang<DD> <DT><A HREF="org/apache/java/net/package-summary.html">org.apache.java.net</A> - package org.apache.java.net<DD> <DT><A HREF="org/apache/java/recycle/package-summary.html">org.apache.java.recycle</A> - package org.apache.java.recycle<DD> <DT><A HREF="org/apache/java/recycle/pool/package-summary.html">org.apache.java.recycle.pool</A> - package org.apache.java.recycle.pool<DD> <DT><A HREF="org/apache/java/security/package-summary.html">org.apache.java.security</A> - package org.apache.java.security<DD> <DT><A HREF="org/apache/java/util/package-summary.html">org.apache.java.util</A> - package org.apache.java.util<DD> <DT><A HREF="org/apache/jserv/package-summary.html">org.apache.jserv</A> - package org.apache.jserv<DD> <DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html#origin"><B>origin</B></A> -
Variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.ClassCacheEntry.html">AdaptiveClassLoader.ClassCacheEntry</A>
<DD>The file from which this class was loaded; or null if
it was loaded from the system.
<DT><A HREF="org/apache/jserv/JServConnection.html#out"><B>out</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.JServOutputStream.html#out"><B>out</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServOutputStream.html">JServConnection.JServOutputStream</A>
<DD>
</DL>
<HR>
<A NAME="_P_"><!-- --></A><H2>
<B>P</B></H2>
<DL>
<DT><A HREF="org/apache/jserv/JServDefs.html#PACKAGE"><B>PACKAGE</B></A> -
Static variable in interface org.apache.jserv.<A HREF="org/apache/jserv/JServDefs.html">JServDefs</A>
<DD>Defines the name of the package.
<DT><A HREF="org/apache/java/security/MD5.html#padding"><B>padding</B></A> -
Static variable in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>MD5 Functions
<DT><A HREF="org/apache/jserv/JServConnection.html#params"><B>params</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServUtils.html#parseCharacterEncoding(java.lang.String)"><B>parseCharacterEncoding(String)</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServUtils.html">JServUtils</A>
<DD>Parse a content-type header for the character encoding.
<DT><A HREF="org/apache/jserv/JServUtils.html#parseCookieHeader(java.lang.String)"><B>parseCookieHeader(String)</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServUtils.html">JServUtils</A>
<DD>Parse a cookie header into an array of cookies as per
RFC2109 - HTTP Cookies
<DT><A HREF="org/apache/jserv/JServConnection.html#parseParams()"><B>parseParams()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Parse parameter stuff.
<DT><A HREF="org/apache/java/util/SimpleQueue.html#peekAtHead()"><B>peekAtHead()</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/SimpleQueue.html">SimpleQueue</A>
<DD>Get the object at the head of the queue.
<DT><A HREF="org/apache/jserv/JServ.html#pool"><B>pool</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/WorkerPool.html#pool"><B>pool</B></A> -
Variable in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerPool.html">WorkerPool</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/Worker.html#pool"><B>pool</B></A> -
Variable in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/Worker.html">Worker</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#processRequest()"><B>processRequest()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServDefs.html#PROFILE"><B>PROFILE</B></A> -
Static variable in interface org.apache.jserv.<A HREF="org/apache/jserv/JServDefs.html">JServDefs</A>
<DD>Enables or disables the PROFILE flag.
<DT><A HREF="org/apache/java/util/SimpleQueue.html#put(java.lang.Object)"><B>put(Object)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/SimpleQueue.html">SimpleQueue</A>
<DD>Put the object into the queue.
<DT><A HREF="org/apache/jserv/JServSession.html#putValue(java.lang.String, java.lang.Object)"><B>putValue(String, Object)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Binds the specified object into the session's application layer data
with the given name.
</DL>
<HR>
<A NAME="_Q_"><!-- --></A><H2>
<B>Q</B></H2>
<DL>
<DT><A HREF="org/apache/java/io/LogWriter.html#queue_maxage"><B>queue_maxage</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Maximum age of a queued log record, in milliseconds.
<DT><A HREF="org/apache/java/io/LogWriter.html#queue_maxsize"><B>queue_maxsize</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Maximum size of a log queue.
<DT><A HREF="org/apache/java/recycle/pool/WorkerPool.html#QUICK_DEBUG"><B>QUICK_DEBUG</B></A> -
Static variable in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerPool.html">WorkerPool</A>
<DD>
</DL>
<HR>
<A NAME="_R_"><!-- --></A><H2>
<B>R</B></H2>
<DL>
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#random"><B>random</B></A> -
Variable in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#randomSource"><B>randomSource</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.JServInputStream.html#read()"><B>read()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServInputStream.html">JServConnection.JServInputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.JServInputStream.html#read(byte[])"><B>read(byte[])</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServInputStream.html">JServConnection.JServInputStream</A>
<DD>
<DT><A HREF="org/apache/java/io/ReadFullyInputStream.html#read(byte[])"><B>read(byte[])</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/ReadFullyInputStream.html">ReadFullyInputStream</A>
<DD>Fill given byte array with bytes read from the stream and return
only when all the array has been filled.
<DT><A HREF="org/apache/jserv/JServConnection.JServInputStream.html#read(byte[], int, int)"><B>read(byte[], int, int)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServInputStream.html">JServConnection.JServInputStream</A>
<DD>
<DT><A HREF="org/apache/java/io/ReadFullyInputStream.html#read(byte[], int, int)"><B>read(byte[], int, int)</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/ReadFullyInputStream.html">ReadFullyInputStream</A>
<DD>Fill given byte array with bytes read from the stream and return
only when all the array has been filled.
<DT><A HREF="org/apache/jserv/JServConnection.html#readData()"><B>readData()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Read all the data.
<DT><A HREF="org/apache/java/io/ReadFullyInputStream.html"><B>ReadFullyInputStream</B></A> - class org.apache.java.io.<A HREF="org/apache/java/io/ReadFullyInputStream.html">ReadFullyInputStream</A>.<DD>This class implements an input stream whose read() methods
perform a full reading of the requested length.<DT><A HREF="org/apache/java/io/ReadFullyInputStream.html#ReadFullyInputStream(java.io.InputStream)"><B>ReadFullyInputStream(InputStream)</B></A> -
Constructor for class org.apache.java.io.<A HREF="org/apache/java/io/ReadFullyInputStream.html">ReadFullyInputStream</A>
<DD>Default Constructor
<DT><A HREF="org/apache/java/lang/Lock.html#readLock()"><B>readLock()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>Wait for a read lock.
<DT><A HREF="org/apache/java/lang/Lock.html#readLock(long)"><B>readLock(long)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>Wait for a read lock.
<DT><A HREF="org/apache/jserv/JServSession.html#readObject(java.io.ObjectInputStream)"><B>readObject(ObjectInputStream)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Read the instance variables for this object from the specified
object input stream.
<DT><A HREF="org/apache/java/util/ExtendedProperties.PropertiesReader.html#readProperty()"><B>readProperty()</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.PropertiesReader.html">ExtendedProperties.PropertiesReader</A>
<DD>
<DT><A HREF="org/apache/jserv/Ajpv12InputStream.html#readString(java.lang.String)"><B>readString(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/Ajpv12InputStream.html">Ajpv12InputStream</A>
<DD>
<DT><A HREF="org/apache/java/lang/Lock.html#readUnlock()"><B>readUnlock()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>Unlocks a previously acquired read lock.
<DT><A HREF="org/apache/jserv/Ajpv12InputStream.html#readWord()"><B>readWord()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/Ajpv12InputStream.html">Ajpv12InputStream</A>
<DD>
<DT><A HREF="org/apache/java/recycle/Recyclable.html"><B>Recyclable</B></A> - interface org.apache.java.recycle.<A HREF="org/apache/java/recycle/Recyclable.html">Recyclable</A>.<DD>This interface standardizes the behaviour of a recyclable object.<DT><A HREF="org/apache/java/recycle/ControlledContainer.html#recycle(org.apache.java.recycle.Recyclable)"><B>recycle(Recyclable)</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/ControlledContainer.html">ControlledContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/Container.html#recycle(org.apache.java.recycle.Recyclable)"><B>recycle(Recyclable)</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/Container.html">Container</A>
<DD>
<DT><A HREF="org/apache/java/recycle/RecycleBin.html#recycle(org.apache.java.recycle.Recyclable)"><B>recycle(Recyclable)</B></A> -
Method in interface org.apache.java.recycle.<A HREF="org/apache/java/recycle/RecycleBin.html">RecycleBin</A>
<DD>This method is called to recycle a recyclable object into this
container.
<DT><A HREF="org/apache/java/recycle/LimitedContainer.html#recycle(org.apache.java.recycle.Recyclable)"><B>recycle(Recyclable)</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/LimitedContainer.html">LimitedContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/WorkerContainer.html#recycle(org.apache.java.recycle.Recyclable)"><B>recycle(Recyclable)</B></A> -
Method in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerContainer.html">WorkerContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/RecycleBin.html"><B>RecycleBin</B></A> - interface org.apache.java.recycle.<A HREF="org/apache/java/recycle/RecycleBin.html">RecycleBin</A>.<DD>This interface standardize the behaviour of a <code>RecycleBin</code>
object, used to contain a pool of <code>Recyclable</code> objects.<DT><A HREF="org/apache/java/recycle/RecycleBinIsEmpty.html"><B>RecycleBinIsEmpty</B></A> - exception org.apache.java.recycle.<A HREF="org/apache/java/recycle/RecycleBinIsEmpty.html">RecycleBinIsEmpty</A>.<DD>This exception is thrown by a <code>RecycleBin</code> subclass to
signal that it does not contain any <code>Recyclable</code> objects.<DT><A HREF="org/apache/java/recycle/RecycleBinIsEmpty.html#RecycleBinIsEmpty()"><B>RecycleBinIsEmpty()</B></A> -
Constructor for class org.apache.java.recycle.<A HREF="org/apache/java/recycle/RecycleBinIsEmpty.html">RecycleBinIsEmpty</A>
<DD>
<DT><A HREF="org/apache/java/recycle/RecycleBinIsFull.html"><B>RecycleBinIsFull</B></A> - exception org.apache.java.recycle.<A HREF="org/apache/java/recycle/RecycleBinIsFull.html">RecycleBinIsFull</A>.<DD>This exception is thrown by a <code>RecycleBin</code> subclass to
signal that it cannot contain any more <code>Recyclable</code> objects.<DT><A HREF="org/apache/java/recycle/RecycleBinIsFull.html#RecycleBinIsFull()"><B>RecycleBinIsFull()</B></A> -
Constructor for class org.apache.java.recycle.<A HREF="org/apache/java/recycle/RecycleBinIsFull.html">RecycleBinIsFull</A>
<DD>
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#reinstantiate()"><B>reinstantiate()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Re-instantiate this class loader.
<DT><A HREF="org/apache/java/security/MD5.html#reminder"><B>reminder</B></A> -
Variable in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#removeSession(org.apache.jserv.JServSession)"><B>removeSession(JServSession)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Remove a session from the context.
<DT><A HREF="org/apache/jserv/JServSession.html#removeValue(java.lang.String)"><B>removeValue(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Removes the object bound to the given name in the session's
application layer data.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#repository"><B>repository</B></A> -
Variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>The classpath which this classloader searches for class definitions.
<DT><A HREF="org/apache/java/util/Configurations.html#repository"><B>repository</B></A> -
Variable in class org.apache.java.util.<A HREF="org/apache/java/util/Configurations.html">Configurations</A>
<DD>Configuration repository.
<DT><A HREF="org/apache/jserv/JServConnection.html#requestedSessionId"><B>requestedSessionId</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/java/security/MessageDigest.html#reset()"><B>reset()</B></A> -
Method in class org.apache.java.security.<A HREF="org/apache/java/security/MessageDigest.html">MessageDigest</A>
<DD>Resets the state of the class.
<DT><A HREF="org/apache/java/security/MD5.html#reset()"><B>reset()</B></A> -
Method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>Resets the state of the class.
<DT><A HREF="org/apache/jserv/JServServletManager.ACLObjectInputStream.html#resolveClass(java.io.ObjectStreamClass)"><B>resolveClass(ObjectStreamClass)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.ACLObjectInputStream.html">JServServletManager.ACLObjectInputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#restart()"><B>restart()</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>Restart JServ.
<DT><A HREF="org/apache/jserv/JServSTMStore.html#returnContext(org.apache.jserv.JServContext)"><B>returnContext(JServContext)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>Return a free context to the pool after it was used.
<DT><A HREF="org/apache/jserv/JServServletManager.html#returnSTMS(java.lang.String, org.apache.jserv.JServContext)"><B>returnSTMS(String, JServContext)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>Return a context into a set of SingleThredModel servlets.
<DT><A HREF="org/apache/jserv/JServConnection.html#run()"><B>run()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>This methods provides and incapsulates the Servlet service.
<DT><A HREF="org/apache/jserv/JServServletManager.html#run()"><B>run()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The housekeeping thread
Checks for sessions that have not been used for a certain
amount of time and invalidates them.
<DT><A HREF="org/apache/java/io/LogWriter.Agent.html#run()"><B>run()</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.Agent.html">LogWriter.Agent</A>
<DD>Wait for the messages in the log message queue and pass
them to the log media, whatever it is.
<DT><A HREF="org/apache/java/lang/Stoppable.html#run()"><B>run()</B></A> -
Method in interface org.apache.java.lang.<A HREF="org/apache/java/lang/Stoppable.html">Stoppable</A>
<DD>This method is called to start the job.
<DT><A HREF="org/apache/java/recycle/pool/Worker.html#run()"><B>run()</B></A> -
Method in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/Worker.html">Worker</A>
<DD>The main execution loop.
</DL>
<HR>
<A NAME="_S_"><!-- --></A><H2>
<B>S</B></H2>
<DL>
<DT><A HREF="org/apache/java/util/ConfigurationsRepository.html#save(java.io.OutputStream, java.lang.String)"><B>save(OutputStream, String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/ConfigurationsRepository.html">ConfigurationsRepository</A>
<DD>
<DT><A HREF="org/apache/java/util/ExtendedProperties.html#save(java.io.OutputStream, java.lang.String)"><B>save(OutputStream, String)</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/ExtendedProperties.html">ExtendedProperties</A>
<DD>Save the properties to the given outputstream.
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#secret"><B>secret</B></A> -
Variable in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#securityAllowsClass(java.lang.String)"><B>securityAllowsClass(String)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Checks whether a classloader is allowed to define a given class,
within the security manager restrictions.
<DT><A HREF="org/apache/java/net/AuthenticatedServerSocket.html#seed"><B>seed</B></A> -
Variable in class org.apache.java.net.<A HREF="org/apache/java/net/AuthenticatedServerSocket.html">AuthenticatedServerSocket</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#semaphore"><B>semaphore</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#semaphore"><B>semaphore</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/java/lang/Semaphore.html"><B>Semaphore</B></A> - class org.apache.java.lang.<A HREF="org/apache/java/lang/Semaphore.html">Semaphore</A>.<DD> <DT><A HREF="org/apache/java/lang/Semaphore.html#Semaphore(int)"><B>Semaphore(int)</B></A> -
Constructor for class org.apache.java.lang.<A HREF="org/apache/java/lang/Semaphore.html">Semaphore</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#sendError(int)"><B>sendError(int)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Sends an error response to the client using the specified
status code and a default message.
<DT><A HREF="org/apache/jserv/JServSendError.html#sendError(int, java.lang.String)"><B>sendError(int, String)</B></A> -
Method in interface org.apache.jserv.<A HREF="org/apache/jserv/JServSendError.html">JServSendError</A>
<DD>
<DT><A HREF="org/apache/jserv/JServContext.html#sendError(int, java.lang.String)"><B>sendError(int, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>
<DT><A HREF="org/apache/jserv/JServLog.html#sendError(int, java.lang.String)"><B>sendError(int, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>Report a problem encountered while initializing.
<DT><A HREF="org/apache/jserv/JServConnection.html#sendError(int, java.lang.String)"><B>sendError(int, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Sends an error response to the client using the specified status
code and descriptive message.
<DT><A HREF="org/apache/jserv/JServSendError.html#sendError(java.lang.Throwable)"><B>sendError(Throwable)</B></A> -
Method in interface org.apache.jserv.<A HREF="org/apache/jserv/JServSendError.html">JServSendError</A>
<DD>
<DT><A HREF="org/apache/jserv/JServContext.html#sendError(java.lang.Throwable)"><B>sendError(Throwable)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>
<DT><A HREF="org/apache/jserv/JServLog.html#sendError(java.lang.Throwable)"><B>sendError(Throwable)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServLog.html">JServLog</A>
<DD>Report an exception or error encountered while loading a servlet.
<DT><A HREF="org/apache/jserv/JServConnection.html#sendError(java.lang.Throwable)"><B>sendError(Throwable)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>JServSendError method.
<DT><A HREF="org/apache/jserv/JServ.html#sendHead(javax.servlet.ServletOutputStream)"><B>sendHead(ServletOutputStream)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#sendHttpHeaders()"><B>sendHttpHeaders()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Send the HTTP headers and prepare to send response.
<DT><A HREF="org/apache/jserv/JServConnection.html#sendRedirect(java.lang.String)"><B>sendRedirect(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Sends a temporary redirect response to the client using the
specified redirect location URL.
<DT><A HREF="org/apache/jserv/JServ.html#sendTail(javax.servlet.ServletOutputStream)"><B>sendTail(ServletOutputStream)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#sent_header"><B>sent_header</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)"><B>service(HttpServletRequest, HttpServletResponse)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>JServ is also a servlet that returns info to the client about its
status.
<DT><A HREF="org/apache/jserv/JServContext.html#servlet"><B>servlet</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#servlet"><B>servlet</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#servlet_in"><B>servlet_in</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#servlet_out"><B>servlet_out</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#servlet_reader"><B>servlet_reader</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#servlet_writer"><B>servlet_writer</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#servletContexts"><B>servletContexts</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The cache of loaded servlets
<DT><A HREF="org/apache/jserv/JServSTMStore.html#servletManager"><B>servletManager</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>The Servlet Manager which must create in behalf of us new servlet
instances when needed.
<DT><A HREF="org/apache/jserv/JServ.html#servletManagerTable"><B>servletManagerTable</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#servletmethod"><B>servletmethod</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServContext.html#servletMgr"><B>servletMgr</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServContext.html">JServContext</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#servletname"><B>servletname</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServSTMStore.html#servletName"><B>servletName</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>The name (or class name or ...) of the servlet stored here.
<DT><A HREF="org/apache/jserv/JServServletManager.html#servletNames"><B>servletNames</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The names of all the named servlet.
<DT><A HREF="org/apache/jserv/JServConnection.html#servletzone"><B>servletzone</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#session"><B>session</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#session_count"><B>session_count</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#session_identifier"><B>session_identifier</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>A (slightly more) unique session identifier derived from
SESSION_IDENTIFIER_BASE and <code>name</code>.
<DT><A HREF="org/apache/jserv/JServServletManager.html#SESSION_IDENTIFIER_BASE"><B>SESSION_IDENTIFIER_BASE</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The name of the session parameter.
<DT><A HREF="org/apache/jserv/JServServletManager.html#sessionCheckFrequency"><B>sessionCheckFrequency</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>How frequently to check for the existence of timed-out sessions.
<DT><A HREF="org/apache/jserv/JServSession.html#sessionData"><B>sessionData</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>The session data
<DT><A HREF="org/apache/jserv/JServServletManager.html#sessions"><B>sessions</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The sessions in this manager.
<DT><A HREF="org/apache/jserv/JServServletManager.html#sessionTimeout"><B>sessionTimeout</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The amount of time to wait before invalidating an unused session.
<DT><A HREF="org/apache/jserv/JServServletManager.html#sessionUseCookies"><B>sessionUseCookies</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>This flag determines how sessions are created.
<DT><A HREF="org/apache/jserv/JServConnection.html#setContentLength(int)"><B>setContentLength(int)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Sets the content length for this response.
<DT><A HREF="org/apache/jserv/JServConnection.html#setContentType(java.lang.String)"><B>setContentType(String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Sets the content type for this response.
<DT><A HREF="org/apache/jserv/JServConnection.html#setDateHeader(java.lang.String, long)"><B>setDateHeader(String, long)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Adds a field to the response header with the given name and
date-valued field.
<DT><A HREF="org/apache/jserv/JServConnection.html#setHeader(java.lang.String, java.lang.String)"><B>setHeader(String, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Adds a field to the response header with the given name and value.
<DT><A HREF="org/apache/jserv/JServConnection.html#setIntHeader(java.lang.String, int)"><B>setIntHeader(String, int)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Adds a field to the response header with the given name and
integer value.
<DT><A HREF="org/apache/jserv/JServConnection.html#setParameter(java.lang.String, java.lang.String)"><B>setParameter(String, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Added for the <servlet> tag support - RZ.
<DT><A HREF="org/apache/jserv/JServSession.html#setSessionContext(org.apache.jserv.JServServletManager)"><B>setSessionContext(JServServletManager)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Sets the context in which this session is bound.
<DT><A HREF="org/apache/jserv/JServConnection.html#setStatus(int)"><B>setStatus(int)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Sets the status code for this response.
<DT><A HREF="org/apache/jserv/JServConnection.html#setStatus(int, java.lang.String)"><B>setStatus(int, String)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>Sets the status code and message for this response.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#shouldReload()"><B>shouldReload()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Check whether the classloader should be reinstantiated.
<DT><A HREF="org/apache/java/lang/AdaptiveClassLoader.html#shouldReload(java.lang.String)"><B>shouldReload(String)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/AdaptiveClassLoader.html">AdaptiveClassLoader</A>
<DD>Check to see if a given class should be reloaded because of a
modification to the original class.
<DT><A HREF="org/apache/jserv/JServ.html#showMenu(javax.servlet.ServletOutputStream)"><B>showMenu(ServletOutputStream)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#signal"><B>signal</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#signal(java.lang.String)"><B>signal(String)</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>Signal a running JServ.
<DT><A HREF="org/apache/java/io/SimpleFileFilter.html"><B>SimpleFileFilter</B></A> - class org.apache.java.io.<A HREF="org/apache/java/io/SimpleFileFilter.html">SimpleFileFilter</A>.<DD>Class that implements the java.io.FilenameFilter
interface.<DT><A HREF="org/apache/java/io/SimpleFileFilter.html#SimpleFileFilter(java.lang.String)"><B>SimpleFileFilter(String)</B></A> -
Constructor for class org.apache.java.io.<A HREF="org/apache/java/io/SimpleFileFilter.html">SimpleFileFilter</A>
<DD>
<DT><A HREF="org/apache/java/io/SimpleFileFilter.html#SimpleFileFilter(java.lang.String[])"><B>SimpleFileFilter(String[])</B></A> -
Constructor for class org.apache.java.io.<A HREF="org/apache/java/io/SimpleFileFilter.html">SimpleFileFilter</A>
<DD>
<DT><A HREF="org/apache/java/util/SimpleQueue.html"><B>SimpleQueue</B></A> - class org.apache.java.util.<A HREF="org/apache/java/util/SimpleQueue.html">SimpleQueue</A>.<DD>Implements single queue.<DT><A HREF="org/apache/java/util/SimpleQueue.html#SimpleQueue()"><B>SimpleQueue()</B></A> -
Constructor for class org.apache.java.util.<A HREF="org/apache/java/util/SimpleQueue.html">SimpleQueue</A>
<DD>Default constructor.
<DT><A HREF="org/apache/jserv/JServ.html#SINGLE_COLUMN"><B>SINGLE_COLUMN</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServSTMStore.html#size()"><B>size()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSTMStore.html">JServSTMStore</A>
<DD>Return the number of total contexts stored in this poll.
<DT><A HREF="org/apache/java/util/SimpleQueue.html#size()"><B>size()</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/SimpleQueue.html">SimpleQueue</A>
<DD>Get the number of elements in the queue.
<DT><A HREF="org/apache/jserv/JServConnection.JServInputStream.html#skip(long)"><B>skip(long)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServInputStream.html">JServConnection.JServInputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#start()"><B>start()</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>Read the host configuration property file and perform all the
specified actions.
<DT><A HREF="org/apache/jserv/JServServletManager.html#startups"><B>startups</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The servlets to load on startup.
<DT><A HREF="org/apache/java/security/MD5.html#state"><B>state</B></A> -
Variable in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#status"><B>status</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#STATUS_SERVLET"><B>STATUS_SERVLET</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#status_string"><B>status_string</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#stm_servlet"><B>stm_servlet</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.html#stop()"><B>stop()</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.html">JServConnection</A>
<DD>This method is now empty but will be used when thread timing
will be in place to allow graceful signaling of execution timeout.
<DT><A HREF="org/apache/java/lang/Stoppable.html#stop()"><B>stop()</B></A> -
Method in interface org.apache.java.lang.<A HREF="org/apache/java/lang/Stoppable.html">Stoppable</A>
<DD>This method is called to terminate the job.
<DT><A HREF="org/apache/java/lang/Stoppable.html"><B>Stoppable</B></A> - interface org.apache.java.lang.<A HREF="org/apache/java/lang/Stoppable.html">Stoppable</A>.<DD>This interface is an extension to the Runnable interface
that allows jobs to be safely stopped.</DL>
<HR>
<A NAME="_T_"><!-- --></A><H2>
<B>T</B></H2>
<DL>
<DT><A HREF="org/apache/java/io/LogRecord.html#t"><B>t</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogRecord.html">LogRecord</A>
<DD>Exception to log, if any.
<DT><A HREF="org/apache/jserv/JServ.html#table"><B>table</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/jserv/JServ.html#terminate()"><B>terminate()</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>Terminate JServ.
<DT><A HREF="org/apache/jserv/JServServletManager.html#tGroup"><B>tGroup</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>The ThreadGroup in which the servlets are run.
<DT><A HREF="org/apache/java/util/SimpleQueue.html#theQueue"><B>theQueue</B></A> -
Variable in class org.apache.java.util.<A HREF="org/apache/java/util/SimpleQueue.html">SimpleQueue</A>
<DD>Data holder.
<DT><A HREF="org/apache/java/lang/Semaphore.html#throttle()"><B>throttle()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Semaphore.html">Semaphore</A>
<DD>
<DT><A HREF="org/apache/jserv/JServServletManager.html#ticDifference"><B>ticDifference</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>
<DT><A HREF="org/apache/java/lang/TimeoutException.html"><B>TimeoutException</B></A> - exception org.apache.java.lang.<A HREF="org/apache/java/lang/TimeoutException.html">TimeoutException</A>.<DD>This Exception is thrown when a specified timeout is reached without
suceeding in completing the action.<DT><A HREF="org/apache/java/lang/TimeoutException.html#TimeoutException()"><B>TimeoutException()</B></A> -
Constructor for class org.apache.java.lang.<A HREF="org/apache/java/lang/TimeoutException.html">TimeoutException</A>
<DD>Default constructor.
<DT><A HREF="org/apache/java/lang/TimeoutException.html#TimeoutException(java.lang.String)"><B>TimeoutException(String)</B></A> -
Constructor for class org.apache.java.lang.<A HREF="org/apache/java/lang/TimeoutException.html">TimeoutException</A>
<DD>Constructor with a message associated.
<DT><A HREF="org/apache/java/io/LogWriter.html#timestamp"><B>timestamp</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>Tells if the log message should be started by a time stamp.
<DT><A HREF="org/apache/java/lang/Bytes.html#toBytes(int)"><B>toBytes(int)</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Returns a 4-byte array built from an int.
<DT><A HREF="org/apache/java/lang/Bytes.html#toBytes(int, byte[])"><B>toBytes(int, byte[])</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Build a 4-byte array from an int.
<DT><A HREF="org/apache/java/lang/Bytes.html#toBytes(long)"><B>toBytes(long)</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Returns a 8-byte array built from a long.
<DT><A HREF="org/apache/java/security/MD5.html#toBytes(long)"><B>toBytes(long)</B></A> -
Static method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>Converts a long to a 8-byte array using low order first.
<DT><A HREF="org/apache/java/lang/Bytes.html#toBytes(long, byte[])"><B>toBytes(long, byte[])</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Build a 8-byte array from a long.
<DT><A HREF="org/apache/java/lang/Bytes.html#toInt(byte[])"><B>toInt(byte[])</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Build an int from first 4 bytes of the array.
<DT><A HREF="org/apache/java/lang/Bytes.html#toLong(byte[])"><B>toLong(byte[])</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Build a long from first 8 bytes of the array.
<DT><A HREF="org/apache/java/recycle/AdaptiveController.html#top"><B>top</B></A> -
Variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/AdaptiveController.html">AdaptiveController</A>
<DD>
<DT><A HREF="org/apache/java/lang/Bytes.html#toString(byte[])"><B>toString(byte[])</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Returns a string of hexadecimal digits from a byte array..
<DT><A HREF="org/apache/java/lang/Bytes.html#toString(byte[], int, int)"><B>toString(byte[], int, int)</B></A> -
Static method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Bytes.html">Bytes</A>
<DD>Returns a string of hexadecimal digits from a byte array,
starting at offset and continuing for length bytes.
<DT><A HREF="org/apache/java/security/MD5.html#transform(byte[])"><B>transform(byte[])</B></A> -
Method in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
<DT><A HREF="org/apache/jserv/JServDefs.html#TURBO"><B>TURBO</B></A> -
Static variable in interface org.apache.jserv.<A HREF="org/apache/jserv/JServDefs.html">JServDefs</A>
<DD>Enables or disables TURBO flag.
</DL>
<HR>
<A NAME="_U_"><!-- --></A><H2>
<B>U</B></H2>
<DL>
<DT><A HREF="org/apache/java/recycle/GaussianController.html#up()"><B>up()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>Writes on the memory of this controller incrementing the level.
<DT><A HREF="org/apache/java/recycle/AdaptiveController.html#up()"><B>up()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/AdaptiveController.html">AdaptiveController</A>
<DD>Signal an object recycle.
<DT><A HREF="org/apache/java/recycle/MinMaxController.html#up()"><B>up()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/MinMaxController.html">MinMaxController</A>
<DD>Writes on the memory of this controller incrementing the level.
<DT><A HREF="org/apache/java/recycle/DefaultController.html#up()"><B>up()</B></A> -
Method in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/DefaultController.html">DefaultController</A>
<DD>
<DT><A HREF="org/apache/java/recycle/Controller.html#up()"><B>up()</B></A> -
Method in interface org.apache.java.recycle.<A HREF="org/apache/java/recycle/Controller.html">Controller</A>
<DD>This method is called by a ControlledContainer when
some object gets stored in the container.
<DT><A HREF="org/apache/jserv/JServUtils.html#URLDecode(java.lang.String)"><B>URLDecode(String)</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServUtils.html">JServUtils</A>
<DD>This method decodes the given urlencoded string.
<DT><A HREF="org/apache/jserv/JServUtils.html#URLEncode(java.lang.String)"><B>URLEncode(String)</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServUtils.html">JServUtils</A>
<DD>This method urlencodes the given string.
<DT><A HREF="org/apache/jserv/JServ.html#usage()"><B>usage()</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>Prints the help on usage message on standard error.
</DL>
<HR>
<A NAME="_V_"><!-- --></A><H2>
<B>V</B></H2>
<DL>
<DT><A HREF="org/apache/jserv/JServSession.html#valid"><B>valid</B></A> -
Variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Is this session valid
<DT><A HREF="org/apache/jserv/JServServletManager.html#VALUE"><B>VALUE</B></A> -
Static variable in class org.apache.jserv.<A HREF="org/apache/jserv/JServServletManager.html">JServServletManager</A>
<DD>
<DT><A HREF="org/apache/jserv/JServDefs.html#VERSION"><B>VERSION</B></A> -
Static variable in interface org.apache.jserv.<A HREF="org/apache/jserv/JServDefs.html">JServDefs</A>
<DD>Defines the current version of the package.
<DT><A HREF="org/apache/jserv/JServ.html#version()"><B>version()</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
</DL>
<HR>
<A NAME="_W_"><!-- --></A><H2>
<B>W</B></H2>
<DL>
<DT><A HREF="org/apache/java/lang/Lock.html#waitingReadLocks"><B>waitingReadLocks</B></A> -
Variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>
<DT><A HREF="org/apache/java/lang/Lock.html#waitingWriteLocks"><B>waitingWriteLocks</B></A> -
Variable in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>
<DT><A HREF="org/apache/java/util/SimpleQueue.html#waitObject()"><B>waitObject()</B></A> -
Method in class org.apache.java.util.<A HREF="org/apache/java/util/SimpleQueue.html">SimpleQueue</A>
<DD>Wait until the object appears in the queue, then return it.
<DT><A HREF="org/apache/jserv/JServ.html#welcome()"><B>welcome()</B></A> -
Static method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>Prints the welcome message on standard output.
<DT><A HREF="org/apache/java/recycle/GaussianController.html#WINDOW"><B>WINDOW</B></A> -
Static variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/GaussianController.html">GaussianController</A>
<DD>This is the log2 value of the sampling window.
<DT><A HREF="org/apache/java/recycle/MinMaxController.html#WINDOW"><B>WINDOW</B></A> -
Static variable in class org.apache.java.recycle.<A HREF="org/apache/java/recycle/MinMaxController.html">MinMaxController</A>
<DD>This is the log2 value of the sampling window.
<DT><A HREF="org/apache/java/recycle/pool/Worker.html#work"><B>work</B></A> -
Variable in class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/Worker.html">Worker</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/Worker.html"><B>Worker</B></A> - class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/Worker.html">Worker</A>.<DD>This class extends the Thread class to add recyclable functionalities.<DT><A HREF="org/apache/java/recycle/pool/Worker.html#Worker(java.lang.ThreadGroup, org.apache.java.recycle.RecycleBin, java.lang.String)"><B>Worker(ThreadGroup, RecycleBin, String)</B></A> -
Constructor for class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/Worker.html">Worker</A>
<DD>Allocates a new <code>Worker</code> object.
<DT><A HREF="org/apache/java/recycle/pool/WorkerContainer.html"><B>WorkerContainer</B></A> - class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerContainer.html">WorkerContainer</A>.<DD>This class implements the container that is used to store the
recycled threads.<DT><A HREF="org/apache/java/recycle/pool/WorkerContainer.html#WorkerContainer(org.apache.java.recycle.RecycleBin, java.lang.ThreadGroup, int)"><B>WorkerContainer(RecycleBin, ThreadGroup, int)</B></A> -
Constructor for class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerContainer.html">WorkerContainer</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/WorkerPool.html"><B>WorkerPool</B></A> - class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerPool.html">WorkerPool</A>.<DD>This class is the public frontend for the thread pool code.<DT><A HREF="org/apache/java/recycle/pool/WorkerPool.html#WorkerPool(int)"><B>WorkerPool(int)</B></A> -
Constructor for class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerPool.html">WorkerPool</A>
<DD>
<DT><A HREF="org/apache/java/recycle/pool/WorkerPool.html#WorkerPool(int, java.lang.String)"><B>WorkerPool(int, String)</B></A> -
Constructor for class org.apache.java.recycle.pool.<A HREF="org/apache/java/recycle/pool/WorkerPool.html">WorkerPool</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.JServOutputStream.html#write(byte[], int, int)"><B>write(byte[], int, int)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServOutputStream.html">JServConnection.JServOutputStream</A>
<DD>
<DT><A HREF="org/apache/jserv/JServConnection.JServOutputStream.html#write(int)"><B>write(int)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServConnection.JServOutputStream.html">JServConnection.JServOutputStream</A>
<DD>
<DT><A HREF="org/apache/java/io/LogWriter.Agent.html#write(org.apache.java.io.LogRecord)"><B>write(LogRecord)</B></A> -
Method in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.Agent.html">LogWriter.Agent</A>
<DD>Write the log record on the log stream.
<DT><A HREF="org/apache/java/lang/Lock.html#writeLock()"><B>writeLock()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>Wait for a read lock.
<DT><A HREF="org/apache/java/lang/Lock.html#writeLock(long)"><B>writeLock(long)</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>Wait for a read lock.
<DT><A HREF="org/apache/jserv/JServSession.html#writeObject(java.io.ObjectOutputStream)"><B>writeObject(ObjectOutputStream)</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServSession.html">JServSession</A>
<DD>Write the instance variables for this object to the specified
object output stream.
<DT><A HREF="org/apache/java/io/LogWriter.html#writer"><B>writer</B></A> -
Variable in class org.apache.java.io.<A HREF="org/apache/java/io/LogWriter.html">LogWriter</A>
<DD>The writer encapsulated.
<DT><A HREF="org/apache/jserv/JServ.html#writeTable(javax.servlet.ServletOutputStream, java.lang.String, java.util.Hashtable, java.lang.String[])"><B>writeTable(ServletOutputStream, String, Hashtable, String[])</B></A> -
Method in class org.apache.jserv.<A HREF="org/apache/jserv/JServ.html">JServ</A>
<DD>
<DT><A HREF="org/apache/java/lang/Lock.html#writeUnlock()"><B>writeUnlock()</B></A> -
Method in class org.apache.java.lang.<A HREF="org/apache/java/lang/Lock.html">Lock</A>
<DD>Unlock a previously acquired write lock.
</DL>
<HR>
<A NAME="_X_"><!-- --></A><H2>
<B>X</B></H2>
<DL>
<DT><A HREF="org/apache/java/security/MD5.html#x"><B>x</B></A> -
Variable in class org.apache.java.security.<A HREF="org/apache/java/security/MD5.html">MD5</A>
<DD>
</DL>
<HR>
<A HREF="#_<_"><</A> <A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_F_">F</A> <A HREF="#_G_">G</A> <A HREF="#_H_">H</A> <A HREF="#_I_">I</A> <A HREF="#_J_">J</A> <A HREF="#_K_">K</A> <A HREF="#_L_">L</A> <A HREF="#_M_">M</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_Q_">Q</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <A HREF="#_W_">W</A> <A HREF="#_X_">X</A>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" ID="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="overview-summary.html"><FONT ID="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <FONT ID="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <FONT ID="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="overview-tree.html"><FONT ID="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="deprecated-list.html"><FONT ID="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" ID="NavBarCell1Rev"> <FONT ID="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="help-doc.html"><FONT ID="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" ID="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" ID="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="index-all.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
</BODY>
</HTML>
|