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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Fri Aug 22 03:43:51 EDT 2003 -->
<TITLE>
Deprecated List (Apache Struts API Documentation)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
</HEAD>
<SCRIPT>
function asd()
{
parent.document.title="Deprecated List (Apache Struts API Documentation)";
}
</SCRIPT>
<BODY BGCOLOR="white" onload="asd();">
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<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="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="deprecated-list.html" TARGET="_top"><B>NO FRAMES</B></A>
<SCRIPT>
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
<CENTER>
<H2>
<B>Deprecated API</B></H2>
</CENTER>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Deprecated Classes</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/ActionComponentServlet.html">org.apache.struts.tiles.ActionComponentServlet</A>
<BR>
<I>Tiles now uses ActionServlet with TilesPlugin and TilesRequestProcessor.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionException.html">org.apache.struts.action.ActionException</A>
<BR>
<I>Replaced by org.apache.struts.config.ExceptionConfig</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionFormBeans.html">org.apache.struts.action.ActionFormBeans</A>
<BR>
<I>Replaced by collection of FormBeanConfig instances
in <A HREF="org/apache/struts/config/ModuleConfig.html"><CODE>ModuleConfig</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionForwards.html">org.apache.struts.action.ActionForwards</A>
<BR>
<I>Replaced by collection of ForwardConfig instances in
<A HREF="org/apache/struts/config/ModuleConfig.html"><CODE>ModuleConfig</CODE></A> and ActionConfig</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionMappings.html">org.apache.struts.action.ActionMappings</A>
<BR>
<I>Replaced by collection of ActionConfig instances in
<A HREF="org/apache/struts/config/ModuleConfig.html"><CODE>ModuleConfig</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/config/ApplicationConfig.html">org.apache.struts.config.ApplicationConfig</A>
<BR>
<I>Usage replaced by ModuleConfig Interface.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/tiles/AttributeToScopeTag.html">org.apache.struts.taglib.tiles.AttributeToScopeTag</A>
<BR>
<I>Is it still in use ?</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/Content.html">org.apache.struts.taglib.template.util.Content</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/ContentMap.html">org.apache.struts.taglib.template.util.ContentMap</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/ContentMapStack.html">org.apache.struts.taglib.template.util.ContentMapStack</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsUtil.html">org.apache.struts.tiles.DefinitionsUtil</A>
<BR>
<I>Use <A HREF="org/apache/struts/tiles/TilesUtil.html#createDefinitionsFactory(javax.servlet.ServletContext, org.apache.struts.tiles.DefinitionsFactoryConfig)"><CODE>TilesUtil.createDefinitionsFactory(ServletContext, DefinitionsFactoryConfig)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/ErrorMessages.html">org.apache.struts.util.ErrorMessages</A>
<BR>
<I>Use org.apache.struts.action.ActionErrors instead</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/GenericDataSource.html">org.apache.struts.util.GenericDataSource</A>
<BR>
<I>Use a <code>BasicDataSource</code> directly, or indirectly
acquire a data source provided by your container</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/GetTag.html">org.apache.struts.taglib.template.GetTag</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/InsertTag.html">org.apache.struts.taglib.template.InsertTag</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/IteratorAdapter.html">org.apache.struts.util.IteratorAdapter</A>
<BR>
<I>Use commons-collections' IteratorUtils.asIterator(Enumeration).</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/actions/NoOpAction.html">org.apache.struts.tiles.actions.NoOpAction</A>
<BR>
<I>Use o.a.s.a.ForwardAction instead with the parameter attribute:
<code>
<action path="aPath"
type="org.apache.struts.actions.ForwardAction"
parameter="tiles.def.name" />
</code></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html">org.apache.struts.taglib.template.PutTag</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html">org.apache.struts.util.StrutsValidator</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html"><CODE>FieldChecks</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidatorUtil.html">org.apache.struts.util.StrutsValidatorUtil</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/Resources.html"><CODE>Resources</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/tiles/ext/TextTag.html">org.apache.struts.taglib.tiles.ext.TextTag</A>
<BR>
<I>Use o.a.s.taglib.html.TextTag instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/TilesServlet.html">org.apache.struts.tiles.TilesServlet</A>
<BR>
<I>Use the ActionServlet instead.</I> </TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Deprecated Interfaces</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/ComponentDefinitionsFactory.html">org.apache.struts.tiles.ComponentDefinitionsFactory</A>
<BR>
<I>Use DefinitionsFactory instead.</I> </TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Deprecated Exceptions</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/AppException.html">org.apache.struts.util.AppException</A>
<BR>
<I>use <A HREF="org/apache/struts/util/ModuleException.html"><CODE>ModuleException</CODE></A></I> </TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Deprecated Fields</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#ACTION_SERVLET_KEY">org.apache.struts.action.Action.ACTION_SERVLET_KEY</A>
<BR>
<I>Use Globals.ACTION_SERVLET_KEY instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/RequestProcessor.html#appConfig">org.apache.struts.action.RequestProcessor.appConfig</A>
<BR>
<I>use moduleConfig instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/Globals.html#APPLICATION_KEY">org.apache.struts.Globals.APPLICATION_KEY</A>
<BR>
<I>Use MODULE_KEY</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#APPLICATION_KEY">org.apache.struts.action.Action.APPLICATION_KEY</A>
<BR>
<I>Replaced by <A HREF="org/apache/struts/Globals.html#MODULE_KEY"><CODE>Globals.MODULE_KEY</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/upload/MultipartElement.html#data">org.apache.struts.upload.MultipartElement.data</A>
<BR>
<I>This should never be used.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#DATA_SOURCE_KEY">org.apache.struts.action.Action.DATA_SOURCE_KEY</A>
<BR>
<I>Replaced by <A HREF="org/apache/struts/Globals.html#DATA_SOURCE_KEY"><CODE>Globals.DATA_SOURCE_KEY</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/config/ControllerConfig.html#debug">org.apache.struts.config.ControllerConfig.debug</A>
<BR>
<I>Configure the logging detail level in your underlying
logging implemenation</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#debug">org.apache.struts.action.ActionServlet.debug</A>
<BR>
<I></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsFactoryConfig.html#debugLevel">org.apache.struts.tiles.DefinitionsFactoryConfig.debugLevel</A>
<BR>
<I>Use commons-logging mechanism.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/html/ErrorsTag.html#defaultLocale">org.apache.struts.taglib.html.ErrorsTag.defaultLocale</A>
<BR>
<I>Use Locale.getDefault() directly.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/html/JavascriptValidatorTag.html#defaultLocale">org.apache.struts.taglib.html.JavascriptValidatorTag.defaultLocale</A>
<BR>
<I>This variable is no longer used.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/html/OptionTag.html#defaultLocale">org.apache.struts.taglib.html.OptionTag.defaultLocale</A>
<BR>
<I>Use Locale.getDefault() directly.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#ERROR_KEY">org.apache.struts.action.Action.ERROR_KEY</A>
<BR>
<I>Replaced by <A HREF="org/apache/struts/Globals.html#ERROR_KEY"><CODE>Globals.ERROR_KEY</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#EXCEPTION_KEY">org.apache.struts.action.Action.EXCEPTION_KEY</A>
<BR>
<I>Replaced by <A HREF="org/apache/struts/Globals.html#EXCEPTION_KEY"><CODE>Globals.EXCEPTION_KEY</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/Globals.html#FORM_BEANS_KEY">org.apache.struts.Globals.FORM_BEANS_KEY</A>
<BR>
<I>Replaced by collection in ModuleConfig</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#FORM_BEANS_KEY">org.apache.struts.action.Action.FORM_BEANS_KEY</A>
<BR>
<I>Replaced by collection in ModuleConfig</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/Globals.html#FORWARDS_KEY">org.apache.struts.Globals.FORWARDS_KEY</A>
<BR>
<I>Replaced by collection in ModuleConfig.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#FORWARDS_KEY">org.apache.struts.action.Action.FORWARDS_KEY</A>
<BR>
<I>Replaced by collection in ModuleConfig.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/xmlDefinition/I18nFactorySet.html#INSTANCES_CONFIG_PARAMETER_NAME">org.apache.struts.tiles.xmlDefinition.I18nFactorySet.INSTANCES_CONFIG_PARAMETER_NAME</A>
<BR>
<I>use DEFINITIONS_CONFIG_PARAMETER_NAME</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsUtil.html#INSTANCES_CONFIG_USER_DEBUG_LEVEL">org.apache.struts.tiles.DefinitionsUtil.INSTANCES_CONFIG_USER_DEBUG_LEVEL</A>
<BR>
<I>use DEFINITIONS_CONFIG_USER_DEBUG_LEVEL instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#LOCALE_KEY">org.apache.struts.action.Action.LOCALE_KEY</A>
<BR>
<I>Replaced by <A HREF="org/apache/struts/Globals.html#LOCALE_KEY"><CODE>Globals.LOCALE_KEY</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/html/ImgTag.html#lowsrc">org.apache.struts.taglib.html.ImgTag.lowsrc</A>
<BR>
<I>This is not defined in the HTML 4.01 spec and will be removed in a
future version of Struts.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#MAPPING_KEY">org.apache.struts.action.Action.MAPPING_KEY</A>
<BR>
<I>Replaced by <A HREF="org/apache/struts/Globals.html#MAPPING_KEY"><CODE>Globals.MAPPING_KEY</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/Globals.html#MAPPINGS_KEY">org.apache.struts.Globals.MAPPINGS_KEY</A>
<BR>
<I>Replaced by collection in ModuleConfig</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#MAPPINGS_KEY">org.apache.struts.action.Action.MAPPINGS_KEY</A>
<BR>
<I>Replaced by collection in ModuleConfig</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#MESSAGE_KEY">org.apache.struts.action.Action.MESSAGE_KEY</A>
<BR>
<I>Replaced by <A HREF="org/apache/struts/Globals.html#MESSAGE_KEY"><CODE>Globals.MESSAGE_KEY</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#MESSAGES_KEY">org.apache.struts.action.Action.MESSAGES_KEY</A>
<BR>
<I>Use Globals.MESSAGES_KEY instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#MULTIPART_KEY">org.apache.struts.action.Action.MULTIPART_KEY</A>
<BR>
<I>Use Globals.MULTIPART_KEY instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsFactoryConfig.html#parserDebugLevel">org.apache.struts.tiles.DefinitionsFactoryConfig.parserDebugLevel</A>
<BR>
<I>Use commons-logging mechanism.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#PLUG_INS_KEY">org.apache.struts.action.Action.PLUG_INS_KEY</A>
<BR>
<I>Replaced by <A HREF="org/apache/struts/Globals.html#PLUG_INS_KEY"><CODE>Globals.PLUG_INS_KEY</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#REQUEST_PROCESSOR_KEY">org.apache.struts.action.Action.REQUEST_PROCESSOR_KEY</A>
<BR>
<I>Use Globals.REQUEST_PROCESSOR_KEY instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#SERVLET_KEY">org.apache.struts.action.Action.SERVLET_KEY</A>
<BR>
<I>Use Globals.SERVLET_KEY instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#TRANSACTION_TOKEN_KEY">org.apache.struts.action.Action.TRANSACTION_TOKEN_KEY</A>
<BR>
<I>Use Globals.TRANSACTION_TOKEN_KEY instead.</I> </TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Deprecated Methods</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/TilesUtil.html#applicationClass(java.lang.String)">org.apache.struts.tiles.TilesUtil.applicationClass(String)</A>
<BR>
<I>Use RequestUtils.applicationClass() instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/TilesUtilImpl.html#applicationClass(java.lang.String)">org.apache.struts.tiles.TilesUtilImpl.applicationClass(String)</A>
<BR>
<I>Use RequestUtils.applicationClass() instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/TilesUtilStrutsImpl.html#applicationClass(java.lang.String)">org.apache.struts.tiles.TilesUtilStrutsImpl.applicationClass(String)</A>
<BR>
<I>Use RequestUtils.applicationClass() instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/RequestUtils.html#computeURL(javax.servlet.jsp.PageContext, java.lang.String, java.lang.String, java.lang.String, java.util.Map, java.lang.String, boolean)">org.apache.struts.util.RequestUtils.computeURL(PageContext, String, String, String, Map, String, boolean)</A>
<BR>
<I>To be removed in Version 1.3.
Use <A HREF="org/apache/struts/util/RequestUtils.html#computeURL(javax.servlet.jsp.PageContext, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.util.Map, java.lang.String, boolean)"><CODE>RequestUtils.computeURL(PageContext, String, String, String, String, Map, String, boolean)</CODE></A> instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsUtil.html#createDefinitionFactoryInstance(java.lang.String)">org.apache.struts.tiles.DefinitionsUtil.createDefinitionFactoryInstance(String)</A>
<BR>
<I>No direct replacement. Use createDefinitionFactory
<A HREF="org/apache/struts/tiles/TilesUtil.html#createDefinitionsFactory(javax.servlet.ServletContext, org.apache.struts.tiles.DefinitionsFactoryConfig)"><CODE>TilesUtil.createDefinitionsFactory(ServletContext, DefinitionsFactoryConfig)</CODE></A>.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsUtil.html#createDefinitionsFactory(javax.servlet.ServletContext, java.util.Map, java.lang.String)">org.apache.struts.tiles.DefinitionsUtil.createDefinitionsFactory(ServletContext, Map, String)</A>
<BR>
<I>Use createDefinitionsFactory(ServletContext servletContext, ServletConfig servletConfig)</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/html/HtmlTag.html#currentLocale()">org.apache.struts.taglib.html.HtmlTag.currentLocale()</A>
<BR>
<I>Use getCurrentLocale instead because it makes the display logic
easier.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#defaultControllerConfig(org.apache.struts.config.ModuleConfig)">org.apache.struts.action.ActionServlet.defaultControllerConfig(ModuleConfig)</A>
<BR>
<I>Will be removed in a release after Struts 1.1.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#defaultFormBeansConfig(org.apache.struts.config.ModuleConfig)">org.apache.struts.action.ActionServlet.defaultFormBeansConfig(ModuleConfig)</A>
<BR>
<I>Will be removed in a release after Struts 1.1.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#defaultForwardsConfig(org.apache.struts.config.ModuleConfig)">org.apache.struts.action.ActionServlet.defaultForwardsConfig(ModuleConfig)</A>
<BR>
<I>Will be removed in a release after Struts 1.1.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#defaultMappingsConfig(org.apache.struts.config.ModuleConfig)">org.apache.struts.action.ActionServlet.defaultMappingsConfig(ModuleConfig)</A>
<BR>
<I>Will be removed in a release after Struts 1.1.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#defaultMessageResourcesConfig(org.apache.struts.config.ModuleConfig)">org.apache.struts.action.ActionServlet.defaultMessageResourcesConfig(ModuleConfig)</A>
<BR>
<I>Will be removed in a release after Struts 1.1.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#destroyApplications()">org.apache.struts.action.ActionServlet.destroyApplications()</A>
<BR>
<I>replaced by destroyModules()</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#destroyDataSources()">org.apache.struts.action.ActionServlet.destroyDataSources()</A>
<BR>
<I>Will no longer be required with module support</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#doEndTag()">org.apache.struts.taglib.template.PutTag.doEndTag()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/InsertTag.html#doEndTag()">org.apache.struts.taglib.template.InsertTag.doEndTag()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/GetTag.html#doStartTag()">org.apache.struts.taglib.template.GetTag.doStartTag()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/InsertTag.html#doStartTag()">org.apache.struts.taglib.template.InsertTag.doStartTag()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionMessages.html#empty()">org.apache.struts.action.ActionMessages.empty()</A>
<BR>
<I>Use isEmpty instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#findDataSource(java.lang.String)">org.apache.struts.action.ActionServlet.findDataSource(String)</A>
<BR>
<I>Look up data sources directly in servlet context attributes</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#findFormBean(java.lang.String)">org.apache.struts.action.ActionServlet.findFormBean(String)</A>
<BR>
<I>Replaced by ModuleConfig.findFormBeanConfig()</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#findForward(java.lang.String)">org.apache.struts.action.ActionServlet.findForward(String)</A>
<BR>
<I>Replaced by ModuleConfig.findForwardConfig()</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#findMapping(java.lang.String)">org.apache.struts.action.ActionServlet.findMapping(String)</A>
<BR>
<I>Replaced by ModuleConfig.findActionConfig()</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/ContentMap.html#get(java.lang.String)">org.apache.struts.taglib.template.util.ContentMap.get(String)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidatorUtil.html#getActionError(javax.servlet.http.HttpServletRequest, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field)">org.apache.struts.util.StrutsValidatorUtil.getActionError(HttpServletRequest, ValidatorAction, Field)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/Resources.html#getActionError(javax.servlet.http.HttpServletRequest, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field)"><CODE>Resources.getActionError(HttpServletRequest, ValidatorAction, Field)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#getActualContent()">org.apache.struts.taglib.template.PutTag.getActualContent()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/html/ImageTag.html#getAlign()">org.apache.struts.taglib.html.ImageTag.getAlign()</A>
<BR>
<I>Align attribute is deprecated in HTML 4.x.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#getAncestor(java.lang.String)">org.apache.struts.taglib.template.PutTag.getAncestor(String)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/config/ActionConfig.html#getApplicationConfig()">org.apache.struts.config.ActionConfig.getApplicationConfig()</A>
<BR>
<I><A HREF="org/apache/struts/config/ActionConfig.html#getModuleConfig()"><CODE>ActionConfig.getModuleConfig()</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#getApplicationConfig(javax.servlet.http.HttpServletRequest)">org.apache.struts.action.ActionServlet.getApplicationConfig(HttpServletRequest)</A>
<BR>
<I>use <A HREF="org/apache/struts/action/ActionServlet.html#getModuleConfig(javax.servlet.http.HttpServletRequest)"><CODE>ActionServlet.getModuleConfig(HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/RequestUtils.html#getApplicationPrefixes(javax.servlet.ServletContext)">org.apache.struts.util.RequestUtils.getApplicationPrefixes(ServletContext)</A>
<BR>
<I>Use getModulePrefixes(ServletContext) instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidatorUtil.html#getArgs(java.lang.String, org.apache.struts.util.MessageResources, java.util.Locale, org.apache.commons.validator.Field)">org.apache.struts.util.StrutsValidatorUtil.getArgs(String, MessageResources, Locale, Field)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/Resources.html#getArgs(java.lang.String, org.apache.struts.util.MessageResources, java.util.Locale, org.apache.commons.validator.Field)"><CODE>Resources.getArgs(String,MessageResources,Locale,Field)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#getContent()">org.apache.struts.taglib.template.PutTag.getContent()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/Content.html#getContent()">org.apache.struts.taglib.template.util.Content.getContent()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/InsertTag.html#getContentMap()">org.apache.struts.taglib.template.InsertTag.getContentMap()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/upload/MultipartElement.html#getData()">org.apache.struts.upload.MultipartElement.getData()</A>
<BR>
<I>Use the getFile method to get a File representing the
data for this element</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#getDebug()">org.apache.struts.action.ActionServlet.getDebug()</A>
<BR>
<I>Configure the logging detail level in your underlying
logging implementation</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/RequestProcessor.html#getDebug()">org.apache.struts.action.RequestProcessor.getDebug()</A>
<BR>
<I>Configure the logging detail level in your
underlying logging implementation</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsFactoryConfig.html#getDebugLevel()">org.apache.struts.tiles.DefinitionsFactoryConfig.getDebugLevel()</A>
<BR>
<I>Use commons-logging mechanism.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsUtil.html#getDefinition(java.lang.String, javax.servlet.jsp.PageContext)">org.apache.struts.tiles.DefinitionsUtil.getDefinition(String, PageContext)</A>
<BR>
<I>Use <A HREF="org/apache/struts/tiles/TilesUtil.html#getDefinition(java.lang.String, javax.servlet.ServletRequest, javax.servlet.ServletContext)"><CODE>TilesUtil.getDefinition(String, ServletRequest, ServletContext)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsUtil.html#getDefinitionsFactory(javax.servlet.ServletContext)">org.apache.struts.tiles.DefinitionsUtil.getDefinitionsFactory(ServletContext)</A>
<BR>
<I>Use <A HREF="org/apache/struts/tiles/TilesUtil.html#getDefinitionsFactory(javax.servlet.ServletRequest, javax.servlet.ServletContext)"><CODE>TilesUtil.getDefinitionsFactory(ServletRequest, ServletContext)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#getDirect()">org.apache.struts.taglib.template.PutTag.getDirect()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/GetTag.html#getFlush()">org.apache.struts.taglib.template.GetTag.getFlush()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/html/ImgTag.html#getLowsrc()">org.apache.struts.taglib.html.ImgTag.getLowsrc()</A>
<BR>
<I>This is not defined in the HTML 4.01 spec and will be removed in a
future version of Struts.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidatorUtil.html#getMessage(org.apache.struts.util.MessageResources, java.util.Locale, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field)">org.apache.struts.util.StrutsValidatorUtil.getMessage(MessageResources, Locale, ValidatorAction, Field)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/Resources.html#getMessage(org.apache.struts.util.MessageResources, java.util.Locale, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field)"><CODE>Resources.getMessage(MessageResources, Locale, ValidatorAction , Field)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/validator/Resources.html#getMessageResources(javax.servlet.ServletContext)">org.apache.struts.validator.Resources.getMessageResources(ServletContext)</A>
<BR>
<I>This method can only return the resources for the default
module. Use getMessageResources(HttpServletRequest) to get the
resources for the current module.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidatorUtil.html#getMessageResources(javax.servlet.ServletContext)">org.apache.struts.util.StrutsValidatorUtil.getMessageResources(ServletContext)</A>
<BR>
<I>This method can only return the resources for the default
module. Use getMessageResources(HttpServletRequest) to get the
resources for the current application module.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#getName()">org.apache.struts.taglib.template.PutTag.getName()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/GetTag.html#getName()">org.apache.struts.taglib.template.GetTag.getName()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsFactoryConfig.html#getParserDebugLevel()">org.apache.struts.tiles.DefinitionsFactoryConfig.getParserDebugLevel()</A>
<BR>
<I>Use commons-logging mechanism.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#getResources()">org.apache.struts.action.ActionServlet.getResources()</A>
<BR>
<I>Actions should call Action.getResources(HttpServletRequest)
instead of this method, in order to retrieve the resources for the
current module.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#getResources()">org.apache.struts.action.Action.getResources()</A>
<BR>
<I>This method can only return the resources for the default
module. Use getResources(HttpServletRequest) to get the
resources for the current module.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#getRole()">org.apache.struts.taglib.template.PutTag.getRole()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/GetTag.html#getRole()">org.apache.struts.taglib.template.GetTag.getRole()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/ContentMapStack.html#getStack(javax.servlet.jsp.PageContext)">org.apache.struts.taglib.template.util.ContentMapStack.getStack(PageContext)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/InsertTag.html#getTemplate()">org.apache.struts.taglib.template.InsertTag.getTemplate()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/validator/Resources.html#getValidatorResources(javax.servlet.ServletContext)">org.apache.struts.validator.Resources.getValidatorResources(ServletContext)</A>
<BR>
<I>In Struts 1.1 This method can only return the resources for the default
module. Use getValidatorResources(HttpServletRequest, ServletContext)
to get the resources for the current application module.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidatorUtil.html#getValidatorResources(javax.servlet.ServletContext)">org.apache.struts.util.StrutsValidatorUtil.getValidatorResources(ServletContext)</A>
<BR>
<I>In Struts 1.1 This method can only return the resources for the default
module. Use getValidatorResources(HttpServletRequest, ServletContext)
to get the resources for the current application module.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#hasBody()">org.apache.struts.taglib.template.PutTag.hasBody()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#initApplicationConfig(java.lang.String, java.lang.String)">org.apache.struts.action.ActionServlet.initApplicationConfig(String, String)</A>
<BR>
<I>use <A HREF="org/apache/struts/action/ActionServlet.html#initModuleConfig(java.lang.String, java.lang.String)"><CODE>ActionServlet.initModuleConfig(String,String)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#initApplicationDataSources(org.apache.struts.config.ModuleConfig)">org.apache.struts.action.ActionServlet.initApplicationDataSources(ModuleConfig)</A>
<BR>
<I>use initModuleDataSources(ModuleConfig)</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#initApplicationMessageResources(org.apache.struts.config.ModuleConfig)">org.apache.struts.action.ActionServlet.initApplicationMessageResources(ModuleConfig)</A>
<BR>
<I>use initModuleMessageResources()</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#initApplicationPlugIns(org.apache.struts.config.ModuleConfig)">org.apache.struts.action.ActionServlet.initApplicationPlugIns(ModuleConfig)</A>
<BR>
<I>use <A HREF="org/apache/struts/action/ActionServlet.html#initModulePlugIns(org.apache.struts.config.ModuleConfig)"><CODE>ActionServlet.initModulePlugIns(ModuleConfig)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#initDataSources()">org.apache.struts.action.ActionServlet.initDataSources()</A>
<BR>
<I>Replaced by initApplicationDataSources() that takes
an ModuleConfig argument. This method does nothing.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsUtil.html#initUserDebugLevel(javax.servlet.ServletConfig)">org.apache.struts.tiles.DefinitionsUtil.initUserDebugLevel(ServletConfig)</A>
<BR>
<I>Use commons-logging package instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidatorUtil.html#initValidator(java.lang.String, java.lang.Object, javax.servlet.ServletContext, javax.servlet.http.HttpServletRequest, org.apache.struts.action.ActionErrors, int)">org.apache.struts.util.StrutsValidatorUtil.initValidator(String, Object, ServletContext, HttpServletRequest, ActionErrors, int)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/Resources.html#initValidator(java.lang.String, java.lang.Object, javax.servlet.ServletContext, javax.servlet.http.HttpServletRequest, org.apache.struts.action.ActionErrors, int)"><CODE>Resources.initValidator(String,Object,ServletContext,HttpServletRequest,ActionErrors,int)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/Content.html#isDirect()">org.apache.struts.taglib.template.util.Content.isDirect()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/validator/ValidatorForm.html#log(java.lang.String)">org.apache.struts.validator.ValidatorForm.log(String)</A>
<BR>
<I>Use common-logging to log debug messages.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/validator/DynaValidatorForm.html#log(java.lang.String)">org.apache.struts.validator.DynaValidatorForm.log(String)</A>
<BR>
<I>Use common-logging, or other logging implementation to log debug messages.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServlet.html#log(java.lang.String, int)">org.apache.struts.action.ActionServlet.log(String, int)</A>
<BR>
<I>Use commons-logging instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/ActionServletWrapper.html#log(java.lang.String, int)">org.apache.struts.action.ActionServletWrapper.log(String, int)</A>
<BR>
<I>Logging should now use the commons logging</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/validator/ValidatorForm.html#log(java.lang.String, java.lang.Throwable)">org.apache.struts.validator.ValidatorForm.log(String, Throwable)</A>
<BR>
<I>Use common-logging to log debug messages.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/validator/DynaValidatorForm.html#log(java.lang.String, java.lang.Throwable)">org.apache.struts.validator.DynaValidatorForm.log(String, Throwable)</A>
<BR>
<I>Use common-logging, or other logging implementation to log debug messages.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsUtil.html#makeDefinitionsFactoryAccessible(org.apache.struts.tiles.DefinitionsFactory, javax.servlet.ServletContext)">org.apache.struts.tiles.DefinitionsUtil.makeDefinitionsFactoryAccessible(DefinitionsFactory, ServletContext)</A>
<BR>
<I>Use <A HREF="org/apache/struts/tiles/TilesUtil.html#createDefinitionsFactory(javax.servlet.ServletContext, org.apache.struts.tiles.DefinitionsFactoryConfig)"><CODE>TilesUtil.createDefinitionsFactory(ServletContext, DefinitionsFactoryConfig)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/ContentMapStack.html#peek(javax.servlet.jsp.PageContext)">org.apache.struts.taglib.template.util.ContentMapStack.peek(PageContext)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#perform(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)">org.apache.struts.action.Action.perform(ActionMapping, ActionForm, HttpServletRequest, HttpServletResponse)</A>
<BR>
<I>Use the <code>execute()</code> method instead</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#perform(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.ServletRequest, javax.servlet.ServletResponse)">org.apache.struts.action.Action.perform(ActionMapping, ActionForm, ServletRequest, ServletResponse)</A>
<BR>
<I>Use the <code>execute()</code> method instead</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/actions/TilesAction.html#perform(org.apache.struts.tiles.ComponentContext, org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)">org.apache.struts.tiles.actions.TilesAction.perform(ComponentContext, ActionMapping, ActionForm, HttpServletRequest, HttpServletResponse)</A>
<BR>
<I>Use the <code>execute()</code> method instead</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/ContentMapStack.html#pop(javax.servlet.jsp.PageContext)">org.apache.struts.taglib.template.util.ContentMapStack.pop(PageContext)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/RequestProcessor.html#processActionForward(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, org.apache.struts.action.ActionForward)">org.apache.struts.action.RequestProcessor.processActionForward(HttpServletRequest, HttpServletResponse, ActionForward)</A>
<BR>
<I>Use processForwardConfig() instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/ActionComponentServlet.html#processForward(java.lang.String, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)">org.apache.struts.tiles.ActionComponentServlet.processForward(String, HttpServletRequest, HttpServletResponse)</A>
<BR>
<I>use doForward instead</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/ContentMapStack.html#push(javax.servlet.jsp.PageContext, org.apache.struts.taglib.template.util.ContentMap)">org.apache.struts.taglib.template.util.ContentMapStack.push(PageContext, ContentMap)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/InsertTag.html#put(java.lang.String, org.apache.struts.taglib.template.util.Content)">org.apache.struts.taglib.template.InsertTag.put(String, Content)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/ContentMap.html#put(java.lang.String, org.apache.struts.taglib.template.util.Content)">org.apache.struts.taglib.template.util.ContentMap.put(String, Content)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#release()">org.apache.struts.taglib.template.PutTag.release()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/GetTag.html#release()">org.apache.struts.taglib.template.GetTag.release()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/InsertTag.html#release()">org.apache.struts.taglib.template.InsertTag.release()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/GetTag.html#saveException(java.lang.Throwable)">org.apache.struts.taglib.template.GetTag.saveException(Throwable)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/InsertTag.html#saveException(java.lang.Throwable)">org.apache.struts.taglib.template.InsertTag.saveException(Throwable)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/RequestUtils.html#selectApplication(javax.servlet.http.HttpServletRequest, javax.servlet.ServletContext)">org.apache.struts.util.RequestUtils.selectApplication(HttpServletRequest, ServletContext)</A>
<BR>
<I>use <A HREF="org/apache/struts/util/RequestUtils.html#selectModule(javax.servlet.http.HttpServletRequest, javax.servlet.ServletContext)"><CODE>RequestUtils.selectModule(HttpServletRequest,ServletContext)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/RequestUtils.html#selectApplication(java.lang.String, javax.servlet.http.HttpServletRequest, javax.servlet.ServletContext)">org.apache.struts.util.RequestUtils.selectApplication(String, HttpServletRequest, ServletContext)</A>
<BR>
<I>use <A HREF="org/apache/struts/util/RequestUtils.html#selectModule(java.lang.String, javax.servlet.http.HttpServletRequest, javax.servlet.ServletContext)"><CODE>RequestUtils.selectModule(String,HttpServletRequest,ServletContext)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/html/ImageTag.html#setAlign(java.lang.String)">org.apache.struts.taglib.html.ImageTag.setAlign(String)</A>
<BR>
<I>Align attribute is deprecated in HTML 4.x.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/config/ActionConfig.html#setApplicationConfig(org.apache.struts.config.ModuleConfig)">org.apache.struts.config.ActionConfig.setApplicationConfig(ModuleConfig)</A>
<BR>
<I><A HREF="org/apache/struts/config/ActionConfig.html#setModuleConfig(org.apache.struts.config.ModuleConfig)"><CODE>ActionConfig.setModuleConfig(ModuleConfig)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#setContent(java.lang.String)">org.apache.struts.taglib.template.PutTag.setContent(String)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/upload/MultipartElement.html#setData(byte[])">org.apache.struts.upload.MultipartElement.setData(byte[])</A>
<BR>
<I>Use the setFile method to set the file
that represents the data of this element</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsFactoryConfig.html#setDebugLevel(int)">org.apache.struts.tiles.DefinitionsFactoryConfig.setDebugLevel(int)</A>
<BR>
<I>Use commons-logging mechanism.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsUtil.html#setDefinitionsFactory(org.apache.struts.tiles.ComponentDefinitionsFactory, javax.servlet.ServletContext)">org.apache.struts.tiles.DefinitionsUtil.setDefinitionsFactory(ComponentDefinitionsFactory, ServletContext)</A>
<BR>
<I>since 20020708. Replaced by makeFactoryAccessible()</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/xmlDefinition/XmlParser.html#setDetailLevel(int)">org.apache.struts.tiles.xmlDefinition.XmlParser.setDetailLevel(int)</A>
<BR>
<I>Use the commons-logging to set digester debug level.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#setDirect(java.lang.String)">org.apache.struts.taglib.template.PutTag.setDirect(String)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/config/FormBeanConfig.html#setDynamic(boolean)">org.apache.struts.config.FormBeanConfig.setDynamic(boolean)</A>
<BR>
<I>The value to be returned by <code>getDynamic()</code>
is now computed automatically in <code>setType()</code></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/GetTag.html#setFlush(boolean)">org.apache.struts.taglib.template.GetTag.setFlush(boolean)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/tiles/InsertTag.html#setInstance(java.lang.String)">org.apache.struts.taglib.tiles.InsertTag.setInstance(String)</A>
<BR>
<I>Use setDefinition() instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#setName(java.lang.String)">org.apache.struts.taglib.template.PutTag.setName(String)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/GetTag.html#setName(java.lang.String)">org.apache.struts.taglib.template.GetTag.setName(String)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/bean/IncludeTag.html#setName(java.lang.String)">org.apache.struts.taglib.bean.IncludeTag.setName(String)</A>
<BR>
<I>use setPage(String) instead</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsFactoryConfig.html#setParserDebugLevel(int)">org.apache.struts.tiles.DefinitionsFactoryConfig.setParserDebugLevel(int)</A>
<BR>
<I>Use commons-logging mechanism.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/PutTag.html#setRole(java.lang.String)">org.apache.struts.taglib.template.PutTag.setRole(String)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/GetTag.html#setRole(java.lang.String)">org.apache.struts.taglib.template.GetTag.setRole(String)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/InsertTag.html#setTemplate(java.lang.String)">org.apache.struts.taglib.template.InsertTag.setTemplate(String)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/DefinitionsUtil.html#setUserDebugLevel(int)">org.apache.struts.tiles.DefinitionsUtil.setUserDebugLevel(int)</A>
<BR>
<I>Use commons-logging package instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/action/Action.html#toHex(byte[])">org.apache.struts.action.Action.toHex(byte[])</A>
<BR>
<I>This method will be removed in a release after Struts 1.1.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/Content.html#toString()">org.apache.struts.taglib.template.util.Content.toString()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateByte(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateByte(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateByte(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateByte(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateCreditCard(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateCreditCard(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateCreditCard(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateCreditCard(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A>
Translated to Java by Ted Husted (<a href="/org\apache\struts\util/mailto:husted@apache.org">husted@apache.org
</a>).<br>
Reference Sean M. Burke's script at http://www.ling.nwu.edu/~sburke/pub/luhn_lib.pl
</p></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateDate(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateDate(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateDate(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateDate(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateDouble(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateDouble(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateDouble(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateDouble(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateEmail(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateEmail(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateEmail(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateEmail(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A>
Based on a script by Sandeep V. Tamhankar (stamhankar@hotmail.com), http://javascript.internet.com
</p></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateFloat(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateFloat(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateFloat(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateFloat(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateInteger(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateInteger(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateInteger(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateInteger(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateLong(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateLong(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateLong(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateLong(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateMask(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateMask(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateMask(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateMask(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateMaxLength(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateMaxLength(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateMaxLength(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateMaxLength(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateMinLength(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateMinLength(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateMinLength(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateMinLength(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/validator/FieldChecks.html#validateRange(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.validator.FieldChecks.validateRange(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateIntRange(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateIntRange(java.lang.Object,org.apache.commons.validator.ValidatorAction,org.apache.commons.validator.Field,org.apache.struts.action.ActionErrors,javax.servlet.http.HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateRange(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateRange(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateIntRange(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateIntRange(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateRequired(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateRequired(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateRequired(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateRequired(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/util/StrutsValidator.html#validateShort(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)">org.apache.struts.util.StrutsValidator.validateShort(Object, ValidatorAction, Field, ActionErrors, HttpServletRequest)</A>
<BR>
<I>As of Struts 1.1, replaced by <A HREF="org/apache/struts/validator/FieldChecks.html#validateShort(java.lang.Object, org.apache.commons.validator.ValidatorAction, org.apache.commons.validator.Field, org.apache.struts.action.ActionErrors, javax.servlet.http.HttpServletRequest)"><CODE>FieldChecks.validateShort(Object,ValidatorAction,Field,ActionErrors,HttpServletRequest)</CODE></A></I> </TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Deprecated Constructors</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/config/ApplicationConfig.html#ApplicationConfig(org.apache.struts.config.impl.ModuleConfigImpl)">org.apache.struts.config.ApplicationConfig(ModuleConfigImpl)</A>
<BR>
<I>Only used while we are deprecating ApplicationConfig to insure maximum compatability.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/tiles/ComponentContext.html#ComponentContext(org.apache.struts.tiles.ComponentDefinition)">org.apache.struts.tiles.ComponentContext(ComponentDefinition)</A>
<BR>
<I>Use <A HREF="org/apache/struts/tiles/ComponentContext.html#ComponentContext(java.util.Map)"><CODE>ComponentContext.ComponentContext(Map attributes)</CODE></A> instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/Content.html#Content(java.lang.String, java.lang.String)">org.apache.struts.taglib.template.util.Content(String, String)</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/taglib/template/util/ContentMap.html#ContentMap()">org.apache.struts.taglib.template.util.ContentMap()</A>
<BR>
<I>Use Tiles instead.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/config/impl/ModuleConfigImpl.html#ModuleConfigImpl(org.apache.struts.config.impl.ModuleConfigImpl)">org.apache.struts.config.impl.ModuleConfigImpl(ModuleConfigImpl)</A>
<BR>
<I>Only used while we are deprecating ApplicationConfig to insure maximum compatability.</I> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="org/apache/struts/upload/MultipartElement.html#MultipartElement(java.lang.String, java.lang.String, java.lang.String, byte[])">org.apache.struts.upload.MultipartElement(String, String, String, byte[])</A>
<BR>
<I>Use the constructor that takes an File as an argument
as opposed to a byte array argument, which can cause
memory problems.</I> </TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<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="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="deprecated-list.html" TARGET="_top"><B>NO FRAMES</B></A>
<SCRIPT>
<!--
if(window==top) {
document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
Copyright 2000-2003 - Apache Software Foundation
</BODY>
</HTML>
|