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
|
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
"http://struts.apache.org/dtds/struts-config_1_2.dtd">
<struts-config>
<!-- ========== Data Source Configuration =============================== -->
<!-- ========== Form Bean Definitions =================================== -->
<form-beans>
<!-- Set Locale form bean -->
<form-bean name="setLocaleForm"
type="org.apache.webapp.admin.SetLocaleForm"/>
<!-- ============= Server Module ============= -->
<form-bean name="serverForm"
type="org.apache.webapp.admin.server.ServerForm"/>
<!-- ============= Service Module ============= -->
<form-bean name="serviceForm"
type="org.apache.webapp.admin.service.ServiceForm"/>
<form-bean name="servicesForm"
type="org.apache.webapp.admin.service.ServicesForm"/>
<!-- ============= Host Module ============= -->
<form-bean name="hostForm"
type="org.apache.webapp.admin.host.HostForm"/>
<form-bean name="hostsForm"
type="org.apache.webapp.admin.host.HostsForm"/>
<form-bean name="aliasForm"
type="org.apache.webapp.admin.host.AliasForm"/>
<form-bean name="aliasesForm"
type="org.apache.webapp.admin.host.AliasesForm"/>
<!-- ============= Realm Module ============= -->
<form-bean name="dataSourceRealmForm"
type="org.apache.webapp.admin.realm.DataSourceRealmForm"/>
<form-bean name="jdbcRealmForm"
type="org.apache.webapp.admin.realm.JDBCRealmForm"/>
<form-bean name="jndiRealmForm"
type="org.apache.webapp.admin.realm.JNDIRealmForm"/>
<form-bean name="memoryRealmForm"
type="org.apache.webapp.admin.realm.MemoryRealmForm"/>
<form-bean name="userDatabaseRealmForm"
type="org.apache.webapp.admin.realm.UserDatabaseRealmForm"/>
<form-bean name="realmsForm"
type="org.apache.webapp.admin.realm.RealmsForm"/>
<!-- ============= Context Module ============= -->
<form-bean name="contextForm"
type="org.apache.webapp.admin.context.ContextForm"/>
<form-bean name="contextsForm"
type="org.apache.webapp.admin.context.ContextsForm"/>
<!-- ============= DefaultContext Module ============= -->
<!-- ============= Connector Module ============= -->
<form-bean name="connectorForm"
type="org.apache.webapp.admin.connector.ConnectorForm"/>
<form-bean name="connectorsForm"
type="org.apache.webapp.admin.connector.ConnectorsForm"/>
<!-- ============= Valve Module ============= -->
<form-bean name="accessLogValveForm"
type="org.apache.webapp.admin.valve.AccessLogValveForm"/>
<form-bean name="remoteAddrValveForm"
type="org.apache.webapp.admin.valve.RemoteAddrValveForm"/>
<form-bean name="remoteHostValveForm"
type="org.apache.webapp.admin.valve.RemoteHostValveForm"/>
<form-bean name="requestDumperValveForm"
type="org.apache.webapp.admin.valve.RequestDumperValveForm"/>
<form-bean name="singleSignOnValveForm"
type="org.apache.webapp.admin.valve.SingleSignOnValveForm"/>
<form-bean name="valvesForm"
type="org.apache.webapp.admin.valve.ValvesForm"/>
<!-- ========== Resources Module ========== -->
<form-bean name="envEntryForm"
type="org.apache.webapp.admin.resources.EnvEntryForm"/>
<form-bean name="envEntriesForm"
type="org.apache.webapp.admin.resources.EnvEntriesForm"/>
<form-bean name="userDatabaseForm"
type="org.apache.webapp.admin.resources.UserDatabaseForm"/>
<form-bean name="userDatabasesForm"
type="org.apache.webapp.admin.resources.UserDatabasesForm"/>
<form-bean name="dataSourceForm"
type="org.apache.webapp.admin.resources.DataSourceForm"/>
<form-bean name="dataSourcesForm"
type="org.apache.webapp.admin.resources.DataSourcesForm"/>
<form-bean name="mailSessionForm"
type="org.apache.webapp.admin.resources.MailSessionForm"/>
<form-bean name="mailSessionsForm"
type="org.apache.webapp.admin.resources.MailSessionsForm"/>
<form-bean name="resourceLinkForm"
type="org.apache.webapp.admin.resources.ResourceLinkForm"/>
<form-bean name="resourceLinksForm"
type="org.apache.webapp.admin.resources.ResourceLinksForm"/>
<!-- ========== User Database Module ========== -->
<form-bean name="databaseForm"
type="org.apache.webapp.admin.users.BaseForm"/>
<form-bean name="groupForm"
type="org.apache.webapp.admin.users.GroupForm"/>
<form-bean name="groupsForm"
type="org.apache.webapp.admin.users.GroupsForm"/>
<form-bean name="roleForm"
type="org.apache.webapp.admin.users.RoleForm"/>
<form-bean name="rolesForm"
type="org.apache.webapp.admin.users.RolesForm"/>
<form-bean name="userForm"
type="org.apache.webapp.admin.users.UserForm"/>
<form-bean name="usersForm"
type="org.apache.webapp.admin.users.UsersForm"/>
<!-- ========== ==================== ========== -->
</form-beans>
<!-- ========== Global Forward Definitions ============================== -->
<global-forwards>
<forward name="Dump Registry Results"
path="/dumpRegistry.jsp"
redirect="false"/>
<forward name="Dump Server Results"
path="/dumpServer.jsp"
redirect="false"/>
<forward name="Main Menu"
path="/index.jsp"
redirect="false"/>
<forward name="Tree Control Test"
path="/tree-control-test.jsp"
redirect="false"/>
<forward name="Save Successful"
path="/saved.jsp"
redirect="false"/>
<forward name="Save Unsuccessful"
path="/savefail.jsp"
redirect="false"/>
<forward name="Blank"
path="/blank.jsp"
redirect="false"/>
<forward name="User"
path="/user.jsp"
redirect="false"/>
<!-- ============ Server Module ============== -->
<forward name="Server"
path="/server/server.jsp"
redirect="false"/>
<!-- ============ Service Module ============== -->
<forward name="Service"
path="/service/service.jsp"
redirect="false"/>
<forward name="Services"
path="/service/services.jsp"
redirect="false"/>
<!-- ============ Host Module ============== -->
<forward name="Host"
path="/host/host.jsp"
redirect="false"/>
<forward name="Hosts"
path="/host/hosts.jsp"
redirect="false"/>
<forward name="Alias"
path="/host/alias.jsp"
redirect="false"/>
<forward name="Aliases"
path="/host/aliases.jsp"
redirect="false"/>
<!-- ============ Context Module ============== -->
<forward name="Context"
path="/context/context.jsp"
redirect="false"/>
<forward name="Contexts"
path="/context/contexts.jsp"
redirect="false"/>
<!-- ============ DefaultContext Module ============== -->
<!-- ============ Connector Module ============== -->
<forward name="Connector"
path="/connector/connector.jsp"
redirect="false"/>
<forward name="Connectors"
path="/connector/connectors.jsp"
redirect="false"/>
<!-- ============ Realm Module ============== -->
<forward name="DataSourceRealm"
path="/realm/dataSourceRealm.jsp"
redirect="false"/>
<forward name="JDBCRealm"
path="/realm/jdbcRealm.jsp"
redirect="false"/>
<forward name="JNDIRealm"
path="/realm/jndiRealm.jsp"
redirect="false"/>
<forward name="MemoryRealm"
path="/realm/memoryRealm.jsp"
redirect="false"/>
<forward name="UserDatabaseRealm"
path="/realm/userDatabaseRealm.jsp"
redirect="false"/>
<forward name="Realms"
path="/realm/realms.jsp"
redirect="false"/>
<!-- ============ Context Module ============== -->
<forward name="Context"
path="/context/context.jsp"
redirect="false"/>
<forward name="Contexts"
path="/context/contexts.jsp"
redirect="false"/>
<!-- ============ Valve Module ============== -->
<forward name="AccessLogValve"
path="/valve/accessLogValve.jsp"
redirect="false"/>
<forward name="RemoteAddrValve"
path="/valve/remoteAddrValve.jsp"
redirect="false"/>
<forward name="RemoteHostValve"
path="/valve/remoteHostValve.jsp"
redirect="false"/>
<forward name="RequestDumperValve"
path="/valve/requestDumperValve.jsp"
redirect="false"/>
<forward name="SingleSignOn"
path="/valve/singleSignOnValve.jsp"
redirect="false"/>
<forward name="Valves"
path="/valve/valves.jsp"
redirect="false"/>
<!-- ========== Resources Module ========== -->
<forward name="EnvEntry"
path="/resources/envEntry.jsp"
redirect="false"/>
<forward name="EnvEntries Delete List"
path="/resources/deleteEnvEntries.jsp"
redirect="false"/>
<forward name="EnvEntries List"
path="/resources/listEnvEntries.jsp"
redirect="false"/>
<forward name="EnvEntries List Setup"
path="/resources/listEnvEntries.do?forward=EnvEntries+List"
redirect="false"/>
<forward name="UserDatabase"
path="/resources/userDatabase.jsp"
redirect="false"/>
<forward name="UserDatabases Delete List"
path="/resources/deleteUserDatabases.jsp"
redirect="false"/>
<forward name="UserDatabases List"
path="/resources/listUserDatabases.jsp"
redirect="false"/>
<forward name="UserDatabases List Setup"
path="/resources/listUserDatabases.do?forward=UserDatabases+List"
redirect="false"/>
<forward name="DataSource"
path="/resources/dataSource.jsp"
redirect="false"/>
<forward name="DataSources Delete List"
path="/resources/deleteDataSources.jsp"
redirect="false"/>
<forward name="DataSources List"
path="/resources/listDataSources.jsp"
redirect="false"/>
<forward name="DataSources List Setup"
path="/resources/listDataSources.do?forward=DataSources+List"
redirect="false"/>
<forward name="MailSession"
path="/resources/mailSession.jsp"
redirect="false"/>
<forward name="MailSessions Delete List"
path="/resources/deleteMailSessions.jsp"
redirect="false"/>
<forward name="MailSessions List"
path="/resources/listMailSessions.jsp"
redirect="false"/>
<forward name="MailSessions List Setup"
path="/resources/listMailSessions.do?forward=MailSessions+List"
redirect="false"/>
<forward name="ResourceLink"
path="/resources/resourceLink.jsp"
redirect="false"/>
<forward name="ResourceLinks Delete List"
path="/resources/deleteResourceLinks.jsp"
redirect="false"/>
<forward name="ResourceLinks List"
path="/resources/listResourceLinks.jsp"
redirect="false"/>
<forward name="ResourceLinks List Setup"
path="/resources/listResourceLinks.do?forward=ResourceLinks+List"
redirect="false"/>
<!-- ========== User Database Module ========== -->
<forward name="Group"
path="/users/group.jsp"
redirect="false"/>
<forward name="Groups Delete List"
path="/users/deleteGroups.jsp"
redirect="false"/>
<forward name="Groups List"
path="/users/listGroups.jsp"
redirect="false"/>
<forward name="Groups List Setup"
path="/users/listGroups.do?forward=Groups+List"
redirect="false"/>
<forward name="Role"
path="/users/role.jsp"
redirect="false"/>
<forward name="Roles Delete List"
path="/users/deleteRoles.jsp"
redirect="false"/>
<forward name="Roles List"
path="/users/listRoles.jsp"
redirect="false"/>
<forward name="Roles List Setup"
path="/users/listRoles.do?forward=Roles+List"
redirect="false"/>
<forward name="User"
path="/users/user.jsp"
redirect="false"/>
<forward name="Users Delete List"
path="/users/deleteUsers.jsp"
redirect="false"/>
<forward name="Users List"
path="/users/listUsers.jsp"
redirect="false"/>
<forward name="Users List Setup"
path="/users/listUsers.do?forward=Users+List"
redirect="false"/>
<!-- ========== ==================== ========== -->
</global-forwards>
<!-- ========== Action Mapping Definitions ============================== -->
<action-mappings>
<!-- Dump registry information (debugging) -->
<action path="/dumpRegistry"
type="org.apache.webapp.admin.DumpRegistryAction"/>
<!-- Dump MBean server information (debugging) -->
<action path="/dumpServer"
type="org.apache.webapp.admin.DumpServerAction"/>
<!-- Set up Tree datastructure -->
<action path="/setUpTree"
type="org.apache.webapp.admin.SetUpTreeAction">
<forward name="SetUpTree"
path="/tree-control-test.jsp"
redirect="true"/>
</action>
<!-- Log out of the application -->
<action path="/logOut"
type="org.apache.webapp.admin.LogOutAction">
<forward name="Main Menu"
path="/index.jsp"
redirect="true"/>
</action>
<!-- Save current settings to server.xml -->
<action path="/commitChanges"
type="org.apache.webapp.admin.CommitChangesAction">
<forward name="Banner"
path="/banner.jsp"
redirect="true"/>
</action>
<!-- Process a set-locale action -->
<action path="/setLocale"
type="org.apache.webapp.admin.SetLocaleAction"
name="setLocaleForm"
scope="session">
</action>
<!-- Tree control test action -->
<action path="/treeControlTest"
type="org.apache.webapp.admin.TreeControlTestAction"/>
<!-- ============= Server Module ============== -->
<!-- Set up Edit Server transaction -->
<action path="/EditServer"
type="org.apache.webapp.admin.server.EditServerAction">
</action>
<!-- Perform Save Server transaction -->
<action path="/SaveServer"
type="org.apache.webapp.admin.server.SaveServerAction"
name="serverForm"
input="/server/server.jsp"
scope="session"/>
<!-- ============= Service Module ============== -->
<!-- Set up Add Service transaction -->
<action path="/AddService"
type="org.apache.webapp.admin.service.AddServiceAction">
</action>
<!-- Set up Delete Services transaction -->
<action path="/DeleteService"
type="org.apache.webapp.admin.service.DeleteServiceAction"
name="servicesForm"
scope="request"/>
<!-- Perform Delete Services transaction -->
<action path="/DeleteServices"
type="org.apache.webapp.admin.service.DeleteServicesAction"
name="servicesForm"
scope="request"/>
<!-- Set up Edit Service transaction -->
<action path="/EditService"
type="org.apache.webapp.admin.service.EditServiceAction">
</action>
<!-- Perform Save Service transaction -->
<action path="/SaveService"
type="org.apache.webapp.admin.service.SaveServiceAction"
name="serviceForm"
input="/service/service.jsp"
scope="session"/>
<!-- ============= Host Module ============== -->
<!-- Set up Add Host transaction -->
<action path="/AddHost"
type="org.apache.webapp.admin.host.AddHostAction">
</action>
<!-- Set up Delete Hosts transaction -->
<action path="/DeleteHost"
type="org.apache.webapp.admin.host.DeleteHostAction"
name="hostsForm"
scope="request"/>
<!-- Perform Delete Hosts transaction -->
<action path="/DeleteHosts"
type="org.apache.webapp.admin.host.DeleteHostsAction"
name="hostsForm"
scope="request"/>
<!-- Set up Edit Host transaction -->
<action path="/EditHost"
type="org.apache.webapp.admin.host.EditHostAction">
</action>
<!-- Perform Save Host transaction -->
<action path="/SaveHost"
type="org.apache.webapp.admin.host.SaveHostAction"
name="hostForm"
input="/host/host.jsp"
scope="session"/>
<!-- Set up Add Alias transaction -->
<action path="/AddAlias"
type="org.apache.webapp.admin.host.AddAliasAction">
</action>
<!-- Perform Delete Aliases transaction -->
<action path="/DeleteAlias"
type="org.apache.webapp.admin.host.DeleteAliasAction"
name="aliasesForm"
scope="request"/>
<!-- Perform Delete Aliases transaction -->
<action path="/DeleteAliases"
type="org.apache.webapp.admin.host.DeleteAliasesAction"
name="aliasesForm"
scope="request"/>
<!-- Perform Save Host transaction -->
<action path="/SaveAlias"
type="org.apache.webapp.admin.host.SaveAliasAction"
name="aliasForm"
input="/host/alias.jsp"
scope="session"/>
<!-- ============= Realm Module ============== -->
<!-- Set up Add Realm transaction -->
<action path="/AddRealm"
type="org.apache.webapp.admin.realm.AddRealmAction">
</action>
<!-- Set up Add Realm transaction -->
<action path="/realm/AddRealm"
type="org.apache.webapp.admin.realm.AddRealmAction">
</action>
<!-- Set up Delete Realms transaction -->
<action path="/DeleteRealm"
type="org.apache.webapp.admin.realm.DeleteRealmAction"
name="realmsForm"
scope="request"/>
<!-- Perform Delete Realms transaction -->
<action path="/DeleteRealms"
type="org.apache.webapp.admin.realm.DeleteRealmsAction"
name="realmsForm"
scope="request"/>
<!-- Set up Edit Realm transaction (generic) -->
<action path="/EditRealm"
type="org.apache.webapp.admin.realm.EditRealmAction">
</action>
<!-- Perform Save UserDatabase Realm transaction -->
<action path="/SaveUserDatabaseRealm"
type="org.apache.webapp.admin.realm.SaveUserDatabaseRealmAction"
name="userDatabaseRealmForm"
input="/realm/userDatabaseRealm.jsp"
scope="session"/>
<!-- Perform Save DataSource Realm transaction -->
<action path="/SaveDataSourceRealm"
type="org.apache.webapp.admin.realm.SaveDataSourceRealmAction"
name="dataSourceRealmForm"
input="/realm/dataSourceRealm.jsp"
scope="session"/>
<!-- Perform Save JDBC Realm transaction -->
<action path="/SaveJDBCRealm"
type="org.apache.webapp.admin.realm.SaveJDBCRealmAction"
name="jdbcRealmForm"
input="/realm/jdbcRealm.jsp"
scope="session"/>
<!-- Perform Save JNDI Realm transaction -->
<action path="/SaveJNDIRealm"
type="org.apache.webapp.admin.realm.SaveJNDIRealmAction"
name="jndiRealmForm"
input="/realm/jndiRealm.jsp"
scope="session"/>
<!-- Perform Save Memory transaction -->
<action path="/SaveMemoryRealm"
type="org.apache.webapp.admin.realm.SaveMemoryRealmAction"
name="memoryRealmForm"
input="/realm/memoryRealm.jsp"
scope="session"/>
<!-- ============= Context Module ============== -->
<!-- Set up Add Context transaction -->
<action path="/AddContext"
type="org.apache.webapp.admin.context.AddContextAction">
</action>
<!-- Set up Delete Contexts transaction -->
<action path="/DeleteContext"
type="org.apache.webapp.admin.context.DeleteContextAction"
name="contextsForm"
scope="request"/>
<!-- Perform Delete Contexts transaction -->
<action path="/DeleteContexts"
type="org.apache.webapp.admin.context.DeleteContextsAction"
name="contextsForm"
scope="request"/>
<!-- Set up Edit Context transaction -->
<action path="/EditContext"
type="org.apache.webapp.admin.context.EditContextAction">
</action>
<!-- Perform Save Context transaction -->
<action path="/SaveContext"
type="org.apache.webapp.admin.context.SaveContextAction"
name="contextForm"
input="/context/context.jsp"
scope="session"/>
<!-- ============= DefaultContext Module ============== -->
<!-- ============= Connector Module ============== -->
<!-- Set up Add Connector transaction -->
<action path="/AddConnector"
type="org.apache.webapp.admin.connector.AddConnectorAction">
</action>
<!-- Set up Add Connector transaction -->
<action path="/connector/AddConnector"
type="org.apache.webapp.admin.connector.AddConnectorAction">
</action>
<!-- Set up Delete Connectors transaction -->
<action path="/DeleteConnector"
type="org.apache.webapp.admin.connector.DeleteConnectorAction"
name="connectorsForm"
scope="request"/>
<!-- Perform Delete Connectors transaction -->
<action path="/DeleteConnectors"
type="org.apache.webapp.admin.connector.DeleteConnectorsAction"
name="connectorsForm"
scope="request"/>
<!-- Set up Edit Connector transaction -->
<action path="/EditConnector"
type="org.apache.webapp.admin.connector.EditConnectorAction">
</action>
<!-- Perform Save Connector transaction -->
<action path="/SaveConnector"
type="org.apache.webapp.admin.connector.SaveConnectorAction"
name="connectorForm"
input="/connector/connector.jsp"
scope="session"/>
<!-- ============= Valve Module ============== -->
<!-- Set up Add Valve transaction -->
<action path="/AddValve"
type="org.apache.webapp.admin.valve.AddValveAction">
</action>
<!-- Set up Add Valve transaction -->
<action path="/valve/AddValve"
type="org.apache.webapp.admin.valve.AddValveAction">
</action>
<!-- Set up Delete Valves transaction -->
<action path="/DeleteValve"
type="org.apache.webapp.admin.valve.DeleteValveAction"
name="valvesForm"
scope="request"/>
<!-- Perform Delete Valves transaction -->
<action path="/DeleteValves"
type="org.apache.webapp.admin.valve.DeleteValvesAction"
name="valvesForm"
scope="request"/>
<!-- Set up Edit Valve transaction (generic) -->
<action path="/EditValve"
type="org.apache.webapp.admin.valve.EditValveAction">
</action>
<!-- Perform Save AccessLog Valve transaction -->
<action path="/SaveAccessLogValve"
type="org.apache.webapp.admin.valve.SaveAccessLogValveAction"
name="accessLogValveForm"
input="/valve/accessLogValve.jsp"
scope="session"/>
<!-- Perform Save Remote Addr Valve transaction -->
<action path="/SaveRemoteAddrValve"
type="org.apache.webapp.admin.valve.SaveRemoteAddrValveAction"
name="remoteAddrValveForm"
input="/valve/remoteAddrValve.jsp"
scope="session"/>
<!-- Perform Save Remote Host Valve transaction -->
<action path="/SaveRemoteHostValve"
type="org.apache.webapp.admin.valve.SaveRemoteHostValveAction"
name="remoteHostValveForm"
input="/valve/remoteHostValve.jsp"
scope="session"/>
<!-- Perform Save Request Dumper Valve transaction -->
<action path="/SaveRequestDumperValve"
type="org.apache.webapp.admin.valve.SaveRequestDumperValveAction"
name="requestDumperValveForm"
input="/valve/requestDumperValve.jsp"
scope="session"/>
<!-- Perform Save Single Sign On Valve transaction -->
<action path="/SaveSingleSignOn"
type="org.apache.webapp.admin.valve.SaveSingleSignOnValveAction"
name="singleSignOnValveForm"
input="/valve/singleSignOnValve.jsp"
scope="session"/>
<!-- ========== Resources Module ========== -->
<action path="/resources/deleteEnvEntries"
name="envEntriesForm"
scope="request"
type="org.apache.webapp.admin.resources.DeleteEnvEntriesAction"/>
<action path="/resources/deleteUserDatabases"
name="userDatabasesForm"
scope="request"
type="org.apache.webapp.admin.resources.DeleteUserDatabasesAction"/>
<action path="/resources/deleteDataSources"
name="dataSourcesForm"
scope="request"
type="org.apache.webapp.admin.resources.DeleteDataSourcesAction"/>
<action path="/resources/deleteMailSessions"
name="mailSessionsForm"
scope="request"
type="org.apache.webapp.admin.resources.DeleteMailSessionsAction"/>
<action path="/resources/deleteResourceLinks"
name="resourceLinksForm"
scope="request"
type="org.apache.webapp.admin.resources.DeleteResourceLinksAction"/>
<action path="/resources/listEnvEntries"
name="envEntriesForm"
scope="request"
type="org.apache.webapp.admin.resources.ListEnvEntriesAction"/>
<action path="/resources/listUserDatabases"
name="userDatabasesForm"
scope="request"
type="org.apache.webapp.admin.resources.ListUserDatabasesAction"/>
<action path="/resources/listDataSources"
name="dataSourcesForm"
scope="request"
type="org.apache.webapp.admin.resources.ListDataSourcesAction"/>
<action path="/resources/listMailSessions"
name="mailSessionsForm"
scope="request"
type="org.apache.webapp.admin.resources.ListMailSessionsAction"/>
<action path="/resources/listResourceLinks"
name="resourceLinksForm"
scope="request"
type="org.apache.webapp.admin.resources.ListResourceLinksAction"/>
<action path="/resources/saveEnvEntry"
input="/resources/envEntry.jsp"
name="envEntryForm"
scope="request"
type="org.apache.webapp.admin.resources.SaveEnvEntryAction"/>
<action path="/resources/saveUserDatabase"
input="/resources/userDatabase.jsp"
name="userDatabaseForm"
scope="request"
type="org.apache.webapp.admin.resources.SaveUserDatabaseAction"/>
<action path="/resources/saveDataSource"
input="/resources/dataSource.jsp"
name="dataSourceForm"
scope="request"
type="org.apache.webapp.admin.resources.SaveDataSourceAction"/>
<action path="/resources/saveMailSession"
input="/resources/mailSession.jsp"
name="mailSessionForm"
scope="request"
type="org.apache.webapp.admin.resources.SaveMailSessionAction"/>
<action path="/resources/saveResourceLink"
input="/resources/resourceLink.jsp"
name="resourceLinkForm"
scope="request"
type="org.apache.webapp.admin.resources.SaveResourceLinkAction"/>
<action path="/resources/setUpEnvEntry"
type="org.apache.webapp.admin.resources.SetUpEnvEntryAction"/>
<action path="/resources/setUpUserDatabase"
type="org.apache.webapp.admin.resources.SetUpUserDatabaseAction"/>
<action path="/resources/setUpDataSource"
type="org.apache.webapp.admin.resources.SetUpDataSourceAction"/>
<action path="/resources/setUpMailSession"
type="org.apache.webapp.admin.resources.SetUpMailSessionAction"/>
<action path="/resources/setUpResourceLink"
type="org.apache.webapp.admin.resources.SetUpResourceLinkAction"/>
<!-- ========== User Database Module ========== -->
<action path="/users/deleteGroups"
name="groupsForm"
scope="request"
type="org.apache.webapp.admin.users.DeleteGroupsAction"/>
<action path="/users/deleteRoles"
name="rolesForm"
scope="request"
type="org.apache.webapp.admin.users.DeleteRolesAction"/>
<action path="/users/deleteUsers"
name="usersForm"
scope="request"
type="org.apache.webapp.admin.users.DeleteUsersAction"/>
<action path="/users/listGroups"
name="groupsForm"
scope="request"
type="org.apache.webapp.admin.users.ListGroupsAction"/>
<action path="/users/listRoles"
name="rolesForm"
scope="request"
type="org.apache.webapp.admin.users.ListRolesAction"/>
<action path="/users/listUsers"
name="usersForm"
scope="request"
type="org.apache.webapp.admin.users.ListUsersAction"/>
<action path="/users/saveGroup"
input="/users/group.jsp"
name="groupForm"
scope="request"
type="org.apache.webapp.admin.users.SaveGroupAction"/>
<action path="/users/saveRole"
input="/users/role.jsp"
name="roleForm"
scope="request"
type="org.apache.webapp.admin.users.SaveRoleAction"/>
<action path="/users/saveUser"
input="/users/user.jsp"
name="userForm"
scope="request"
type="org.apache.webapp.admin.users.SaveUserAction"/>
<action path="/users/setUpGroup"
type="org.apache.webapp.admin.users.SetUpGroupAction"/>
<action path="/users/setUpRole"
type="org.apache.webapp.admin.users.SetUpRoleAction"/>
<action path="/users/setUpUser"
type="org.apache.webapp.admin.users.SetUpUserAction"/>
<!-- ========== ==================== ========== -->
</action-mappings>
<controller locale="true" nocache="true" />
<message-resources parameter="org.apache.webapp.admin.ApplicationResources" />
</struts-config>
|