blob: d536807bcfafbbb9626e2add3605ac71d33c09f8 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to you under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<catalogs>
<!-- Default Catalog: "Path Info" example -->
<catalog>
<!-- Command that maps "Path Info" patterns to Commands -->
<chain name="command">
<command className="org.apache.commons.chain.web.servlet.PathInfoMapper"/>
<command forward="/pathinfo.jsp" className="org.apache.commons.chain.apps.example.ForwardCommand"/>
</chain>
<!-- Foo Command -->
<chain name="/foo">
<command attribute="pathinfoFooCount" className="org.apache.commons.chain.apps.example.CountCommand"/>
</chain>
<!-- Bar Command -->
<chain name="/bar">
<command attribute="pathinfoBarCount" className="org.apache.commons.chain.apps.example.CountCommand"/>
</chain>
</catalog>
<!-- Catalog for "Request Parameter" example -->
<catalog name="reqparam">
<!-- Command that maps a "Request Parameter" to Commands -->
<chain name="command">
<command catalogName="reqparam" className="org.apache.commons.chain.web.servlet.RequestParameterMapper"/>
<command forward="/reqparam.jsp" className="org.apache.commons.chain.apps.example.ForwardCommand"/>
</chain>
<!-- Foo Command -->
<chain name="foo">
<command attribute="reqparamFooCount" className="org.apache.commons.chain.apps.example.CountCommand"/>
</chain>
<!-- Bar Command -->
<chain name="bar">
<command attribute="reqparamBarCount" className="org.apache.commons.chain.apps.example.CountCommand"/>
</chain>
</catalog>
<!-- Catalog for "Servlet Path" example -->
<catalog name="servletpath">
<!-- Command that maps "Servlet Path" patterns to Commands -->
<chain name="command">
<command catalogName="servletpath" className="org.apache.commons.chain.web.servlet.ServletPathMapper"/>
<command forward="/servletpath.jsp" className="org.apache.commons.chain.apps.example.ForwardCommand"/>
</chain>
<!-- Foo Command -->
<chain name="/foo.execute">
<command attribute="servletpathFooCount" className="org.apache.commons.chain.apps.example.CountCommand"/>
</chain>
<!-- Bar Command -->
<chain name="/bar.execute">
<command attribute="servletpathBarCount" className="org.apache.commons.chain.apps.example.CountCommand"/>
</chain>
</catalog>
</catalogs>