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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2_02) on Thu Jan 22 21:11:42 CET 2004 -->
<TITLE>
Index (OSCache 2.0.2-22Jan04 API)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="api.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Index (OSCache 2.0.2-22Jan04 API)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="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>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<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="#_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="#_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> <HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/events/ScopeEventType.html#ALL_SCOPES_FLUSHED"><B>ALL_SCOPES_FLUSHED</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/ScopeEventType.html" title="class in com.opensymphony.oscache.base.events">ScopeEventType</A>
<DD>Specifies an event type for the all scope flushed event.
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#APPLICATION_SCOPE"><B>APPLICATION_SCOPE</B></A> -
Static variable in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Application scope number
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#APPLICATION_SCOPE_NAME"><B>APPLICATION_SCOPE_NAME</B></A> -
Static variable in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base"><B>AbstractCacheAdministrator</B></A> - class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>.<DD>An AbstractCacheAdministrator defines an abstract cache administrator, implementing all
the basic operations related to the configuration of a cache, including assigning
any configured event handlers to cache objects.<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#AbstractCacheAdministrator()"><B>AbstractCacheAdministrator()</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Create the AbstractCacheAdministrator.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#AbstractCacheAdministrator(java.util.Properties)"><B>AbstractCacheAdministrator(Properties)</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Create the AbstractCacheAdministrator.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm"><B>AbstractConcurrentReadCache</B></A> - class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>.<DD>A version of Hashtable that supports mostly-concurrent reading, but exclusive writing.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#AbstractConcurrentReadCache(int, float)"><B>AbstractConcurrentReadCache(int, float)</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Constructs a new, empty map with the specified initial capacity and the specified load factor.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#AbstractConcurrentReadCache(int)"><B>AbstractConcurrentReadCache(int)</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Constructs a new, empty map with the specified initial capacity and default load factor.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#AbstractConcurrentReadCache()"><B>AbstractConcurrentReadCache()</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Constructs a new, empty map with a default initial capacity and load factor.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#AbstractConcurrentReadCache(java.util.Map)"><B>AbstractConcurrentReadCache(Map)</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Constructs a new map with the same mappings as the given map.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm"><B>AbstractConcurrentReadCache.Entry</B></A> - class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>.<DD>AbstractConcurrentReadCache collision list entry.<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm"><B>AbstractConcurrentReadCache.HashIterator</B></A> - class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>.<DD> <DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#AbstractConcurrentReadCache.HashIterator()"><B>AbstractConcurrentReadCache.HashIterator()</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.KeyIterator.html" title="class in com.opensymphony.oscache.base.algorithm"><B>AbstractConcurrentReadCache.KeyIterator</B></A> - class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.KeyIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.KeyIterator</A>.<DD> <DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.KeyIterator.html#AbstractConcurrentReadCache.KeyIterator()"><B>AbstractConcurrentReadCache.KeyIterator()</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.KeyIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.KeyIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.ValueIterator.html" title="class in com.opensymphony.oscache.base.algorithm"><B>AbstractConcurrentReadCache.ValueIterator</B></A> - class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.ValueIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.ValueIterator</A>.<DD> <DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.ValueIterator.html#AbstractConcurrentReadCache.ValueIterator()"><B>AbstractConcurrentReadCache.ValueIterator()</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.ValueIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.ValueIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventListener.html#accessed(com.opensymphony.oscache.base.events.CacheMapAccessEvent)"><B>accessed(CacheMapAccessEvent)</B></A> -
Method in interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventListener.html" title="interface in com.opensymphony.oscache.base.events">CacheMapAccessEventListener</A>
<DD>Event fired when an entry is accessed.
<DT><A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html#accessed(com.opensymphony.oscache.base.events.CacheMapAccessEvent)"><B>accessed(CacheMapAccessEvent)</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheMapAccessEventListenerImpl</A>
<DD>This method handles an event each time the cache is accessed
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#addCacheEventListener(com.opensymphony.oscache.base.events.CacheEventListener, java.lang.Class)"><B>addCacheEventListener(CacheEventListener, Class)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Register a listener for Cache events.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#addScopeEventListener(com.opensymphony.oscache.base.events.ScopeEventListener)"><B>addScopeEventListener(ScopeEventListener)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Register a listener for Cache Map events.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#algorithmClass"><B>algorithmClass</B></A> -
Variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>The algorithm class being used, as specified by the <A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#CACHE_ALGORITHM_KEY"><CODE>AbstractCacheAdministrator.CACHE_ALGORITHM_KEY</CODE></A>
configuration property.
</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#barrierLock"><B>barrierLock</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Lock used only for its memory effects.
</DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#CACHE_ALGORITHM_KEY"><B>CACHE_ALGORITHM_KEY</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>A String cache configuration property that specifies the classname of
an alternate caching algorithm.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#CACHE_BLOCKING_KEY"><B>CACHE_BLOCKING_KEY</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>The configuration key that specifies whether we should block waiting for new
content to be generated, or just serve the old content instead.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#CACHE_CAPACITY_KEY"><B>CACHE_CAPACITY_KEY</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>An integer cache configuration property that specifies the maximum number
of objects to hold in the cache.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#CACHE_DISK_UNLIMITED_KEY"><B>CACHE_DISK_UNLIMITED_KEY</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>A boolean cache configuration property that indicates whether the persistent
cache should be unlimited in size, or should be restricted to the same size
as the in-memory cache.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#CACHE_ENTRY_EVENT_LISTENERS"><B>CACHE_ENTRY_EVENT_LISTENERS</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>A String cache configuration property that holds a comma-delimited list of
classnames.
<DT><A HREF="com/opensymphony/oscache/base/events/CachewideEventType.html#CACHE_FLUSHED"><B>CACHE_FLUSHED</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachewideEventType.html" title="class in com.opensymphony.oscache.base.events">CachewideEventType</A>
<DD>Get an event type for a cache flush event.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#CACHE_MEMORY_KEY"><B>CACHE_MEMORY_KEY</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>A boolean cache configuration property that indicates whether the cache
should cache objects in memory.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base"><B>Cache</B></A> - class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>.<DD>Provides an interface to the cache itself. <DT><A HREF="com/opensymphony/oscache/base/Cache.html#Cache(boolean, boolean)"><B>Cache(boolean, boolean)</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Create a new Cache
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#Cache(boolean, boolean, boolean, java.lang.String, int)"><B>Cache(boolean, boolean, boolean, String, int)</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Create a new Cache.
<DT><A HREF="com/opensymphony/oscache/web/CacheContextListener.html" title="class in com.opensymphony.oscache.web"><B>CacheContextListener</B></A> - class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/CacheContextListener.html" title="class in com.opensymphony.oscache.web">CacheContextListener</A>.<DD> <DT><A HREF="com/opensymphony/oscache/web/CacheContextListener.html#CacheContextListener()"><B>CacheContextListener()</B></A> -
Constructor for class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/CacheContextListener.html" title="class in com.opensymphony.oscache.web">CacheContextListener</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base"><B>CacheEntry</B></A> - class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>.<DD>A CacheEntry instance represents one entry in the cache. <DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#CacheEntry(java.lang.String)"><B>CacheEntry(String)</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Construct a new CacheEntry using the key provided.
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#CacheEntry(java.lang.String, com.opensymphony.oscache.base.EntryRefreshPolicy)"><B>CacheEntry(String, EntryRefreshPolicy)</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Construct a CacheEntry.
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#CacheEntry(java.lang.String, com.opensymphony.oscache.base.EntryRefreshPolicy, java.lang.String[])"><B>CacheEntry(String, EntryRefreshPolicy, String[])</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Construct a CacheEntry.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html" title="class in com.opensymphony.oscache.base.events"><B>CacheEntryEvent</B></A> - class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEvent</A>.<DD>CacheEntryEvent is the object created when an event occurs on a
cache entry (Add, update, remove, flush). <DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html#CacheEntryEvent(com.opensymphony.oscache.base.Cache, com.opensymphony.oscache.base.CacheEntry)"><B>CacheEntryEvent(Cache, CacheEntry)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEvent</A>
<DD>Constructs a cache entry event object with no specified origin
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html#CacheEntryEvent(com.opensymphony.oscache.base.Cache, com.opensymphony.oscache.base.CacheEntry, java.lang.String)"><B>CacheEntryEvent(Cache, CacheEntry, String)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEvent</A>
<DD>Constructs a cache entry event object
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html" title="interface in com.opensymphony.oscache.base.events"><B>CacheEntryEventListener</B></A> - interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html" title="interface in com.opensymphony.oscache.base.events">CacheEntryEventListener</A>.<DD>This is the interface to listen to cache entry events. <DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra"><B>CacheEntryEventListenerImpl</B></A> - class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>.<DD>Implementation of a CacheEntryEventListener. <DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#CacheEntryEventListenerImpl()"><B>CacheEntryEventListenerImpl()</B></A> -
Constructor for class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Constructor, empty for us
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html" title="class in com.opensymphony.oscache.base.events"><B>CacheEntryEventType</B></A> - class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEventType</A>.<DD>This is all the possible events that may occur on a cache entry or
collection of cache entries.<DT><A HREF="com/opensymphony/oscache/base/events/CacheEvent.html" title="class in com.opensymphony.oscache.base.events"><B>CacheEvent</B></A> - class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEvent</A>.<DD>The root event class for all cache events. <DT><A HREF="com/opensymphony/oscache/base/events/CacheEvent.html#CacheEvent()"><B>CacheEvent()</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEvent</A>
<DD>No-argument constructor so subtypes can easily implement <code>Serializable</code>
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEvent.html#CacheEvent(java.lang.String)"><B>CacheEvent(String)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEvent</A>
<DD>Creates a cache event object that came from the specified origin.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEventListener.html" title="interface in com.opensymphony.oscache.base.events"><B>CacheEventListener</B></A> - interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEventListener.html" title="interface in com.opensymphony.oscache.base.events">CacheEventListener</A>.<DD>This is the base interface for cache events.<DT><A HREF="com/opensymphony/oscache/web/filter/CacheFilter.html" title="class in com.opensymphony.oscache.web.filter"><B>CacheFilter</B></A> - class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheFilter.html" title="class in com.opensymphony.oscache.web.filter">CacheFilter</A>.<DD>CacheFilter is a filter that allows for server-side caching of post-processed servlet content.<DT><A HREF="com/opensymphony/oscache/web/filter/CacheFilter.html#CacheFilter()"><B>CacheFilter()</B></A> -
Constructor for class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheFilter.html" title="class in com.opensymphony.oscache.web.filter">CacheFilter</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html" title="class in com.opensymphony.oscache.base.events"><B>CacheGroupEvent</B></A> - class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html" title="class in com.opensymphony.oscache.base.events">CacheGroupEvent</A>.<DD>CacheGroupEvent is an event that occurs at the cache group level
(Add, update, remove, flush). <DT><A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html#CacheGroupEvent(com.opensymphony.oscache.base.Cache, java.lang.String)"><B>CacheGroupEvent(Cache, String)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html" title="class in com.opensymphony.oscache.base.events">CacheGroupEvent</A>
<DD>Constructs a cache group event with no origin
<DT><A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html#CacheGroupEvent(com.opensymphony.oscache.base.Cache, java.lang.String, java.lang.String)"><B>CacheGroupEvent(Cache, String, String)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html" title="class in com.opensymphony.oscache.base.events">CacheGroupEvent</A>
<DD>Constructs a cache group event
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter"><B>CacheHttpServletResponseWrapper</B></A> - class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>.<DD>CacheServletResponse is a serialized representation of a response<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#CacheHttpServletResponseWrapper(javax.servlet.http.HttpServletResponse)"><B>CacheHttpServletResponseWrapper(HttpServletResponse)</B></A> -
Constructor for class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>Constructor
<DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html" title="class in com.opensymphony.oscache.base.events"><B>CacheMapAccessEvent</B></A> - class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html" title="class in com.opensymphony.oscache.base.events">CacheMapAccessEvent</A>.<DD>Cache map access event. <DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html#CacheMapAccessEvent(com.opensymphony.oscache.base.events.CacheMapAccessEventType, com.opensymphony.oscache.base.CacheEntry)"><B>CacheMapAccessEvent(CacheMapAccessEventType, CacheEntry)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html" title="class in com.opensymphony.oscache.base.events">CacheMapAccessEvent</A>
<DD>Constructor.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html#CacheMapAccessEvent(com.opensymphony.oscache.base.events.CacheMapAccessEventType, com.opensymphony.oscache.base.CacheEntry, java.lang.String)"><B>CacheMapAccessEvent(CacheMapAccessEventType, CacheEntry, String)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html" title="class in com.opensymphony.oscache.base.events">CacheMapAccessEvent</A>
<DD>Constructor.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventListener.html" title="interface in com.opensymphony.oscache.base.events"><B>CacheMapAccessEventListener</B></A> - interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventListener.html" title="interface in com.opensymphony.oscache.base.events">CacheMapAccessEventListener</A>.<DD>This is the interface to listen to cache map access events. <DT><A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html" title="class in com.opensymphony.oscache.extra"><B>CacheMapAccessEventListenerImpl</B></A> - class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheMapAccessEventListenerImpl</A>.<DD>Implementation of a CacheMapAccessEventListener. <DT><A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html#CacheMapAccessEventListenerImpl()"><B>CacheMapAccessEventListenerImpl()</B></A> -
Constructor for class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheMapAccessEventListenerImpl</A>
<DD>Constructor, empty for us
<DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventType.html" title="class in com.opensymphony.oscache.base.events"><B>CacheMapAccessEventType</B></A> - class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventType.html" title="class in com.opensymphony.oscache.base.events">CacheMapAccessEventType</A>.<DD>This is an enumeration of the cache events that represent the
various outcomes of cache accesses.<DT><A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html" title="class in com.opensymphony.oscache.base.events"><B>CachePatternEvent</B></A> - class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html" title="class in com.opensymphony.oscache.base.events">CachePatternEvent</A>.<DD>A CachePatternEvent is fired when a pattern has been applied to a cache.<DT><A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html#CachePatternEvent(com.opensymphony.oscache.base.Cache, java.lang.String)"><B>CachePatternEvent(Cache, String)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html" title="class in com.opensymphony.oscache.base.events">CachePatternEvent</A>
<DD>Constructs a cache pattern event with no origin
<DT><A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html#CachePatternEvent(com.opensymphony.oscache.base.Cache, java.lang.String, java.lang.String)"><B>CachePatternEvent(Cache, String, String)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html" title="class in com.opensymphony.oscache.base.events">CachePatternEvent</A>
<DD>Constructs a cache pattern event
<DT><A HREF="com/opensymphony/oscache/base/persistence/CachePersistenceException.html" title="class in com.opensymphony.oscache.base.persistence"><B>CachePersistenceException</B></A> - exception com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/CachePersistenceException.html" title="class in com.opensymphony.oscache.base.persistence">CachePersistenceException</A>.<DD>Exception thrown when an error occurs in a PersistenceListener implementation.<DT><A HREF="com/opensymphony/oscache/base/persistence/CachePersistenceException.html#CachePersistenceException()"><B>CachePersistenceException()</B></A> -
Constructor for class com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/CachePersistenceException.html" title="class in com.opensymphony.oscache.base.persistence">CachePersistenceException</A>
<DD>Creates new CachePersistenceException without detail message.
<DT><A HREF="com/opensymphony/oscache/base/persistence/CachePersistenceException.html#CachePersistenceException(java.lang.String)"><B>CachePersistenceException(String)</B></A> -
Constructor for class com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/CachePersistenceException.html" title="class in com.opensymphony.oscache.base.persistence">CachePersistenceException</A>
<DD>Constructs an CachePersistenceException with the specified detail message.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag"><B>CacheTag</B></A> - class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>.<DD>CacheTag is a tag that allows for server-side caching of post-processed JSP content.<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#CacheTag()"><B>CacheTag()</B></A> -
Constructor for class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/events/CachewideEvent.html" title="class in com.opensymphony.oscache.base.events"><B>CachewideEvent</B></A> - class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachewideEvent.html" title="class in com.opensymphony.oscache.base.events">CachewideEvent</A>.<DD>A <code>CachewideEvent<code> represents and event that occurs on
the the entire cache, eg a cache flush or clear.<DT><A HREF="com/opensymphony/oscache/base/events/CachewideEvent.html#CachewideEvent(com.opensymphony.oscache.base.Cache, java.util.Date, java.lang.String)"><B>CachewideEvent(Cache, Date, String)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachewideEvent.html" title="class in com.opensymphony.oscache.base.events">CachewideEvent</A>
<DD>Constructs a cachewide event with the specified origin.
<DT><A HREF="com/opensymphony/oscache/base/events/CachewideEventType.html" title="class in com.opensymphony.oscache.base.events"><B>CachewideEventType</B></A> - class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachewideEventType.html" title="class in com.opensymphony.oscache.base.events">CachewideEventType</A>.<DD>This is an enumeration holding all the events that can
occur at the cache-wide level.<DT><A HREF="com/opensymphony/oscache/util/ClassLoaderUtil.html" title="class in com.opensymphony.oscache.util"><B>ClassLoaderUtil</B></A> - class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/ClassLoaderUtil.html" title="class in com.opensymphony.oscache.util">ClassLoaderUtil</A>.<DD>This code is borrowed directly from OSCore, but is duplicated
here to avoid having to add a dependency on the entire OSCore jar.<DT><A HREF="com/opensymphony/oscache/util/ClassLoaderUtil.html#ClassLoaderUtil()"><B>ClassLoaderUtil()</B></A> -
Constructor for class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/ClassLoaderUtil.html" title="class in com.opensymphony.oscache.util">ClassLoaderUtil</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/Config.html" title="class in com.opensymphony.oscache.base"><B>Config</B></A> - class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Config.html" title="class in com.opensymphony.oscache.base">Config</A>.<DD>Responsible for holding the Cache configuration properties. <DT><A HREF="com/opensymphony/oscache/base/Config.html#Config()"><B>Config()</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Config.html" title="class in com.opensymphony.oscache.base">Config</A>
<DD>Create an OSCache Config that loads properties from oscache.properties.
<DT><A HREF="com/opensymphony/oscache/base/Config.html#Config(java.util.Properties)"><B>Config(Properties)</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Config.html" title="class in com.opensymphony.oscache.base">Config</A>
<DD>Create an OSCache configuration with the specified properties.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#cacheCapacity"><B>cacheCapacity</B></A> -
Variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>The cache capacity (number of entries), as specified by the <A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#CACHE_CAPACITY_KEY"><CODE>AbstractCacheAdministrator.CACHE_CAPACITY_KEY</CODE></A>
configuration property.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html#cacheEntryAdded(com.opensymphony.oscache.base.events.CacheEntryEvent)"><B>cacheEntryAdded(CacheEntryEvent)</B></A> -
Method in interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html" title="interface in com.opensymphony.oscache.base.events">CacheEntryEventListener</A>
<DD>Event fired when an entry is added to the cache.
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#cacheEntryAdded(com.opensymphony.oscache.base.events.CacheEntryEvent)"><B>cacheEntryAdded(CacheEntryEvent)</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Handles the event fired when an entry is added in the cache.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html#cacheEntryFlushed(com.opensymphony.oscache.base.events.CacheEntryEvent)"><B>cacheEntryFlushed(CacheEntryEvent)</B></A> -
Method in interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html" title="interface in com.opensymphony.oscache.base.events">CacheEntryEventListener</A>
<DD>Event fired when an entry is flushed from the cache.
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#cacheEntryFlushed(com.opensymphony.oscache.base.events.CacheEntryEvent)"><B>cacheEntryFlushed(CacheEntryEvent)</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Handles the event fired when an entry is flushed from the cache.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html#cacheEntryRemoved(com.opensymphony.oscache.base.events.CacheEntryEvent)"><B>cacheEntryRemoved(CacheEntryEvent)</B></A> -
Method in interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html" title="interface in com.opensymphony.oscache.base.events">CacheEntryEventListener</A>
<DD>Event fired when an entry is removed from the cache.
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#cacheEntryRemoved(com.opensymphony.oscache.base.events.CacheEntryEvent)"><B>cacheEntryRemoved(CacheEntryEvent)</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Handles the event fired when an entry is removed from the cache.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html#cacheEntryUpdated(com.opensymphony.oscache.base.events.CacheEntryEvent)"><B>cacheEntryUpdated(CacheEntryEvent)</B></A> -
Method in interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html" title="interface in com.opensymphony.oscache.base.events">CacheEntryEventListener</A>
<DD>Event fired when an entry is updated in the cache.
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#cacheEntryUpdated(com.opensymphony.oscache.base.events.CacheEntryEvent)"><B>cacheEntryUpdated(CacheEntryEvent)</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Handles the event fired when an entry is updated in the cache.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html#cacheFlushed(com.opensymphony.oscache.base.events.CachewideEvent)"><B>cacheFlushed(CachewideEvent)</B></A> -
Method in interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html" title="interface in com.opensymphony.oscache.base.events">CacheEntryEventListener</A>
<DD>An event that is fired when an entire cache gets flushed.
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#cacheFlushed(com.opensymphony.oscache.base.events.CachewideEvent)"><B>cacheFlushed(CachewideEvent)</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Handles the event fired when a cache flush occurs.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html#cacheGroupFlushed(com.opensymphony.oscache.base.events.CacheGroupEvent)"><B>cacheGroupFlushed(CacheGroupEvent)</B></A> -
Method in interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html" title="interface in com.opensymphony.oscache.base.events">CacheEntryEventListener</A>
<DD>Event fired when a group is flushed from the cache.
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#cacheGroupFlushed(com.opensymphony.oscache.base.events.CacheGroupEvent)"><B>cacheGroupFlushed(CacheGroupEvent)</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Handles the event fired when a group is flushed from the cache.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html#cachePatternFlushed(com.opensymphony.oscache.base.events.CachePatternEvent)"><B>cachePatternFlushed(CachePatternEvent)</B></A> -
Method in interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventListener.html" title="interface in com.opensymphony.oscache.base.events">CacheEntryEventListener</A>
<DD>Event fired when a key pattern is flushed from the cache.
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#cachePatternFlushed(com.opensymphony.oscache.base.events.CachePatternEvent)"><B>cachePatternFlushed(CachePatternEvent)</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Handles the event fired when a pattern is flushed from the cache.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#cancelUpdate(java.lang.String)"><B>cancelUpdate(String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Cancels any pending update for this cache entry.
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#cancelUpdate()"><B>cancelUpdate()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>Updates the state to <code>UPDATE_CANCELLED</code>.
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#cancelUpdate(java.lang.String)"><B>cancelUpdate(String)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Cancels a pending cache update.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#cancelUpdate(int, javax.servlet.http.HttpServletRequest, java.lang.String)"><B>cancelUpdate(int, HttpServletRequest, String)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Cancels a pending cache update.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#capacity()"><B>capacity()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Return the number of slots in this table.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#clear()"><B>clear()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Completely clears the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#clear()"><B>clear()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Removes all mappings from this map.
<DT><A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html#clear()"><B>clear()</B></A> -
Method in interface com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence">PersistenceListener</A>
<DD>Clear the entire persistent cache (including the root)
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html#clone()"><B>clone()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#clone()"><B>clone()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Returns a shallow copy of this.
<DT><A HREF="com/opensymphony/oscache/base/package-summary.html"><B>com.opensymphony.oscache.base</B></A> - package com.opensymphony.oscache.base<DD>Provides the base classes and interfaces that make up the core of OSCache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/package-summary.html"><B>com.opensymphony.oscache.base.algorithm</B></A> - package com.opensymphony.oscache.base.algorithm<DD>Provides the classes that implement the caching algorithms used by OSCache, all of
which are based on a derivative of Doug Lea's <code>ConcurrentReaderHashMap</code>.
<DT><A HREF="com/opensymphony/oscache/base/events/package-summary.html"><B>com.opensymphony.oscache.base.events</B></A> - package com.opensymphony.oscache.base.events<DD>Provides the base classes and interfaces that allow pluggable event handlers to be
incorporated into OSCache.
<DT><A HREF="com/opensymphony/oscache/base/persistence/package-summary.html"><B>com.opensymphony.oscache.base.persistence</B></A> - package com.opensymphony.oscache.base.persistence<DD>Provides the interfaces that provide persistence storage of cached objects.
<DT><A HREF="com/opensymphony/oscache/extra/package-summary.html"><B>com.opensymphony.oscache.extra</B></A> - package com.opensymphony.oscache.extra<DD>Provides some basic event handler implementations that aren't essential to the core
OSCache code, but form a useful starting point for basic logging or further development.
<DT><A HREF="com/opensymphony/oscache/general/package-summary.html"><B>com.opensymphony.oscache.general</B></A> - package com.opensymphony.oscache.general<DD>Provides a generic administrator class for the cache.
<DT><A HREF="com/opensymphony/oscache/util/package-summary.html"><B>com.opensymphony.oscache.util</B></A> - package com.opensymphony.oscache.util<DD>Provides utility classes that perform fairly general-purpose functions and are required
by OSCache.
<DT><A HREF="com/opensymphony/oscache/web/package-summary.html"><B>com.opensymphony.oscache.web</B></A> - package com.opensymphony.oscache.web<DD>Provides classes and interfaces that make up the base of OSCache's web application support.
<DT><A HREF="com/opensymphony/oscache/web/filter/package-summary.html"><B>com.opensymphony.oscache.web.filter</B></A> - package com.opensymphony.oscache.web.filter<DD>Provides the caching filter (and its support classes) that allows HTTP responses
to be cached by OSCache.
<DT><A HREF="com/opensymphony/oscache/web/tag/package-summary.html"><B>com.opensymphony.oscache.web.tag</B></A> - package com.opensymphony.oscache.web.tag<DD>Provides the tag libraries that allow OSCache to be accessed via JSP custom tags for
caching portions of JSP pages.
<DT><A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html#commit()"><B>commit()</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html" title="class in com.opensymphony.oscache.web.filter">ResponseContent</A>
<DD>Called once the response has been written in its entirety.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#completeUpdate(java.lang.String)"><B>completeUpdate(String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Removes the update state for the specified key and notifies any other
threads that are waiting on this object.
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#completeUpdate()"><B>completeUpdate()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>Updates the state to <code>UPDATE_COMPLETE</code>.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#config"><B>config</B></A> -
Variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html#configure(com.opensymphony.oscache.base.Config)"><B>configure(Config)</B></A> -
Method in interface com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence">PersistenceListener</A>
<DD>Allow the persistence code to initialize itself based on the supplied
cache configuration.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#configureStandardListeners(com.opensymphony.oscache.base.Cache)"><B>configureStandardListeners(Cache)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Applies all of the recognised listener classes to the supplied
cache object.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#contains(java.lang.Object)"><B>contains(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Tests if some key maps into the specified value in this table.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#containsKey(java.lang.Object)"><B>containsKey(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Tests if the specified object is a key in this table.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#containsValue(java.lang.Object)"><B>containsValue(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Returns <tt>true</tt> if this map maps one or more keys to the
specified value.
<DT><A HREF="com/opensymphony/oscache/web/CacheContextListener.html#contextDestroyed(javax.servlet.ServletContextEvent)"><B>contextDestroyed(ServletContextEvent)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/CacheContextListener.html" title="class in com.opensymphony.oscache.web">CacheContextListener</A>
<DD>This notification occurs when the servlet context is about to be shut down.
<DT><A HREF="com/opensymphony/oscache/web/CacheContextListener.html#contextInitialized(javax.servlet.ServletContextEvent)"><B>contextInitialized(ServletContextEvent)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/CacheContextListener.html" title="class in com.opensymphony.oscache.web">CacheContextListener</A>
<DD>This notification occurs when the webapp is ready to process requests.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#count"><B>count</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>The total number of mappings in the hash table.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#currentKey"><B>currentKey</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#currentValue"><B>currentValue</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#DEFAULT_INITIAL_CAPACITY"><B>DEFAULT_INITIAL_CAPACITY</B></A> -
Static variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>The default initial number of table slots for this table (32).
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#DEFAULT_LOAD_FACTOR"><B>DEFAULT_LOAD_FACTOR</B></A> -
Static variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>The default load factor for this table.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#DEFAULT_MAX_ENTRIES"><B>DEFAULT_MAX_ENTRIES</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Default cache capacity (number of entries).
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#destroy()"><B>destroy()</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Shuts down the cache administrator.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheFilter.html#destroy()"><B>destroy()</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheFilter.html" title="class in com.opensymphony.oscache.web.filter">CacheFilter</A>
<DD>Filter clean-up
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#destroyInstance(javax.servlet.ServletContext)"><B>destroyInstance(ServletContext)</B></A> -
Static method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Shuts down the cache administrator.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#doAfterBody()"><B>doAfterBody()</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>After the cache body, either update the cache, serve new cached content or
indicate an error.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#doCatch(java.lang.Throwable)"><B>doCatch(Throwable)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#doEndTag()"><B>doEndTag()</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>The end tag - clean up variables used.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheFilter.html#doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain)"><B>doFilter(ServletRequest, ServletResponse, FilterChain)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheFilter.html" title="class in com.opensymphony.oscache.web.filter">CacheFilter</A>
<DD>The doFilter call caches the response by wrapping the <code>HttpServletResponse</code>
object so that the output stream can be caught.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#doFinally()"><B>doFinally()</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#doStartTag()"><B>doStartTag()</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>The start of the tag.
<DT><A HREF="com/opensymphony/oscache/web/tag/FlushTag.html#doStartTag()"><B>doStartTag()</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/FlushTag.html" title="class in com.opensymphony.oscache.web.tag">FlushTag</A>
<DD>Process the start of the tag.
<DT><A HREF="com/opensymphony/oscache/web/tag/GroupTag.html#doStartTag()"><B>doStartTag()</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/GroupTag.html" title="class in com.opensymphony.oscache.web.tag">GroupTag</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/web/tag/UseCachedTag.html#doStartTag()"><B>doStartTag()</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/UseCachedTag.html" title="class in com.opensymphony.oscache.web.tag">UseCachedTag</A>
<DD>The start tag.
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html#ENTRY_ADDED"><B>ENTRY_ADDED</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEventType</A>
<DD>Get an event type for an entry added.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html#ENTRY_FLUSHED"><B>ENTRY_FLUSHED</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEventType</A>
<DD>Get an event type for an entry flushed.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html#ENTRY_REMOVED"><B>ENTRY_REMOVED</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEventType</A>
<DD>Get an event type for an entry removed.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html#ENTRY_UPDATED"><B>ENTRY_UPDATED</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEventType</A>
<DD>Get an event type for an entry updated.
<DT><A HREF="com/opensymphony/oscache/base/EntryRefreshPolicy.html" title="interface in com.opensymphony.oscache.base"><B>EntryRefreshPolicy</B></A> - interface com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryRefreshPolicy.html" title="interface in com.opensymphony.oscache.base">EntryRefreshPolicy</A>.<DD>Interface that allows custom code to be called when checking to see if a cache entry
has expired. <DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base"><B>EntryUpdateState</B></A> - class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>.<DD>Holds the state of a Cache Entry that is in the process of being (re)generated.
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#EntryUpdateState()"><B>EntryUpdateState()</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#elements()"><B>elements()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Returns an enumeration of the values in this table.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#entry"><B>entry</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#entrySet"><B>entrySet</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#entrySet()"><B>entrySet()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Returns a collection view of the mappings contained in this map.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>
<DD>
</DL>
<HR>
<A NAME="_F_"><!-- --></A><H2>
<B>F</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html" title="class in com.opensymphony.oscache.base.algorithm"><B>FIFOCache</B></A> - class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html" title="class in com.opensymphony.oscache.base.algorithm">FIFOCache</A>.<DD>FIFO (First In First Out) based queue algorithm for the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html#FIFOCache()"><B>FIFOCache()</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html" title="class in com.opensymphony.oscache.base.algorithm">FIFOCache</A>
<DD>Constructs a FIFO Cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html#FIFOCache(int)"><B>FIFOCache(int)</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html" title="class in com.opensymphony.oscache.base.algorithm">FIFOCache</A>
<DD>Constructs a FIFO Cache of the specified capacity.
<DT><A HREF="com/opensymphony/oscache/util/FastCronParser.html" title="class in com.opensymphony.oscache.util"><B>FastCronParser</B></A> - class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/FastCronParser.html" title="class in com.opensymphony.oscache.util">FastCronParser</A>.<DD>Parses cron expressions and determines at what time in the past is the
most recent match for the supplied expression.<DT><A HREF="com/opensymphony/oscache/util/FastCronParser.html#FastCronParser()"><B>FastCronParser()</B></A> -
Constructor for class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/FastCronParser.html" title="class in com.opensymphony.oscache.util">FastCronParser</A>
<DD>Creates a FastCronParser that uses a default cron expression of <code>"* * * * *"</cron>.
<DT><A HREF="com/opensymphony/oscache/util/FastCronParser.html#FastCronParser(java.lang.String)"><B>FastCronParser(String)</B></A> -
Constructor for class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/FastCronParser.html" title="class in com.opensymphony.oscache.util">FastCronParser</A>
<DD>Constructs a new FastCronParser based on the supplied expression.
<DT><A HREF="com/opensymphony/oscache/base/FinalizationException.html" title="class in com.opensymphony.oscache.base"><B>FinalizationException</B></A> - exception com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/FinalizationException.html" title="class in com.opensymphony.oscache.base">FinalizationException</A>.<DD>Thrown by <A HREF="com/opensymphony/oscache/base/LifecycleAware.html" title="interface in com.opensymphony.oscache.base"><CODE>LifecycleAware</CODE></A> listeners that are not able to finalize
themselves.<DT><A HREF="com/opensymphony/oscache/base/FinalizationException.html#FinalizationException()"><B>FinalizationException()</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/FinalizationException.html" title="class in com.opensymphony.oscache.base">FinalizationException</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/FinalizationException.html#FinalizationException(java.lang.String)"><B>FinalizationException(String)</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/FinalizationException.html" title="class in com.opensymphony.oscache.base">FinalizationException</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/web/tag/FlushTag.html" title="class in com.opensymphony.oscache.web.tag"><B>FlushTag</B></A> - class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/FlushTag.html" title="class in com.opensymphony.oscache.web.tag">FlushTag</A>.<DD>FlushTag flushes caches created with <cache>.
<DT><A HREF="com/opensymphony/oscache/web/tag/FlushTag.html#FlushTag()"><B>FlushTag()</B></A> -
Constructor for class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/FlushTag.html" title="class in com.opensymphony.oscache.web.tag">FlushTag</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#finalizeListeners(com.opensymphony.oscache.base.Cache)"><B>finalizeListeners(Cache)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Finalizes all the listeners that are associated with the given cache object.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#finalizeListeners(com.opensymphony.oscache.base.Cache)"><B>finalizeListeners(Cache)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Finalizes all the listeners that are associated with the given cache object
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#findAndRemoveEntry(java.util.Map.Entry)"><B>findAndRemoveEntry(Map.Entry)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Helper method for entrySet remove.
<DT><A HREF="com/opensymphony/oscache/base/LifecycleAware.html#finialize()"><B>finialize()</B></A> -
Method in interface com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/LifecycleAware.html" title="interface in com.opensymphony.oscache.base">LifecycleAware</A>
<DD>Called by the cache administrator class when a cache is destroyed.
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#flush()"><B>flush()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Flush the entry from cache.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#flushAll(java.util.Date)"><B>flushAll(Date)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Flush all entries in the cache on the given date/time.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#flushAll(java.util.Date, java.lang.String)"><B>flushAll(Date, String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Flush all entries in the cache on the given date/time.
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#flushAll()"><B>flushAll()</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Flush the entire cache immediately.
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#flushAll(java.util.Date)"><B>flushAll(Date)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Flush the entire cache at the given date.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#flushAll(java.util.Date)"><B>flushAll(Date)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Flush all scopes at a particular time
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#flushAll()"><B>flushAll()</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Flush all scopes instantly.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#flushBuffer()"><B>flushBuffer()</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#flushEntry(java.lang.String)"><B>flushEntry(String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Flush the cache entry (if any) that corresponds to the cache key supplied.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#flushEntry(java.lang.String, java.lang.String)"><B>flushEntry(String, String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Flush the cache entry (if any) that corresponds to the cache key supplied.
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#flushEntry(java.lang.String)"><B>flushEntry(String)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Flushes a single cache entry.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#flushGroup(java.lang.String)"><B>flushGroup(String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Flushes all objects that belong to the supplied group.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#flushGroup(java.lang.String, java.lang.String)"><B>flushGroup(String, String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Flushes all unexpired objects that belong to the supplied group.
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#flushGroup(java.lang.String)"><B>flushGroup(String)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Flushes all items that belong to the specified group.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#flushPattern(java.lang.String)"><B>flushPattern(String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD><B>Deprecated.</B> <I>For performance and flexibility reasons it is preferable to
store cache entries in groups and use the <A HREF="com/opensymphony/oscache/base/Cache.html#flushGroup(java.lang.String)"><CODE>Cache.flushGroup(String)</CODE></A> method
instead of relying on pattern flushing.</I>
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#flushPattern(java.lang.String, java.lang.String)"><B>flushPattern(String, String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD><B>Deprecated.</B> <I>For performance and flexibility reasons it is preferable to
store cache entries in groups and use the <A HREF="com/opensymphony/oscache/base/Cache.html#flushGroup(java.lang.String, java.lang.String)"><CODE>Cache.flushGroup(String, String)</CODE></A>
method instead of relying on pattern flushing.</I>
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#flushPattern(java.lang.String)"><B>flushPattern(String)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD><B>Deprecated.</B> <I>For performance and flexibility reasons it is preferable to
store cache entries in groups and use the <A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#flushGroup(java.lang.String)"><CODE>GeneralCacheAdministrator.flushGroup(String)</CODE></A> method
instead of relying on pattern flushing.</I>
</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html#GROUP_FLUSHED"><B>GROUP_FLUSHED</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEventType</A>
<DD>Get an event type for a group flush event.
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general"><B>GeneralCacheAdministrator</B></A> - class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>.<DD>A GeneralCacheAdministrator creates, flushes and administers the cache.
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#GeneralCacheAdministrator()"><B>GeneralCacheAdministrator()</B></A> -
Constructor for class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Create the cache administrator.
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#GeneralCacheAdministrator(java.util.Properties)"><B>GeneralCacheAdministrator(Properties)</B></A> -
Constructor for class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Create the cache administrator with the specified properties
<DT><A HREF="com/opensymphony/oscache/web/tag/GroupTag.html" title="class in com.opensymphony.oscache.web.tag"><B>GroupTag</B></A> - class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/GroupTag.html" title="class in com.opensymphony.oscache.web.tag">GroupTag</A>.<DD>GroupTag is a tag that adds a group to an ancestor CacheTag's groups.<DT><A HREF="com/opensymphony/oscache/web/tag/GroupTag.html#GroupTag()"><B>GroupTag()</B></A> -
Constructor for class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/GroupTag.html" title="class in com.opensymphony.oscache.web.tag">GroupTag</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#generateEntryKey(java.lang.String, javax.servlet.http.HttpServletRequest, int)"><B>generateEntryKey(String, HttpServletRequest, int)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Generates a cache entry key.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#generateEntryKey(java.lang.String, javax.servlet.http.HttpServletRequest, int, java.lang.String)"><B>generateEntryKey(String, HttpServletRequest, int, String)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Generates a cache entry key.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#generateEntryKey(java.lang.String, javax.servlet.http.HttpServletRequest, int, java.lang.String, java.lang.String)"><B>generateEntryKey(String, HttpServletRequest, int, String, String)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Generates a cache entry key.
<DT><A HREF="com/opensymphony/oscache/base/Config.html#get(java.lang.Object)"><B>get(Object)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Config.html" title="class in com.opensymphony.oscache.base">Config</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#get(java.lang.Object)"><B>get(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Returns the value to which the specified key is mapped in this table.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#getAppScopeCache(javax.servlet.ServletContext)"><B>getAppScopeCache(ServletContext)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>A convenience method to retrieve the application scope cache
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#getApplicationScopeFlushCount()"><B>getApplicationScopeFlushCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Gets the flush count for scope <A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#APPLICATION_SCOPE"><CODE>ScopeEventListenerImpl.APPLICATION_SCOPE</CODE></A>.
<DT><A HREF="com/opensymphony/oscache/base/events/CachewideEvent.html#getCache()"><B>getCache()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachewideEvent.html" title="class in com.opensymphony.oscache.base.events">CachewideEvent</A>
<DD>Retrieve the cache map that the event occurred on.
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#getCache()"><B>getCache()</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Grabs a cache
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#getCache(javax.servlet.http.HttpServletRequest, int)"><B>getCache(HttpServletRequest, int)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Grabs the cache for the specified scope
<DT><A HREF="com/opensymphony/oscache/base/NeedsRefreshException.html#getCacheContent()"><B>getCacheContent()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/NeedsRefreshException.html" title="class in com.opensymphony.oscache.base">NeedsRefreshException</A>
<DD>Retrieve current object in the cache
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#getCacheEntry(java.lang.String, com.opensymphony.oscache.base.EntryRefreshPolicy, java.lang.String)"><B>getCacheEntry(String, EntryRefreshPolicy, String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Get an entry from this cache or create one if it doesn't exist.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html#getCacheEntry()"><B>getCacheEntry()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html" title="class in com.opensymphony.oscache.base.events">CacheMapAccessEvent</A>
<DD>Retrieve the cache entry that the event applies to.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html#getCacheEntryKey()"><B>getCacheEntryKey()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html" title="class in com.opensymphony.oscache.base.events">CacheMapAccessEvent</A>
<DD>Retrieve the cache entry key that the event applies to.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#getCacheEventListeners()"><B>getCacheEventListeners()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Retrieves an array containing instances all of the <A HREF="com/opensymphony/oscache/base/events/CacheEventListener.html" title="interface in com.opensymphony.oscache.base.events"><CODE>CacheEventListener</CODE></A>
classes that are specified in the OSCache configuration file.
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#getCacheFlushedCount()"><B>getCacheFlushedCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Gets the cache flush counter
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#getCacheKey()"><B>getCacheKey()</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Get the cache key from the properties.
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#getContent()"><B>getContent()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Get the cached content from this CacheEntry.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#getContent()"><B>getContent()</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>Get a response content
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#getCreated()"><B>getCreated()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Get the date this CacheEntry was created.
<DT><A HREF="com/opensymphony/oscache/util/FastCronParser.html#getCronExpression()"><B>getCronExpression()</B></A> -
Method in class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/FastCronParser.html" title="class in com.opensymphony.oscache.util">FastCronParser</A>
<DD>Retrieves the current cron expression.
<DT><A HREF="com/opensymphony/oscache/base/events/CachewideEvent.html#getDate()"><B>getDate()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachewideEvent.html" title="class in com.opensymphony.oscache.base.events">CachewideEvent</A>
<DD>Retrieve the date/time that the cache flush is scheduled for.
<DT><A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html#getDate()"><B>getDate()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html" title="class in com.opensymphony.oscache.base.events">ScopeEvent</A>
<DD>Retrieve the event date
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html#getEntry()"><B>getEntry()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEvent</A>
<DD>Retrieve the cache entry that the event applies to.
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#getEntryAddedCount()"><B>getEntryAddedCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Gets the add counter
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#getEntryFlushedCount()"><B>getEntryFlushedCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Gets the flushed counter
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#getEntryRemovedCount()"><B>getEntryRemovedCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Gets the removed counter
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#getEntryUpdatedCount()"><B>getEntryUpdatedCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Gets the updated counter
<DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html#getEventType()"><B>getEventType()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEvent.html" title="class in com.opensymphony.oscache.base.events">CacheMapAccessEvent</A>
<DD>Retrieve the type of the event.
<DT><A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html#getEventType()"><B>getEventType()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html" title="class in com.opensymphony.oscache.base.events">ScopeEvent</A>
<DD>Retrieve the type of the event.
<DT><A HREF="com/opensymphony/oscache/util/FastCronParser.html#getExpressionSummary()"><B>getExpressionSummary()</B></A> -
Method in class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/FastCronParser.html" title="class in com.opensymphony.oscache.util">FastCronParser</A>
<DD>Recreates the original human-readable cron expression based on the internal
datastructure values.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#getFlushTime(int)"><B>getFlushTime(int)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Get the flush time for a particular scope.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#getFromCache(java.lang.String)"><B>getFromCache(String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Retrieve an object from the cache specifying its key.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#getFromCache(java.lang.String, int)"><B>getFromCache(String, int)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Retrieve an object from the cache specifying its key.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#getFromCache(java.lang.String, int, java.lang.String)"><B>getFromCache(String, int, String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Retrieve an object from the cache specifying its key.
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#getFromCache(java.lang.String)"><B>getFromCache(String)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Get an object from the cache
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#getFromCache(java.lang.String, int)"><B>getFromCache(String, int)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Get an object from the cache
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#getFromCache(java.lang.String, int, java.lang.String)"><B>getFromCache(String, int, String)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Get an object from the cache
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#getFromCache(int, javax.servlet.http.HttpServletRequest, java.lang.String, int)"><B>getFromCache(int, HttpServletRequest, String, int)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Retrieve an item from the cache
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#getGroup(java.lang.String)"><B>getGroup(String)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Returns a set of the cache keys that reside in a particular group.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html#getGroup()"><B>getGroup()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html" title="class in com.opensymphony.oscache.base.events">CacheGroupEvent</A>
<DD>Retrieve the cache group that the event applies to.
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#getGroupFlushedCount()"><B>getGroupFlushedCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Gets the group flush counter
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#getGroups()"><B>getGroups()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Gets the cache groups that this cache entry belongs to.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#getGroupsForReading()"><B>getGroupsForReading()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Get ref to groups.
<DT><A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html#getHitCount()"><B>getHitCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheMapAccessEventListenerImpl</A>
<DD>Returns the cache's current hit count
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#getInstance(javax.servlet.ServletContext)"><B>getInstance(ServletContext)</B></A> -
Static method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Obtain an instance of the CacheAdministrator
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#getInstance(javax.servlet.ServletContext, java.util.Properties)"><B>getInstance(ServletContext, Properties)</B></A> -
Static method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Obtain an instance of the CacheAdministrator
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#getKey()"><B>getKey()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Get the key of this CacheEntry
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html#getKey()"><B>getKey()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html#getKey()"><B>getKey()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEvent</A>
<DD>Retrieve the cache entry key
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#getLastUpdate()"><B>getLastUpdate()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Get the date this CacheEntry was last updated.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html#getMap()"><B>getMap()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEvent</A>
<DD>Retrieve the cache map where the entry resides.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html#getMap()"><B>getMap()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html" title="class in com.opensymphony.oscache.base.events">CacheGroupEvent</A>
<DD>Retrieve the cache map where the group resides.
<DT><A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html#getMap()"><B>getMap()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html" title="class in com.opensymphony.oscache.base.events">CachePatternEvent</A>
<DD>Retrieve the cache map that had the pattern applied.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#getMaxEntries()"><B>getMaxEntries()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Retrieve the cache capacity (number of entries).
<DT><A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html#getMissCount()"><B>getMissCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheMapAccessEventListenerImpl</A>
<DD>Returns the cache's current miss count
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEvent.html#getOrigin()"><B>getOrigin()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEvent</A>
<DD>Retrieves the origin of this event, if one was specified.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#getOutputStream()"><B>getOutputStream()</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>Get an output stream
<DT><A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html#getOutputStream()"><B>getOutputStream()</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html" title="class in com.opensymphony.oscache.web.filter">ResponseContent</A>
<DD>Get an output stream.
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#getPageScopeFlushCount()"><B>getPageScopeFlushCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Gets the flush count for scope <A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#PAGE_SCOPE"><CODE>ScopeEventListenerImpl.PAGE_SCOPE</CODE></A>.
<DT><A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html#getPattern()"><B>getPattern()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html" title="class in com.opensymphony.oscache.base.events">CachePatternEvent</A>
<DD>Retrieve the pattern that was applied to the cache.
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#getPatternFlushedCount()"><B>getPatternFlushedCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Gets the pattern flush counter
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#getPersistenceListener()"><B>getPersistenceListener()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Retrieves the currently configured <code>PersistenceListener</code>.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#getPersistenceListener()"><B>getPersistenceListener()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Get the persistence listener.
<DT><A HREF="com/opensymphony/oscache/base/Config.html#getProperties()"><B>getProperties()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Config.html" title="class in com.opensymphony.oscache.base">Config</A>
<DD>Retrieves all of the configuration properties.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#getProperty(java.lang.String)"><B>getProperty(String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Retrieves the value of one of the configuration properties.
<DT><A HREF="com/opensymphony/oscache/base/Config.html#getProperty(java.lang.String)"><B>getProperty(String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Config.html" title="class in com.opensymphony.oscache.base">Config</A>
<DD>Retrieve the value of the named configuration property.
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#getRequestScopeFlushCount()"><B>getRequestScopeFlushCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Gets the flush count for scope <A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#REQUEST_SCOPE"><CODE>ScopeEventListenerImpl.REQUEST_SCOPE</CODE></A>.
<DT><A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html#getScope()"><B>getScope()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html" title="class in com.opensymphony.oscache.base.events">ScopeEvent</A>
<DD>Retrieve the scope that applies to the event.
<DT><A HREF="com/opensymphony/oscache/web/ServletCache.html#getScope()"><B>getScope()</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCache.html" title="class in com.opensymphony.oscache.web">ServletCache</A>
<DD>Get the cache scope
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#getSessionScopeCache(javax.servlet.http.HttpSession)"><B>getSessionScopeCache(HttpSession)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>A convenience method to retrieve the session scope cache
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#getSessionScopeFlushCount()"><B>getSessionScopeFlushCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Gets the flush count for scope <A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#SESSION_SCOPE"><CODE>ScopeEventListenerImpl.SESSION_SCOPE</CODE></A>.
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#getSize()"><B>getSize()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Get the size of the cache entry in bytes (roughly).
<DT><A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html#getSize()"><B>getSize()</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html" title="class in com.opensymphony.oscache.web.filter">ResponseContent</A>
<DD>Gets the size of this cached content.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#getSortedQueryString(javax.servlet.http.HttpServletRequest)"><B>getSortedQueryString(HttpServletRequest)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Creates a string that contains all of the request parameters and their
values in a single string.
<DT><A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html#getStaleHitCount()"><B>getStaleHitCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheMapAccessEventListenerImpl</A>
<DD>Returns the cache's current stale hit count
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#getStatus()"><B>getStatus()</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>Retrieves the captured HttpResponse status.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#getTableForReading()"><B>getTableForReading()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Get ref to table; the reference and the cells it
accesses will be at least as fresh as from last
use of barrierLock
<DT><A HREF="com/opensymphony/oscache/util/FastCronParser.html#getTimeBefore(long)"><B>getTimeBefore(long)</B></A> -
Method in class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/FastCronParser.html" title="class in com.opensymphony.oscache.util">FastCronParser</A>
<DD>Find the most recent time that matches this cron expression.
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#getTotalScopeFlushCount()"><B>getTotalScopeFlushCount()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Returns the total flush count.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#getUpdateState(java.lang.String)"><B>getUpdateState(String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Get the updating cache entry from the update map.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html#getValue()"><B>getValue()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>
<DD>Get the value.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#getWriter()"><B>getWriter()</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>Get a print writer
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#groups"><B>groups</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>A HashMap containing the group information.
</DL>
<HR>
<A NAME="_H_"><!-- --></A><H2>
<B>H</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#HASH_KEY_CONTEXT_TMPDIR"><B>HASH_KEY_CONTEXT_TMPDIR</B></A> -
Static variable in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Key used to store the servlet container temporary directory in the configuration.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#HASH_KEY_SCOPE"><B>HASH_KEY_SCOPE</B></A> -
Static variable in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Key used to store the current scope in the configuration.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#HASH_KEY_SESSION_ID"><B>HASH_KEY_SESSION_ID</B></A> -
Static variable in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Key used to store the current session ID in the configuration.
<DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventType.html#HIT"><B>HIT</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventType.html" title="class in com.opensymphony.oscache.base.events">CacheMapAccessEventType</A>
<DD>Get an event type for a cache hit.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#hasMoreElements()"><B>hasMoreElements()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/util/FastCronParser.html#hasMoreRecentMatch(long)"><B>hasMoreRecentMatch(long)</B></A> -
Method in class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/FastCronParser.html" title="class in com.opensymphony.oscache.util">FastCronParser</A>
<DD>Determines whether this cron expression matches a date/time that is more recent
than the one supplied.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#hasNext()"><B>hasNext()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html#hash"><B>hash</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html#hashCode()"><B>hashCode()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>
<DD>
</DL>
<HR>
<A NAME="_I_"><!-- --></A><H2>
<B>I</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#INDEFINITE_EXPIRY"><B>INDEFINITE_EXPIRY</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Specifying this as the refresh period for the
<A HREF="com/opensymphony/oscache/base/CacheEntry.html#needsRefresh(int)"><CODE>CacheEntry.needsRefresh(int)</CODE></A> method will ensure
an entry does not become stale until it is
either explicitly flushed or a custom refresh
policy causes the entry to expire.
<DT><A HREF="com/opensymphony/oscache/base/InitializationException.html" title="class in com.opensymphony.oscache.base"><B>InitializationException</B></A> - exception com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/InitializationException.html" title="class in com.opensymphony.oscache.base">InitializationException</A>.<DD>Thrown by <A HREF="com/opensymphony/oscache/base/LifecycleAware.html" title="interface in com.opensymphony.oscache.base"><CODE>LifecycleAware</CODE></A> listeners that are not able to initialize
themselves.<DT><A HREF="com/opensymphony/oscache/base/InitializationException.html#InitializationException()"><B>InitializationException()</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/InitializationException.html" title="class in com.opensymphony.oscache.base">InitializationException</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/InitializationException.html#InitializationException(java.lang.String)"><B>InitializationException(String)</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/InitializationException.html" title="class in com.opensymphony.oscache.base">InitializationException</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#index"><B>index</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/web/WebEntryRefreshPolicy.html#init(java.lang.String, java.lang.String)"><B>init(String, String)</B></A> -
Method in interface com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/WebEntryRefreshPolicy.html" title="interface in com.opensymphony.oscache.web">WebEntryRefreshPolicy</A>
<DD>Initializes the refresh policy.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheFilter.html#init(javax.servlet.FilterConfig)"><B>init(FilterConfig)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheFilter.html" title="class in com.opensymphony.oscache.web.filter">CacheFilter</A>
<DD>Initialize the filter.
<DT><A HREF="com/opensymphony/oscache/base/LifecycleAware.html#initialize(com.opensymphony.oscache.base.Cache, com.opensymphony.oscache.base.Config)"><B>initialize(Cache, Config)</B></A> -
Method in interface com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/LifecycleAware.html" title="interface in com.opensymphony.oscache.base">LifecycleAware</A>
<DD>Called by the cache administrator class when a cache is instantiated.
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#isAwaitingUpdate()"><B>isAwaitingUpdate()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>This is the initial state when an instance this object is first created.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#isBlocking()"><B>isBlocking()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Indicates whether the cache will block waiting for new content to
be built, or serve stale content instead of waiting.
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#isCancelled()"><B>isCancelled()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>The thread that was responsible for updating the cache entry (ie, the thread
that managed to grab the update lock) has decided to give up responsibility
for performing the update.
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#isComplete()"><B>isComplete()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>The update of the cache entry has been completed.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#isEmpty()"><B>isEmpty()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Returns <tt>true</tt> if this map contains no key-value mappings.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#isFlushed(com.opensymphony.oscache.base.CacheEntry)"><B>isFlushed(CacheEntry)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Checks if the cache was flushed more recently than the CacheEntry provided.
<DT><A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html#isGroupStored(java.lang.String)"><B>isGroupStored(String)</B></A> -
Method in interface com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence">PersistenceListener</A>
<DD>Verify if a group is currently stored in the persistent cache.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#isMemoryCaching()"><B>isMemoryCaching()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Whether entries are cached in memory or not.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#isMemoryCaching()"><B>isMemoryCaching()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Check if memory caching is used.
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#isNew()"><B>isNew()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Indicates whether this CacheEntry is a freshly created one and
has not yet been assigned content or placed in a cache.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#isScopeFlushed(com.opensymphony.oscache.base.CacheEntry, int)"><B>isScopeFlushed(CacheEntry, int)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Checks if the given scope was flushed more recently than the CacheEntry provided.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#isStale(com.opensymphony.oscache.base.CacheEntry, int, java.lang.String)"><B>isStale(CacheEntry, int, String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Indicates whether or not the cache entry is stale.
<DT><A HREF="com/opensymphony/oscache/web/ServletCache.html#isStale(com.opensymphony.oscache.base.CacheEntry, int, java.lang.String)"><B>isStale(CacheEntry, int, String)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCache.html" title="class in com.opensymphony.oscache.web">ServletCache</A>
<DD>Indicates whether or not the cache entry is stale.
<DT><A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html#isStored(java.lang.String)"><B>isStored(String)</B></A> -
Method in interface com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence">PersistenceListener</A>
<DD>Verify if an object is currently stored in the persistent cache.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#isUnlimitedDiskCache()"><B>isUnlimitedDiskCache()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Indicates whether the unlimited disk cache is enabled or not.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#isUnlimitedDiskCache()"><B>isUnlimitedDiskCache()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Check if we use unlimited disk cache.
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#isUpdating()"><B>isUpdating()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>The cache entry is currently being generated by the thread that got hold of
the update lock.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#itemPut(java.lang.Object)"><B>itemPut(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Notify the underlying implementation that an item was put in the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html#itemPut(java.lang.Object)"><B>itemPut(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html" title="class in com.opensymphony.oscache.base.algorithm">FIFOCache</A>
<DD>An object was put in the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html#itemPut(java.lang.Object)"><B>itemPut(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html" title="class in com.opensymphony.oscache.base.algorithm">LRUCache</A>
<DD>An object was put in the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html#itemPut(java.lang.Object)"><B>itemPut(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html" title="class in com.opensymphony.oscache.base.algorithm">UnlimitedCache</A>
<DD>Implements <code>itemPut</code> with an empty implementation.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#itemRemoved(java.lang.Object)"><B>itemRemoved(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Notify the underlying implementation that an item was removed from the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html#itemRemoved(java.lang.Object)"><B>itemRemoved(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html" title="class in com.opensymphony.oscache.base.algorithm">FIFOCache</A>
<DD>Remove specified key since that object has been removed from the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html#itemRemoved(java.lang.Object)"><B>itemRemoved(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html" title="class in com.opensymphony.oscache.base.algorithm">LRUCache</A>
<DD>Remove specified key since that object has been removed from the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html#itemRemoved(java.lang.Object)"><B>itemRemoved(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html" title="class in com.opensymphony.oscache.base.algorithm">UnlimitedCache</A>
<DD>An empty implementation.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#itemRetrieved(java.lang.Object)"><B>itemRetrieved(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Notify any underlying algorithm that an item has been retrieved from the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html#itemRetrieved(java.lang.Object)"><B>itemRetrieved(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html" title="class in com.opensymphony.oscache.base.algorithm">FIFOCache</A>
<DD>An object was retrieved from the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html#itemRetrieved(java.lang.Object)"><B>itemRetrieved(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html" title="class in com.opensymphony.oscache.base.algorithm">LRUCache</A>
<DD>An item was retrieved from the list.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html#itemRetrieved(java.lang.Object)"><B>itemRetrieved(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html" title="class in com.opensymphony.oscache.base.algorithm">UnlimitedCache</A>
<DD>Implements <code>itemRetrieved</code> with an empty implementation.
</DL>
<HR>
<A NAME="_K_"><!-- --></A><H2>
<B>K</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html#key"><B>key</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#keySet"><B>keySet</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#keySet()"><B>keySet()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Returns a set view of the keys contained in this map.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#keys()"><B>keys()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Returns an enumeration of the keys in this table.
</DL>
<HR>
<A NAME="_L_"><!-- --></A><H2>
<B>L</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html" title="class in com.opensymphony.oscache.base.algorithm"><B>LRUCache</B></A> - class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html" title="class in com.opensymphony.oscache.base.algorithm">LRUCache</A>.<DD>LRU (Least Recently Used) algorithm for the cache.<DT><A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html#LRUCache()"><B>LRUCache()</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html" title="class in com.opensymphony.oscache.base.algorithm">LRUCache</A>
<DD>Constructs an LRU Cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html#LRUCache(int)"><B>LRUCache(int)</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html" title="class in com.opensymphony.oscache.base.algorithm">LRUCache</A>
<DD>Constructors a LRU Cache of the specified capacity.
<DT><A HREF="com/opensymphony/oscache/base/LifecycleAware.html" title="interface in com.opensymphony.oscache.base"><B>LifecycleAware</B></A> - interface com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/LifecycleAware.html" title="interface in com.opensymphony.oscache.base">LifecycleAware</A>.<DD>Event handlers implement this so they can be notified when a cache
is created and also when it is destroyed. <DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#lastReturned"><B>lastReturned</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#lastWrite"><B>lastWrite</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>field written to only to guarantee lock ordering.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#listenerList"><B>listenerList</B></A> -
Variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Holds a list of all the registered event listeners.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#listenerList"><B>listenerList</B></A> -
Variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>A list of all registered event listeners for this cache.
<DT><A HREF="com/opensymphony/oscache/util/ClassLoaderUtil.html#loadClass(java.lang.String, java.lang.Class)"><B>loadClass(String, Class)</B></A> -
Static method in class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/ClassLoaderUtil.html" title="class in com.opensymphony.oscache.util">ClassLoaderUtil</A>
<DD>Load a class with a given name.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#loadFactor"><B>loadFactor</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>The load factor for the hash table.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#loadFactor()"><B>loadFactor()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Return the load factor
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#log"><B>log</B></A> -
Static variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#logError(java.lang.String)"><B>logError(String)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Log error messages to commons logging.
</DL>
<HR>
<A NAME="_M_"><!-- --></A><H2>
<B>M</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventType.html#MISS"><B>MISS</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventType.html" title="class in com.opensymphony.oscache.base.events">CacheMapAccessEventType</A>
<DD>Get an event type for a cache miss.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#maxEntries"><B>maxEntries</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Cache capacity (number of entries).
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#memoryCaching"><B>memoryCaching</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Use memory cache or not.
</DL>
<HR>
<A NAME="_N_"><!-- --></A><H2>
<B>N</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#NB_SCOPES"><B>NB_SCOPES</B></A> -
Static variable in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Number of known scopes
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#NESTED_EVENT"><B>NESTED_EVENT</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>An event that origininated from within another event.
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#NOT_YET_UPDATING"><B>NOT_YET_UPDATING</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>The initial state when this object is first created
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#NULL"><B>NULL</B></A> -
Static variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/NeedsRefreshException.html" title="class in com.opensymphony.oscache.base"><B>NeedsRefreshException</B></A> - exception com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/NeedsRefreshException.html" title="class in com.opensymphony.oscache.base">NeedsRefreshException</A>.<DD>This exception is thrown when retrieving an item from cache and it is
expired.
<DT><A HREF="com/opensymphony/oscache/base/NeedsRefreshException.html#NeedsRefreshException(java.lang.Object)"><B>NeedsRefreshException(Object)</B></A> -
Constructor for class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/NeedsRefreshException.html" title="class in com.opensymphony.oscache.base">NeedsRefreshException</A>
<DD>Create a NeedsRefreshException
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#needsRefresh(int)"><B>needsRefresh(int)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Check if this CacheEntry needs to be refreshed.
<DT><A HREF="com/opensymphony/oscache/base/EntryRefreshPolicy.html#needsRefresh(com.opensymphony.oscache.base.CacheEntry)"><B>needsRefresh(CacheEntry)</B></A> -
Method in interface com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryRefreshPolicy.html" title="interface in com.opensymphony.oscache.base">EntryRefreshPolicy</A>
<DD>Indicates whether the supplied <code>CacheEntry</code> needs to be refreshed.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html#next"><B>next</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#next()"><B>next()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#nextElement()"><B>nextElement()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
</DL>
<HR>
<A NAME="_O_"><!-- --></A><H2>
<B>O</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEvent.html#origin"><B>origin</B></A> -
Variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEvent</A>
<DD>An optional tag that can be attached to the event to specify the event's origin.
</DL>
<HR>
<A NAME="_P_"><!-- --></A><H2>
<B>P</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#PAGE_SCOPE"><B>PAGE_SCOPE</B></A> -
Static variable in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Page scope number
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html#PATTERN_FLUSHED"><B>PATTERN_FLUSHED</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEventType.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEventType</A>
<DD>Get an event type for a pattern flush event.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#PERSISTENCE_CLASS"><B>PERSISTENCE_CLASS</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>A String cache configuration property that specifies the classname that will
be used to provide cache persistence.
<DT><A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence"><B>PersistenceListener</B></A> - interface com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence">PersistenceListener</A>.<DD>Defines the methods that are required to persist cache data.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#persistClear()"><B>persistClear()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Removes the entire cache from persistent storage.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#persistRemove(java.lang.Object)"><B>persistRemove(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Remove an object from the persistence.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#persistRemoveGroup(java.lang.String)"><B>persistRemoveGroup(String)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Removes a cache group using the persistence listener.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#persistRetrieve(java.lang.Object)"><B>persistRetrieve(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Retrieve an object from the persistence listener.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#persistRetrieveGroup(java.lang.String)"><B>persistRetrieveGroup(String)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Retrieves a cache group using the persistence listener.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#persistStore(java.lang.Object, java.lang.Object)"><B>persistStore(Object, Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Store an object in the cache using the persistence listener.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#persistStoreGroup(java.lang.String, java.util.Set)"><B>persistStoreGroup(String, Set)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Creates or Updates a cache group using the persistence listener.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#persistenceListener"><B>persistenceListener</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Persistence listener.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#put(java.lang.Object, java.lang.Object)"><B>put(Object, Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>OpenSymphony BEGIN
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#putAll(java.util.Map)"><B>putAll(Map)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Copies all of the mappings from the specified map to this one.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#putInCache(java.lang.String, java.lang.Object)"><B>putInCache(String, Object)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Put an object in the cache specifying the key to use.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#putInCache(java.lang.String, java.lang.Object, com.opensymphony.oscache.base.EntryRefreshPolicy)"><B>putInCache(String, Object, EntryRefreshPolicy)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Put an object in the cache specifying the key and refresh policy to use.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#putInCache(java.lang.String, java.lang.Object, java.lang.String[])"><B>putInCache(String, Object, String[])</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Put in object into the cache, specifying both the key to use and the
cache groups the object belongs to.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#putInCache(java.lang.String, java.lang.Object, java.lang.String[], com.opensymphony.oscache.base.EntryRefreshPolicy, java.lang.String)"><B>putInCache(String, Object, String[], EntryRefreshPolicy, String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Put an object into the cache specifying both the key to use and the
cache groups the object belongs to.
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#putInCache(java.lang.String, java.lang.Object, com.opensymphony.oscache.base.EntryRefreshPolicy)"><B>putInCache(String, Object, EntryRefreshPolicy)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Put an object in a cache
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#putInCache(java.lang.String, java.lang.Object)"><B>putInCache(String, Object)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Put an object in a cache
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#putInCache(java.lang.String, java.lang.Object, java.lang.String[])"><B>putInCache(String, Object, String[])</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Puts an object in a cache
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#putInCache(java.lang.String, java.lang.Object, java.lang.String[], com.opensymphony.oscache.base.EntryRefreshPolicy)"><B>putInCache(String, Object, String[], EntryRefreshPolicy)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Puts an object in a cache
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#putInCache(int, javax.servlet.http.HttpServletRequest, java.lang.String, java.lang.Object)"><B>putInCache(int, HttpServletRequest, String, Object)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Put an object in the cache
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#putInCache(int, javax.servlet.http.HttpServletRequest, java.lang.String, java.lang.Object, com.opensymphony.oscache.base.EntryRefreshPolicy)"><B>putInCache(int, HttpServletRequest, String, Object, EntryRefreshPolicy)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Put an object in the cache
</DL>
<HR>
<A NAME="_R_"><!-- --></A><H2>
<B>R</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#REQUEST_SCOPE"><B>REQUEST_SCOPE</B></A> -
Static variable in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Request scope number
<DT><A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html" title="class in com.opensymphony.oscache.web.filter"><B>ResponseContent</B></A> - class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html" title="class in com.opensymphony.oscache.web.filter">ResponseContent</A>.<DD>Holds the servlet response in a byte array so that it can be held
in the cache (and, since this class is serializable, optionally
persisted to disk).<DT><A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html#ResponseContent()"><B>ResponseContent()</B></A> -
Constructor for class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html" title="class in com.opensymphony.oscache.web.filter">ResponseContent</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#readObject(java.io.ObjectInputStream)"><B>readObject(ObjectInputStream)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Reconstitute the <tt>AbstractConcurrentReadCache</tt>.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#recordModification(java.lang.Object)"><B>recordModification(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Force a memory synchronization that will cause
all readers to see table.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#rehash()"><B>rehash()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Rehashes the contents of this map into a new table with a larger capacity.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#remove()"><B>remove()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#remove(java.lang.Object)"><B>remove(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>OpenSymphony BEGIN
<DT><A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html#remove(java.lang.String)"><B>remove(String)</B></A> -
Method in interface com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence">PersistenceListener</A>
<DD>Removes an object from the persistent cache
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#removeCacheEventListener(com.opensymphony.oscache.base.events.CacheEventListener, java.lang.Class)"><B>removeCacheEventListener(CacheEventListener, Class)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Unregister a listener for Cache events.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#removeEntry(java.lang.String)"><B>removeEntry(String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Completely removes a cache entry from the cache and its associated cache
groups.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#removeEntry(java.lang.String, java.lang.String)"><B>removeEntry(String, String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Completely removes a cache entry from the cache and its associated cache
groups.
<DT><A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html#removeGroup(java.lang.String)"><B>removeGroup(String)</B></A> -
Method in interface com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence">PersistenceListener</A>
<DD>Removes a group from the persistent cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#removeItem()"><B>removeItem()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>The cache has reached its cacpacity and an item needs to be removed.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html#removeItem()"><B>removeItem()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/FIFOCache.html" title="class in com.opensymphony.oscache.base.algorithm">FIFOCache</A>
<DD>An item needs to be removed from the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html#removeItem()"><B>removeItem()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/LRUCache.html" title="class in com.opensymphony.oscache.base.algorithm">LRUCache</A>
<DD>An item needs to be removed from the cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html#removeItem()"><B>removeItem()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html" title="class in com.opensymphony.oscache.base.algorithm">UnlimitedCache</A>
<DD>This method just returns <code>null</code> since items should
never end up being removed from an unlimited cache!
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#removeScopeEventListener(com.opensymphony.oscache.base.events.ScopeEventListener)"><B>removeScopeEventListener(ScopeEventListener)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Unregister a listener for Cache Map events.
<DT><A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html#reset()"><B>reset()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheMapAccessEventListenerImpl</A>
<DD>Resets all of the totals to zero
<DT><A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html#retrieve(java.lang.String)"><B>retrieve(String)</B></A> -
Method in interface com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence">PersistenceListener</A>
<DD>Retrieves an object from the persistent cache.
<DT><A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html#retrieveGroup(java.lang.String)"><B>retrieveGroup(String)</B></A> -
Method in interface com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence">PersistenceListener</A>
<DD>Retrieves a group from the persistent cache.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#returnValueOfNext()"><B>returnValueOfNext()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.KeyIterator.html#returnValueOfNext()"><B>returnValueOfNext()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.KeyIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.KeyIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.ValueIterator.html#returnValueOfNext()"><B>returnValueOfNext()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.ValueIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.ValueIterator</A>
<DD>
</DL>
<HR>
<A NAME="_S_"><!-- --></A><H2>
<B>S</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/events/ScopeEventType.html#SCOPE_FLUSHED"><B>SCOPE_FLUSHED</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/ScopeEventType.html" title="class in com.opensymphony.oscache.base.events">ScopeEventType</A>
<DD>Specifies an event type for the flushing of a specific scope.
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#SESSION_SCOPE"><B>SESSION_SCOPE</B></A> -
Static variable in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Session scope number
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#SESSION_SCOPE_NAME"><B>SESSION_SCOPE_NAME</B></A> -
Static variable in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Constants for scope's name
<DT><A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventType.html#STALE_HIT"><B>STALE_HIT</B></A> -
Static variable in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheMapAccessEventType.html" title="class in com.opensymphony.oscache.base.events">CacheMapAccessEventType</A>
<DD>Get an event type for when the data was found in the cache but was stale.
<DT><A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html" title="class in com.opensymphony.oscache.base.events"><B>ScopeEvent</B></A> - class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html" title="class in com.opensymphony.oscache.base.events">ScopeEvent</A>.<DD>A <code>ScopeEvent</code> is created when an event occurs across one or all scopes.
<DT><A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html#ScopeEvent(com.opensymphony.oscache.base.events.ScopeEventType, int, java.util.Date)"><B>ScopeEvent(ScopeEventType, int, Date)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html" title="class in com.opensymphony.oscache.base.events">ScopeEvent</A>
<DD>Constructs a scope event object with no specified origin.
<DT><A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html#ScopeEvent(com.opensymphony.oscache.base.events.ScopeEventType, int, java.util.Date, java.lang.String)"><B>ScopeEvent(ScopeEventType, int, Date, String)</B></A> -
Constructor for class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/ScopeEvent.html" title="class in com.opensymphony.oscache.base.events">ScopeEvent</A>
<DD>Constructs a scope event object.
<DT><A HREF="com/opensymphony/oscache/base/events/ScopeEventListener.html" title="interface in com.opensymphony.oscache.base.events"><B>ScopeEventListener</B></A> - interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/ScopeEventListener.html" title="interface in com.opensymphony.oscache.base.events">ScopeEventListener</A>.<DD>This is the interface to listen to scope events. <DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra"><B>ScopeEventListenerImpl</B></A> - class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>.<DD>Implementation of a ScopeEventListener that keeps track of the scope flush events.
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#ScopeEventListenerImpl()"><B>ScopeEventListenerImpl()</B></A> -
Constructor for class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/events/ScopeEventType.html" title="class in com.opensymphony.oscache.base.events"><B>ScopeEventType</B></A> - class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/ScopeEventType.html" title="class in com.opensymphony.oscache.base.events">ScopeEventType</A>.<DD>This is an enumeration of all the possible events that may occur
at the scope level. <DT><A HREF="com/opensymphony/oscache/web/ServletCache.html" title="class in com.opensymphony.oscache.web"><B>ServletCache</B></A> - class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCache.html" title="class in com.opensymphony.oscache.web">ServletCache</A>.<DD>A simple extension of Cache that implements a session binding listener,
and deletes it's entries when unbound<DT><A HREF="com/opensymphony/oscache/web/ServletCache.html#ServletCache(com.opensymphony.oscache.web.ServletCacheAdministrator, int)"><B>ServletCache(ServletCacheAdministrator, int)</B></A> -
Constructor for class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCache.html" title="class in com.opensymphony.oscache.web">ServletCache</A>
<DD>Create a new ServletCache
<DT><A HREF="com/opensymphony/oscache/web/ServletCache.html#ServletCache(com.opensymphony.oscache.web.ServletCacheAdministrator, java.lang.String, int, int)"><B>ServletCache(ServletCacheAdministrator, String, int, int)</B></A> -
Constructor for class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCache.html" title="class in com.opensymphony.oscache.web">ServletCache</A>
<DD>Create a new Cache
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web"><B>ServletCacheAdministrator</B></A> - class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>.<DD>A ServletCacheAdministrator creates, flushes and administers the cache.
<DT><A HREF="com/opensymphony/oscache/web/filter/SplitServletOutputStream.html" title="class in com.opensymphony.oscache.web.filter"><B>SplitServletOutputStream</B></A> - class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/SplitServletOutputStream.html" title="class in com.opensymphony.oscache.web.filter">SplitServletOutputStream</A>.<DD>Extends the base <code>ServletOutputStream</code> class so that
the stream can be captured as it gets written. <DT><A HREF="com/opensymphony/oscache/web/filter/SplitServletOutputStream.html#SplitServletOutputStream(java.io.OutputStream, java.io.OutputStream)"><B>SplitServletOutputStream(OutputStream, OutputStream)</B></A> -
Constructor for class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/SplitServletOutputStream.html" title="class in com.opensymphony.oscache.web.filter">SplitServletOutputStream</A>
<DD>Constructs a split output stream that both captures and passes through
the servlet response.
<DT><A HREF="com/opensymphony/oscache/util/StringUtil.html" title="class in com.opensymphony.oscache.util"><B>StringUtil</B></A> - class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/StringUtil.html" title="class in com.opensymphony.oscache.util">StringUtil</A>.<DD>Provides common utility methods for handling strings.<DT><A HREF="com/opensymphony/oscache/util/StringUtil.html#StringUtil()"><B>StringUtil()</B></A> -
Constructor for class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/StringUtil.html" title="class in com.opensymphony.oscache.util">StringUtil</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/events/ScopeEventListener.html#scopeFlushed(com.opensymphony.oscache.base.events.ScopeEvent)"><B>scopeFlushed(ScopeEvent)</B></A> -
Method in interface com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/ScopeEventListener.html" title="interface in com.opensymphony.oscache.base.events">ScopeEventListener</A>
<DD>Event fired when a specific or all scopes are flushed.
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#scopeFlushed(com.opensymphony.oscache.base.events.ScopeEvent)"><B>scopeFlushed(ScopeEvent)</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Handles all the scope flush events.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#sendError(int, java.lang.String)"><B>sendError(int, String)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>We override this so we can catch the response status.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#sendError(int)"><B>sendError(int)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>We override this so we can catch the response status.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#sendRedirect(java.lang.String)"><B>sendRedirect(String)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/Config.html#set(java.lang.Object, java.lang.Object)"><B>set(Object, Object)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Config.html" title="class in com.opensymphony.oscache.base">Config</A>
<DD>Sets a configuration property.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#setAlgorithmClass(java.lang.String)"><B>setAlgorithmClass(String)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Sets the algorithm to use for the cache.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#setCacheCapacity(int)"><B>setCacheCapacity(int)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>Sets the cache capacity (number of items).
<DT><A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html#setCacheCapacity(int)"><B>setCacheCapacity(int)</B></A> -
Method in class com.opensymphony.oscache.general.<A HREF="com/opensymphony/oscache/general/GeneralCacheAdministrator.html" title="class in com.opensymphony.oscache.general">GeneralCacheAdministrator</A>
<DD>Sets the cache capacity (number of items).
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#setCacheCapacity(int, javax.servlet.http.HttpServletRequest, int)"><B>setCacheCapacity(int, HttpServletRequest, int)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Sets the cache capacity (number of items).
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#setCapacity(int)"><B>setCapacity(int)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Allows the capacity of the cache to be altered dynamically.
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#setContent(java.lang.Object)"><B>setContent(Object)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Sets the actual content that is being cached.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#setContentType(java.lang.String)"><B>setContentType(String)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>Set the content type
<DT><A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html#setContentType(java.lang.String)"><B>setContentType(String)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html" title="class in com.opensymphony.oscache.web.filter">ResponseContent</A>
<DD>Set the content type.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setCron(java.lang.String)"><B>setCron(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>Sets the cron expression that should be used to expire content at specific
dates and/or times.
<DT><A HREF="com/opensymphony/oscache/util/FastCronParser.html#setCronExpression(java.lang.String)"><B>setCronExpression(String)</B></A> -
Method in class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/FastCronParser.html" title="class in com.opensymphony.oscache.util">FastCronParser</A>
<DD>Resets the cron expression to the value supplied.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#setDateHeader(java.lang.String, long)"><B>setDateHeader(String, long)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>Set the date of a header
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setDuration(java.lang.String)"><B>setDuration(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>Set the time this cache entry will be cached for.
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#setFlushTime(java.util.Date, int)"><B>setFlushTime(Date, int)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Set the flush time for a specific scope to a specific time
<DT><A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html#setFlushTime(int)"><B>setFlushTime(int)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCacheAdministrator.html" title="class in com.opensymphony.oscache.web">ServletCacheAdministrator</A>
<DD>Set the flush time for a specific scope to the current time.
<DT><A HREF="com/opensymphony/oscache/web/tag/FlushTag.html#setGroup(java.lang.String)"><B>setGroup(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/FlushTag.html" title="class in com.opensymphony.oscache.web.tag">FlushTag</A>
<DD>The group to be flushed.
<DT><A HREF="com/opensymphony/oscache/web/tag/GroupTag.html#setGroup(java.lang.Object)"><B>setGroup(Object)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/GroupTag.html" title="class in com.opensymphony.oscache.web.tag">GroupTag</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#setGroups(java.lang.String[])"><B>setGroups(String[])</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Sets the cache groups for this entry.
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#setGroups(java.util.Collection)"><B>setGroups(Collection)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Sets the cache groups for this entry
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setGroups(java.lang.String)"><B>setGroups(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>Sets the groups for this cache entry.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#setHeader(java.lang.String, java.lang.String)"><B>setHeader(String, String)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>Set a header field
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#setIntHeader(java.lang.String, int)"><B>setIntHeader(String, int)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>Set the int value of the header
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setKey(java.lang.String)"><B>setKey(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>Set the key for this cache entry.
<DT><A HREF="com/opensymphony/oscache/web/tag/FlushTag.html#setKey(java.lang.String)"><B>setKey(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/FlushTag.html" title="class in com.opensymphony.oscache.web.tag">FlushTag</A>
<DD>The key to be flushed.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setLanguage(java.lang.String)"><B>setLanguage(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>Set the ISO-639 language code to distinguish different pages in application scope
<DT><A HREF="com/opensymphony/oscache/web/tag/FlushTag.html#setLanguage(java.lang.String)"><B>setLanguage(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/FlushTag.html" title="class in com.opensymphony.oscache.web.tag">FlushTag</A>
<DD>Set the ISO-639 language code to distinguish different pages in application scope.
<DT><A HREF="com/opensymphony/oscache/base/CacheEntry.html#setLastUpdate(long)"><B>setLastUpdate(long)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/CacheEntry.html" title="class in com.opensymphony.oscache.base">CacheEntry</A>
<DD>Set the date this CacheEntry was last updated.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#setLocale(java.util.Locale)"><B>setLocale(Locale)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>Set the locale
<DT><A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html#setLocale(java.util.Locale)"><B>setLocale(Locale)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html" title="class in com.opensymphony.oscache.web.filter">ResponseContent</A>
<DD>Set the Locale.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#setMaxEntries(int)"><B>setMaxEntries(int)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Set the cache capacity
<DT><A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html#setMaxEntries(int)"><B>setMaxEntries(int)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html" title="class in com.opensymphony.oscache.base.algorithm">UnlimitedCache</A>
<DD>Overrides the <code>setMaxEntries</code> with an empty implementation.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#setMemoryCaching(boolean)"><B>setMemoryCaching(boolean)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Sets the memory caching flag.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setMode(java.lang.String)"><B>setMode(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>Setting this to <code>true</code> prevents the cache from writing any output
to the response, however the JSP content is still cached as normal.
<DT><A HREF="com/opensymphony/oscache/web/tag/FlushTag.html#setPattern(java.lang.String)"><B>setPattern(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/FlushTag.html" title="class in com.opensymphony.oscache.web.tag">FlushTag</A>
<DD>The key pattern to be flushed.
<DT><A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html#setPersistenceListener(com.opensymphony.oscache.base.Cache)"><B>setPersistenceListener(Cache)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/AbstractCacheAdministrator.html" title="class in com.opensymphony.oscache.base">AbstractCacheAdministrator</A>
<DD>If there is a <code>PersistenceListener</code> in the configuration
it will be instantiated and applied to the given cache object.
<DT><A HREF="com/opensymphony/oscache/base/Cache.html#setPersistenceListener(com.opensymphony.oscache.base.persistence.PersistenceListener)"><B>setPersistenceListener(PersistenceListener)</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/Cache.html" title="class in com.opensymphony.oscache.base">Cache</A>
<DD>Set the listener to use for data persistence.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#setPersistenceListener(com.opensymphony.oscache.base.persistence.PersistenceListener)"><B>setPersistenceListener(PersistenceListener)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Set the persistence listener to use.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setRefresh(boolean)"><B>setRefresh(boolean)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>This method allows the user to programatically decide whether the cached
content should be refreshed immediately.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setRefreshpolicyclass(java.lang.String)"><B>setRefreshpolicyclass(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>Class used to handle the refresh policy logic
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setRefreshpolicyparam(java.lang.String)"><B>setRefreshpolicyparam(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>Parameters that will be passed to the init method of the
refresh policy instance.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setScope(java.lang.String)"><B>setScope(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>Set the scope of this cache.
<DT><A HREF="com/opensymphony/oscache/web/tag/FlushTag.html#setScope(java.lang.String)"><B>setScope(String)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/FlushTag.html" title="class in com.opensymphony.oscache.web.tag">FlushTag</A>
<DD>Set the scope of this flush.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#setStatus(int)"><B>setStatus(int)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>We override this so we can catch the response status.
<DT><A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html#setStatus(int, java.lang.String)"><B>setStatus(int, String)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/CacheHttpServletResponseWrapper.html" title="class in com.opensymphony.oscache.web.filter">CacheHttpServletResponseWrapper</A>
<DD>We override this so we can catch the response status.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setTime(int)"><B>setTime(int)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>Set the time this cache entry will be cached for (in seconds)
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#setUnlimitedDiskCache(boolean)"><B>setUnlimitedDiskCache(boolean)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Sets the unlimited disk caching flag.
<DT><A HREF="com/opensymphony/oscache/web/tag/UseCachedTag.html#setUse(boolean)"><B>setUse(boolean)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/UseCachedTag.html" title="class in com.opensymphony.oscache.web.tag">UseCachedTag</A>
<DD>Set the decision to use the body content of the ancestor <cache> or not.
<DT><A HREF="com/opensymphony/oscache/web/tag/CacheTag.html#setUseBody(boolean)"><B>setUseBody(boolean)</B></A> -
Method in class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/CacheTag.html" title="class in com.opensymphony.oscache.web.tag">CacheTag</A>
<DD>This controls whether or not the body of the tag is evaluated or used.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html#setValue(java.lang.Object)"><B>setValue(Object)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>
<DD>Set the value of this entry.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#size()"><B>size()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Returns the total number of cache entries held in this map.
<DT><A HREF="com/opensymphony/oscache/util/StringUtil.html#split(java.lang.String, char)"><B>split(String, char)</B></A> -
Static method in class com.opensymphony.oscache.util.<A HREF="com/opensymphony/oscache/util/StringUtil.html" title="class in com.opensymphony.oscache.util">StringUtil</A>
<DD>Splits a string into substrings based on the supplied delimiter
character.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#sput(java.lang.Object, java.lang.Object, int, boolean)"><B>sput(Object, Object, int, boolean)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>OpenSymphony BEGIN
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#sremove(java.lang.Object, int, boolean)"><B>sremove(Object, int, boolean)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>OpenSymphony BEGIN
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#startUpdate()"><B>startUpdate()</B></A> -
Method in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>Attempt to change the state to <code>UPDATE_IN_PROGRESS</code>.
<DT><A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html#store(java.lang.String, java.lang.Object)"><B>store(String, Object)</B></A> -
Method in interface com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence">PersistenceListener</A>
<DD>Stores an object in the persistent cache.
<DT><A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html#storeGroup(java.lang.String, java.util.Set)"><B>storeGroup(String, Set)</B></A> -
Method in interface com.opensymphony.oscache.base.persistence.<A HREF="com/opensymphony/oscache/base/persistence/PersistenceListener.html" title="interface in com.opensymphony.oscache.base.persistence">PersistenceListener</A>
<DD>Stores a group in the persistent cache.
</DL>
<HR>
<A NAME="_T_"><!-- --></A><H2>
<B>T</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html#tab"><B>tab</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.HashIterator.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.HashIterator</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#table"><B>table</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>The hash table data.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#threshold"><B>threshold</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>The table is rehashed when its size exceeds this threshold.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html#toString()"><B>toString()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html#toString()"><B>toString()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheEntryEvent.html" title="class in com.opensymphony.oscache.base.events">CacheEntryEvent</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html#toString()"><B>toString()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CacheGroupEvent.html" title="class in com.opensymphony.oscache.base.events">CacheGroupEvent</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html#toString()"><B>toString()</B></A> -
Method in class com.opensymphony.oscache.base.events.<A HREF="com/opensymphony/oscache/base/events/CachePatternEvent.html" title="class in com.opensymphony.oscache.base.events">CachePatternEvent</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html#toString()"><B>toString()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheEntryEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheEntryEventListenerImpl</A>
<DD>Returns the internal values in a string form
<DT><A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html#toString()"><B>toString()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/CacheMapAccessEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">CacheMapAccessEventListenerImpl</A>
<DD>Return the counters in a string form
<DT><A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html#toString()"><B>toString()</B></A> -
Method in class com.opensymphony.oscache.extra.<A HREF="com/opensymphony/oscache/extra/ScopeEventListenerImpl.html" title="class in com.opensymphony.oscache.extra">ScopeEventListenerImpl</A>
<DD>Returns all the flush counter in a string form.
</DL>
<HR>
<A NAME="_U_"><!-- --></A><H2>
<B>U</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#UNLIMITED"><B>UNLIMITED</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Max number of element in cache when considered unlimited.
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#UPDATE_CANCELLED"><B>UPDATE_CANCELLED</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>Update cancelled state
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#UPDATE_COMPLETE"><B>UPDATE_COMPLETE</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>Update complete state
<DT><A HREF="com/opensymphony/oscache/base/EntryUpdateState.html#UPDATE_IN_PROGRESS"><B>UPDATE_IN_PROGRESS</B></A> -
Static variable in class com.opensymphony.oscache.base.<A HREF="com/opensymphony/oscache/base/EntryUpdateState.html" title="class in com.opensymphony.oscache.base">EntryUpdateState</A>
<DD>Update in progress state
<DT><A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html" title="class in com.opensymphony.oscache.base.algorithm"><B>UnlimitedCache</B></A> - class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html" title="class in com.opensymphony.oscache.base.algorithm">UnlimitedCache</A>.<DD>A simple unlimited cache that has no upper bound to the number of
cache entries it can contain.<DT><A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html#UnlimitedCache()"><B>UnlimitedCache()</B></A> -
Constructor for class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/UnlimitedCache.html" title="class in com.opensymphony.oscache.base.algorithm">UnlimitedCache</A>
<DD>Creates an unlimited cache by calling the super class's constructor
with an <code>UNLIMITED</code> maximum number of entries.
<DT><A HREF="com/opensymphony/oscache/web/tag/UseCachedTag.html" title="class in com.opensymphony.oscache.web.tag"><B>UseCachedTag</B></A> - class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/UseCachedTag.html" title="class in com.opensymphony.oscache.web.tag">UseCachedTag</A>.<DD>UseCachedTag is a tag that tells a <cache> tag to reuse the cached body.<DT><A HREF="com/opensymphony/oscache/web/tag/UseCachedTag.html#UseCachedTag()"><B>UseCachedTag()</B></A> -
Constructor for class com.opensymphony.oscache.web.tag.<A HREF="com/opensymphony/oscache/web/tag/UseCachedTag.html" title="class in com.opensymphony.oscache.web.tag">UseCachedTag</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#unlimitedDiskCache"><B>unlimitedDiskCache</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Use unlimited disk caching.
</DL>
<HR>
<A NAME="_V_"><!-- --></A><H2>
<B>V</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html#value"><B>value</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.Entry.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache.Entry</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/web/ServletCache.html#valueBound(javax.servlet.http.HttpSessionBindingEvent)"><B>valueBound(HttpSessionBindingEvent)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCache.html" title="class in com.opensymphony.oscache.web">ServletCache</A>
<DD>When this Cache is bound to the session, do nothing.
<DT><A HREF="com/opensymphony/oscache/web/ServletCache.html#valueUnbound(javax.servlet.http.HttpSessionBindingEvent)"><B>valueUnbound(HttpSessionBindingEvent)</B></A> -
Method in class com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/ServletCache.html" title="class in com.opensymphony.oscache.web">ServletCache</A>
<DD>When the users's session ends, all listeners are finalized and the
session cache directory is deleted from disk.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#values"><B>values</B></A> -
Variable in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#values()"><B>values()</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Returns a collection view of the values contained in this map.
</DL>
<HR>
<A NAME="_W_"><!-- --></A><H2>
<B>W</B></H2>
<DL>
<DT><A HREF="com/opensymphony/oscache/web/WebEntryRefreshPolicy.html" title="interface in com.opensymphony.oscache.web"><B>WebEntryRefreshPolicy</B></A> - interface com.opensymphony.oscache.web.<A HREF="com/opensymphony/oscache/web/WebEntryRefreshPolicy.html" title="interface in com.opensymphony.oscache.web">WebEntryRefreshPolicy</A>.<DD>Interface to implement an entry refresh policy.
<DT><A HREF="com/opensymphony/oscache/web/filter/SplitServletOutputStream.html#write(int)"><B>write(int)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/SplitServletOutputStream.html" title="class in com.opensymphony.oscache.web.filter">SplitServletOutputStream</A>
<DD>Writes the incoming data to both the output streams.
<DT><A HREF="com/opensymphony/oscache/web/filter/SplitServletOutputStream.html#write(byte[])"><B>write(byte[])</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/SplitServletOutputStream.html" title="class in com.opensymphony.oscache.web.filter">SplitServletOutputStream</A>
<DD>Writes the incoming data to both the output streams.
<DT><A HREF="com/opensymphony/oscache/web/filter/SplitServletOutputStream.html#write(byte[], int, int)"><B>write(byte[], int, int)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/SplitServletOutputStream.html" title="class in com.opensymphony.oscache.web.filter">SplitServletOutputStream</A>
<DD>Writes the incoming data to both the output streams.
<DT><A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html#writeObject(java.io.ObjectOutputStream)"><B>writeObject(ObjectOutputStream)</B></A> -
Method in class com.opensymphony.oscache.base.algorithm.<A HREF="com/opensymphony/oscache/base/algorithm/AbstractConcurrentReadCache.html" title="class in com.opensymphony.oscache.base.algorithm">AbstractConcurrentReadCache</A>
<DD>Save the state of the <tt>AbstractConcurrentReadCache</tt> instance to a stream.
<DT><A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html#writeTo(javax.servlet.ServletResponse)"><B>writeTo(ServletResponse)</B></A> -
Method in class com.opensymphony.oscache.web.filter.<A HREF="com/opensymphony/oscache/web/filter/ResponseContent.html" title="class in com.opensymphony.oscache.web.filter">ResponseContent</A>
<DD>Writes this cached data out to the supplied <code>ServletResponse</code>.
</DL>
<HR>
<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="#_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="#_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>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
See <a href=http://www.opensymphony.com/ target=_top>www.opensymphony.com</a> for more information.</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="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>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|