blob: 65069b85eb9b0248433671e9d23b32e8c02bc9c5 [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.
-->
<site-conf xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://ofbiz.apache.org/Site-Conf" xsi:schemaLocation="http://ofbiz.apache.org/Site-Conf http://ofbiz.apache.org/dtds/site-conf.xsd">
<include location="component://common/webcommon/WEB-INF/common-controller.xml"/>
<include location="component://common/webcommon/WEB-INF/portal-controller.xml"/>
<include location="component://common/webcommon/WEB-INF/security-controller.xml"/>
<include location="component://common/webcommon/WEB-INF/tempexpr-controller.xml"/>
<description>WebTools Site Configuration File</description>
<handler name="ftl" type="view" class="org.apache.ofbiz.webapp.ftl.FreeMarkerViewHandler"/>
<!-- Events to run on every request before security (chains exempt) -->
<!--
<preprocessor>
</preprocessor>
-->
<!-- Events to run on every request after all other processing (chains exempt) -->
<!--
<postprocessor>
<event name="test" type="java" path="org.apache.ofbiz.webapp.event.TestEvent" invoke="test"/>
</postprocessor>
-->
<!-- Request Mappings -->
<!-- === Rest Entity Mapping === -->
<!-- form for creating a record -->
<request-map uri="entity/list" method="get"><security https="true" auth="true"/><response name="success" type="view" value="entitymaint" /></request-map>
<!-- form for creating a record -->
<request-map uri="entity/create/{entityName}" method="get"><security https="true" auth="true"/><response name="success" type="view" value="EditGeneric"/></request-map>
<!-- form for modifying a record -->
<request-map uri="entity/edit/{entityName}/{pkValues: .*}" method="post"><security https="true" auth="true"/><response name="success" type="view" value="EditGeneric" /></request-map>
<!--view relations for a given entity -->
<request-map uri="entity/relations/{entityName}" method="get"><security https="true" auth="true"/><response name="success" type="view" value="ViewRelations" /></request-map>
<!-- getting the view of records -->
<request-map uri="entity/find/{entityName}" method="get"><security https="true" auth="true"/><response name="success" type="view" value="FindGeneric" /></request-map>
<!-- adding new record (from submitted form) -->
<request-map uri="entity/change/{entityName}" method="post">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.GenericWebEvent" invoke="updateGeneric"/>
<response name="success" type="view" value="FindGeneric"/>
<response name="error" type="view" value="ViewGeneric"/>
</request-map>
<!-- view entity records -->
<request-map uri="entity/find/{entityName}/{pkValues: .*}" method="get"><security https="true" auth="true"/><response name="success" type="view" value="ViewGeneric" /></request-map>
<!-- modifying existing record -->
<request-map uri="entity/change/{entityName}/{pkValues: .*}" method="put">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.GenericWebEvent" invoke="updateGeneric"/>
<response name="success" type="view" value="ViewGeneric"/>
<response name="error" type="view" value="ViewGeneric"/>
</request-map>
<!-- deleting existing record -->
<request-map uri="entity/change/{entityName}/{pkValues: .*}" method="delete">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.GenericWebEvent" invoke="updateGeneric"/>
<response name="success" type="view" value="ViewGeneric"/>
<response name="error" type="view" value="ViewGeneric"/>
</request-map>
<!-- Begin Utility Requests -->
<!-- The 2 services below have been commented out for security reason, see OFBIZ-12212 -->
<!-- <request-map uri="httpService">
<event type="java" path="org.apache.ofbiz.service.engine.HttpEngine" invoke="httpEngine"/>
<response name="success" type="none"/>
<response name="error" type="none"/>
</request-map>
<request-map uri="SOAPService">
<security https="false"/>
<event type="soap"/>
<response name="error" type="none"/>
<response name="success" type="none"/>
</request-map> -->
<request-map uri="ping">
<security auth="true"/>
<event type="service" invoke="ping"/>
<response name="error" type="view" value="ping"/>
<response name="success" type="view" value="ping"/>
</request-map>
<request-map uri="showDateTime"><response name="success" type="view" value="showDateTime"/></request-map>
<request-map uri="secureCertDateTime">
<security auth="false" https="true" cert="true"/>
<response name="success" type="view" value="showDateTime"/>
</request-map>
<request-map uri="secureAuthDateTime">
<security auth="true" https="true" cert="false"/>
<response name="success" type="view" value="showDateTime"/>
</request-map>
<request-map uri="TestService">
<event type="service" invoke="testScv"/>
<response name="error" type="view" value="error"/>
<response name="success" type="view" value="error"/>
</request-map>
<request-map uri="streamTest">
<event type="service-stream" invoke="serviceStreamTest"/>
<response name="success" type="none"/>
<response name="error" type="none"/>
</request-map>
<request-map uri="yahoo">
<response name="success" type="url" value="http://www.yahoo.com"/>
</request-map>
<request-map uri="view">
<security https="true" auth="false"/>
<response name="success" type="view" value="main"/>
</request-map>
<request-map uri="chain">
<event type="java" path="org.apache.ofbiz.webapp.event.TestEvent" invoke="test"/>
<response name="success" type="request" value="/view"/>
<response name="error" type="view" value="error"/>
</request-map>
<!-- End Utility Requests -->
<request-map uri="main">
<security https="true" auth="false"/>
<response name="success" type="view" value="main"/>
</request-map>
<!-- Entity Information Requests -->
<request-map uri="entitymaint">
<security https="true" auth="true"/>
<response name="success" type="view" value="entitymaint"/>
</request-map>
<request-map uri="FindGeneric">
<security https="true" auth="true"/>
<response name="success" type="view" value="FindGeneric"/>
</request-map>
<request-map uri="ViewGeneric">
<security https="true" auth="true"/>
<response name="success" type="view" value="ViewGeneric"/>
</request-map>
<request-map uri="UpdateGeneric">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.GenericWebEvent" invoke="updateGeneric"/>
<response name="success" type="view" value="ViewGeneric"/>
<response name="error" type="view" value="ViewGeneric"/>
</request-map>
<request-map uri="ViewRelations">
<security https="true" auth="true"/>
<response name="success" type="view" value="ViewRelations"/>
</request-map>
<request-map uri="entityref">
<security https="true" auth="true"/>
<response name="success" type="view" value="entityref"/>
</request-map>
<request-map uri="entityrefReport">
<security https="true" auth="true"/>
<response name="success" type="view" value="entityrefReport"/>
</request-map>
<request-map uri="ModelWriter">
<security https="false" auth="true"/>
<response name="success" type="view" value="ModelWriter"/>
</request-map>
<request-map uri="ModelGroupWriter">
<security https="false" auth="true"/>
<response name="success" type="view" value="ModelGroupWriter"/>
</request-map>
<request-map uri="EntityEoModelBundle">
<security https="true" auth="true"/>
<response name="success" type="view" value="EntityEoModelBundle"/>
</request-map>
<request-map uri="exportEntityEoModelBundle">
<security https="true" auth="true"/>
<event type="service" invoke="exportEntityEoModelBundle"/>
<response name="success" type="view" value="EntityEoModelBundle"/>
<response name="error" type="view" value="EntityEoModelBundle"/>
</request-map>
<!-- UtilCache Maintenance Requests -->
<request-map uri="FindUtilCache">
<security https="true" auth="true"/>
<response name="success" type="view" value="FindUtilCache"/>
</request-map>
<request-map uri="FindUtilCacheClear">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.UtilCacheEvents" invoke="clearEvent"/>
<response name="success" type="view" value="FindUtilCache"/>
<response name="error" type="view" value="FindUtilCache"/>
</request-map>
<request-map uri="FindUtilCacheClearAll">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.UtilCacheEvents" invoke="clearAllEvent"/>
<response name="success" type="view" value="FindUtilCache"/>
<response name="error" type="view" value="FindUtilCache"/>
</request-map>
<request-map uri="ClearSelectedCaches">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.UtilCacheEvents" invoke="clearSelectedCachesEvent"/>
<response name="success" type="view" value="FindUtilCache"/>
<response name="error" type="view" value="FindUtilCache"/>
</request-map>
<request-map uri="ForceGarbageCollection">
<security https="true" auth="true"/>
<event type="service" invoke="forceGarbageCollection"/>
<response name="success" type="view" value="FindUtilCache"/>
<response name="error" type="view" value="FindUtilCache"/>
</request-map>
<request-map uri="EditUtilCache">
<security https="true" auth="true"/>
<response name="success" type="view" value="EditUtilCache"/>
</request-map>
<request-map uri="EditUtilCacheUpdate">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.UtilCacheEvents" invoke="updateEvent"/>
<response name="success" type="view" value="EditUtilCache"/>
<response name="error" type="view" value="EditUtilCache"/>
</request-map>
<request-map uri="EditUtilCacheClear">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.UtilCacheEvents" invoke="clearEvent"/>
<response name="success" type="view" value="EditUtilCache"/>
<response name="error" type="view" value="EditUtilCache"/>
</request-map>
<request-map uri="FindUtilCacheElements">
<security https="true" auth="true"/>
<response name="success" type="view" value="FindUtilCacheElements"/>
</request-map>
<request-map uri="FindUtilCacheElementsRemoveElement">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.UtilCacheEvents" invoke="removeElementEvent"/>
<response name="success" type="view" value="FindUtilCacheElements"/>
<response name="error" type="view" value="FindUtilCacheElements"/>
</request-map>
<!-- DataFile stuff -->
<request-map uri="viewdatafile">
<security https="true" auth="true"/>
<response name="success" type="view" value="viewdatafile"/>
</request-map>
<!-- ControlServlet and other stats requests -->
<request-map uri="StatsSinceStart">
<security https="true" auth="true"/>
<response name="success" type="view" value="StatsSinceStart"/>
</request-map>
<request-map uri="StatBinsHistory">
<security https="true" auth="true"/>
<response name="success" type="view" value="StatBinsHistory"/>
</request-map>
<request-map uri="ViewMetrics">
<security https="true" auth="true"/>
<metric name="URL: webtools/ViewMetrics" /><!-- Here for demonstration -->
<response name="success" type="view" value="ViewMetrics"/>
</request-map>
<request-map uri="ResetMetric">
<security https="true" auth="true"/>
<event type="service" invoke="resetMetric"/>
<response name="success" type="view" value="ViewMetrics"/>
<response name="error" type="view" value="ViewMetrics"/>
</request-map>
<!-- Loggin Setup -->
<request-map uri="LogConfiguration">
<security https="true" auth="true"/>
<response name="success" type="view" value="LogConfiguration"/>
</request-map>
<request-map uri="AdjustDebugLevels">
<security https="true" auth="true"/>
<event type="service" invoke="adjustDebugLevels"/>
<response name="success" type="view" value="LogConfiguration"/>
</request-map>
<request-map uri="LogView">
<security https="true" auth="true"/>
<response name="success" type="view" value="LogView"/>
</request-map>
<request-map uri="FetchLogs">
<security https="true" auth="true"/>
<response name="success" type="view" value="FetchLogs"/>
</request-map>
<!-- Service Engine Info and Job Management Requests -->
<request-map uri="ServiceLog">
<security https="true" auth="true"/>
<response name="success" type="view" value="ServiceLog"/>
</request-map>
<request-map uri="ServiceList">
<security https="true" auth="true"/>
<response name="success" type="view" value="ServiceList"/>
</request-map>
<request-map uri="threadList">
<security https="true" auth="true"/>
<response name="success" type="view" value="threadList"/>
</request-map>
<request-map uri="FindJob">
<security https="true" auth="true"/>
<response name="success" type="view" value="FindJob"/>
</request-map>
<request-map uri="JobDetails">
<security https="true" auth="true"/>
<response name="success" type="view" value="JobDetails"/>
</request-map>
<request-map uri="cancelJob">
<security https="true" auth="true"/>
<event type="service" invoke="cancelScheduledJob"/>
<response name="success" type="view" value="FindJob"/>
<response name="error" type="view" value="FindJob"/>
</request-map>
<request-map uri="resetJob">
<security https="true" auth="true"/>
<event type="service" invoke="resetScheduledJob"/>
<response name="success" type="view" value="FindJob"/>
<response name="error" type="view" value="FindJob"/>
</request-map>
<request-map uri="scheduleJob">
<security https="true" auth="true"/>
<response name="success" type="view" value="scheduleJob"/>
</request-map>
<request-map uri="runService">
<security https="true" auth="true"/>
<response name="success" type="view" value="runService"/>
</request-map>
<request-map uri="setServiceParameters">
<security https="true" auth="true"/>
<response name="success" type="view" value="setServiceParameters"/>
</request-map>
<request-map uri="setSyncServiceParameters">
<security https="true" auth="true"/>
<response name="success" type="view" value="setSyncServiceParameters"/>
</request-map>
<request-map uri="scheduleService">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webapp.event.CoreEvents" invoke="scheduleService"/>
<response name="success" type="view" value="FindJob"/>
<response name="sync_success" type="view" value="serviceResult"/>
<response name="error" type="view" value="scheduleJob"/>
</request-map>
<request-map uri="scheduleServiceSync">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webapp.event.CoreEvents" invoke="scheduleService"/>
<response name="success" type="view" value="serviceResult"/>
<response name="sync_success" type="view" value="serviceResult"/>
<response name="error" type="view" value="runService"/>
</request-map>
<request-map uri="serviceResult">
<security https="true" auth="true"/>
<response name="success" type="view" value="serviceResult"/>
</request-map>
<request-map uri="saveServiceResultsToSession">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webapp.event.CoreEvents" invoke="saveServiceResultsToSession"/>
<response name="success" type="view" value="runService"/>
<response name="error" type="view" value="error"/>
</request-map>
<request-map uri="AddJobManagerLock"><security https="true" auth="true"/><response name="success" type="view" value="AddJobManagerLock"/></request-map>
<request-map uri="FindJobManagerLock"><security https="true" auth="true"/><response name="success" type="view" save-current-view="false" value="FindJobManagerLock"/></request-map>
<request-map uri="createJobManagerLock">
<security https="true" auth="true"/>
<event type="service" invoke="createJobManagerLock"/>
<response name="success" type="request" value="json"/>
<response name="error" type="request" value="json"/>
</request-map>
<request-map uri="updateJobManagerLock">
<security https="true" auth="true"/>
<event type="service" invoke="updateJobManagerLock"/>
<response name="success" type="view" value="FindJobManagerLock"/>
<response name="error" type="view" value="FindJobManagerLock"/>
</request-map>
<!-- Available services requests -->
<request-map uri="serviceEcaDetail">
<security https="true" auth="true"/>
<response name="success" type="view" value="serviceEcaDetail"/>
</request-map>
<request-map uri="exportServiceEoModelBundle">
<security https="true" auth="true"/>
<event type="service" invoke="exportServiceEoModelBundle"/>
<response name="success" type="view" value="ServiceList"/>
<response name="error" type="view" value="ServiceList"/>
</request-map>
<!-- PerformanceTest requests -->
<request-map uri="EntityPerformanceTest">
<security https="true" auth="true"/>
<response name="success" type="view" value="EntityPerformanceTest"/>
</request-map>
<!-- Misc requests -->
<request-map uri="ViewComponents">
<security https="true" auth="true"/>
<response name="success" type="view" value="ViewComponents"/>
</request-map>
<request-map uri="TestSuiteInfo"><security https="true" auth="true"/><response name="success" type="view" value="TestSuiteInfo"/></request-map>
<request-map uri="TestSuiteInfo/{compName}"><security https="true" auth="true"/><response name="success" type="view" value="TestSuiteInfo"/></request-map>
<request-map uri="RunTest/{compName}/{suiteName}">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.artifactinfo.RunTestEvents" invoke="runTest"/>
<response name="success" type="request" value="TestSuiteInfo"/>
<response name="error" type="request" value="TestSuiteInfo"/>
</request-map>
<request-map uri="RunTest/{compName}/{suiteName}/{caseName}">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.artifactinfo.RunTestEvents" invoke="runTest"/>
<response name="success" type="request" value="TestSuiteInfo"/>
<response name="error" type="request" value="TestSuiteInfo"/>
</request-map>
<!-- EntitySQL requests -->
<request-map uri="EntitySQLProcessor">
<security https="true" auth="true"/>
<response name="success" type="view" value="EntitySQLProcessor"/>
</request-map>
<request-map uri="ConnectionPoolStatus">
<security https="true" auth="true"/>
<response name="success" type="view" value="ConnectionPoolStatus"/>
</request-map>
<!-- ModelInducedFromDb requests-->
<request-map uri="CreateModelInduceFromDb">
<security https="true" auth="true"/>
<event type="java" path="org.apache.ofbiz.webtools.WebToolsDbEvents" invoke="modelInduceFromDb"/>
<response name="success" type="view" value="ModelInduceFromDb"/>
<response name="error" type="view" value="ModelInduceFromDb"/>
</request-map>
<request-map uri="ModelInduceFromDb">
<security https="true" auth="true"/>
<response name="success" type="view" value="ModelInduceFromDb"/>
<response name="error" type="view" value="ModelInduceFromDb"/>
</request-map>
<!-- Entity Export/Import requests -->
<request-map uri="ProgramExport">
<security https="true" auth="true"/>
<response name="success" type="view" value="ProgramExport"/>
<response name="error" type="view" value="ProgramExport"/>
</request-map>
<request-map uri="EntityExportAll"><security https="true" auth="true"/><response name="success" type="view" value="EntityExportAll"/><response name="error" type="view" value="EntityExportAll"/></request-map>
<request-map uri="entityExportAll">
<security https="true" auth="true"/>
<event type="service" path="" invoke="entityExportAll"/>
<response name="success" type="view" value="EntityExportAll"/>
<response name="error" type="view" value="EntityExportAll"/>
</request-map>
<request-map uri="EntityImportDir"><security https="true" auth="true"/><response name="success" type="view" value="EntityImportDir"/></request-map>
<request-map uri="entityImportDir">
<security https="true" auth="true"/>
<event type="service" path="" invoke="entityImportDir"/>
<response name="success" type="view" value="EntityImportDir"/>
<response name="error" type="view" value="EntityImportDir"/>
</request-map>
<request-map uri="EntityImport"><security https="true" auth="true"/><response name="success" type="view" value="EntityImport"/></request-map>
<request-map uri="entityImport">
<security https="true" auth="true"/>
<event type="service" path="" invoke="entityImport"/>
<response name="success" type="view" value="EntityImport"/>
<response name="error" type="view" value="EntityImport"/>
</request-map>
<request-map uri="EntityImportReaders"><security https="true" auth="true"/><response name="success" type="view" value="EntityImportReaders"/></request-map>
<request-map uri="entityImportReaders">
<security https="true" auth="true"/>
<event type="service" path="" invoke="entityImportReaders"/>
<response name="success" type="view" value="EntityImportReaders"/>
<response name="error" type="view" value="EntityImportReaders"/>
</request-map>
<request-map uri="xmldsdump">
<security https="true" auth="true"/>
<response name="success" type="view" value="xmldsdump"/>
</request-map>
<request-map uri="xmldsrawdump">
<security https="true" auth="true"/>
<response name="success" type="view" value="xmldsrawdump"/>
</request-map>
<!-- EntitySync requests -->
<request-map uri="EntitySyncStatus"><security https="true" auth="true"/><response name="success" type="view" value="EntitySyncStatus"/></request-map>
<request-map uri="resetEntitySyncStatus">
<security https="true" auth="true"/>
<event type="service" path="" invoke="resetEntitySyncStatus"/>
<response name="success" type="view" value="EntitySyncStatus"/>
<response name="error" type="view" value="EntitySyncStatus"/>
</request-map>
<request-map uri="runOfflineEntitySync">
<security https="true" auth="true"/>
<event type="service" path="ASYNC" invoke="runOfflineEntitySync"/>
<response name="success" type="view" value="EntitySyncStatus"/>
<response name="error" type="view" value="EntitySyncStatus"/>
</request-map>
<request-map uri="updateOfflineEntitySync">
<security https="true" auth="true"/>
<event type="service" path="" invoke="updateOfflineEntitySync"/>
<response name="success" type="view" value="EntitySyncStatus"/>
<response name="error" type="view" value="EntitySyncStatus"/>
</request-map>
<request-map uri="loadOfflineEntitySyncData">
<security https="true" auth="true"/>
<event type="service" path="" invoke="loadOfflineEntitySyncData"/>
<response name="success" type="view" value="EntitySyncStatus"/>
<response name="error" type="view" value="EntitySyncStatus"/>
</request-map>
<!-- Artifact Info Requests -->
<request-map uri="ArtifactInfo">
<security https="true" auth="true"/>
<response name="success" type="view" value="ArtifactInfo"/>
</request-map>
<!-- Label Manager Requests -->
<request-map uri="SearchLabels">
<security https="true" auth="true"/>
<response name="success" type="view" value="SearchLabels"/>
</request-map>
<request-map uri="SaveLabelsToXmlFile">
<security https="true" auth="true"/>
<event type="service" invoke="saveLabelsToXmlFile"/>
<response name="success" type="view" value="SearchLabels"/>
</request-map>
<request-map uri="UpdateLabel">
<security https="true" auth="true"/>
<response name="success" type="view" value="UpdateLabel"/>
</request-map>
<request-map uri="ViewReferences">
<security https="true" auth="true"/>
<response name="success" type="view" value="ViewReferences"/>
<response name="error" type="view" value="ViewReferences"/>
</request-map>
<request-map uri="ViewFile">
<security https="true" auth="true"/>
<response name="success" type="view" value="ViewFile"/>
<response name="error" type="view" value="ViewFile"/>
</request-map>
<!-- cert requests -->
<request-map uri="myCertificates">
<security https="true"/>
<response name="success" type="view" value="viewbrowsercerts"/>
</request-map>
<!-- Temporal expression view mapping -->
<request-map uri="editTemporalExpression">
<security https="true" auth="true"/>
<response name="success" type="view" value="editTemporalExpression"/>
</request-map>
<request-map uri="findTemporalExpression">
<security https="true" auth="true"/>
<response name="success" type="view" value="findTemporalExpression"/>
</request-map>
<!-- Geo Management -->
<request-map uri="FindGeo"><security https="true" auth="true"/><response name="success" type="view" value="FindGeo" save-home-view="true"/></request-map>
<request-map uri="geoPoint"><security https="true" auth="true"/><response name="success" type="view" value="geoPoint" save-home-view="true"/></request-map>
<request-map uri="geoPoints"><security https="true" auth="true"/><response name="success" type="view" value="geoPoints" save-home-view="true"/></request-map>
<request-map uri="EditGeo"><security https="true" auth="true"/><response name="success" type="view" value="EditGeo"/></request-map>
<request-map uri="LinkGeos"><security https="true" auth="true"/><response name="success" type="view" value="LinkGeos"/></request-map>
<request-map uri="LookupGeo"><security https="true" auth="true"/><response name="success" type="view" value="LookupGeo"/></request-map>
<request-map uri="createGeo">
<security https="true" auth="true"/>
<event type="service" path="" invoke="createGeo"/>
<response name="success" type="view" value="EditGeo"/>
<response name="error" type="view" value="EditGeo"/>
</request-map>
<request-map uri="updateGeo">
<security https="true" auth="true"/>
<event type="service" path="" invoke="updateGeo"/>
<response name="success" type="view" value="EditGeo"/>
<response name="error" type="view" value="EditGeo"/>
</request-map>
<request-map uri="deleteGeo">
<security https="true" auth="true"/>
<event type="service" path="" invoke="deleteGeo"/>
<response name="success" type="request-redirect" value="FindGeo">
<redirect-parameter name="noConditionFind"/>
</response>
<response name="error" type="view" value="FindGeo"/>
</request-map>
<request-map uri="deleteGeoAssoc">
<security https="true" auth="true"/>
<event type="service" invoke="deleteGeoAssoc"/>
<response name="success" type="view" value="EditGeo"/>
<response name="error" type="view" value="EditGeo"/>
</request-map>
<request-map uri="linkGeos">
<security https="true" auth="true"/>
<event type="service" path="" invoke="linkGeos"/>
<response name="success" type="view" value="LinkGeos"/>
<response name="error" type="view" value="LinkGeos"/>
</request-map>
<request-map uri="security">
<security https="true" auth="true"/>
<response name="success" type="view" value="FindUserLogin"/>
</request-map>
<request-map uri="WebtoolsLayoutDemo"><security https="true" auth="true"/><response name="success" type="view" value="WebtoolsLayoutDemo"/></request-map>
<request-map uri="WebtoolsLayoutDemoFop"><security https="true" auth="true"/><response name="success" type="view" value="WebtoolsLayoutDemoFop"/></request-map>
<request-map uri="WebtoolsLayoutDemoText"><security https="true" auth="true"/><response name="success" type="view" value="WebtoolsLayoutDemoText"/></request-map>
<request-map uri="WebtoolsLayoutDemoXml"><security https="true" auth="true"/><response name="success" type="view" value="WebtoolsLayoutDemoXml"/></request-map>
<request-map uri="WebtoolsLayoutDemoCsv"><security https="true" auth="true"/><response name="success" type="view" value="WebtoolsLayoutDemoCsv"/></request-map>
<request-map uri="WebtoolsLayoutDemoXls"><security https="true" auth="true"/><response name="success" type="view" value="WebtoolsLayoutDemoXls"/></request-map>
<!-- end of request mappings -->
<!-- View Mappings -->
<view-map name="main" type="screen" page="component://webtools/widget/CommonScreens.xml#main"/>
<view-map name="ping" type="ftl" page="component://webtools/template/Ping.ftl"/>
<view-map name="showDateTime" type="ftl" page="component://webtools/template/ShowDateTime.ftl"/>
<view-map name="entityref" type="screen" page="component://webtools/widget/EntityScreens.xml#EntityRef"/>
<view-map name="entityref_list" type="screen" page="component://webtools/widget/EntityScreens.xml#EntityRefList"/>
<view-map name="entityref_main" type="screen" page="component://webtools/widget/EntityScreens.xml#EntityRefMain"/>
<view-map name="entityrefReport" type="screenfop" page="component://webtools/widget/EntityScreens.xml#EntityRefReport" content-type="application/pdf" encoding="none"/>
<view-map name="entitymaint" type="screen" page="component://webtools/widget/EntityScreens.xml#EntityMaint"/>
<view-map name="FindGeneric" type="screen" page="component://webtools/widget/EntityScreens.xml#FindGeneric"/>
<view-map name="ViewGeneric" type="screen" page="component://webtools/widget/EntityScreens.xml#ViewGeneric"/>
<view-map name="EditGeneric" type="screen" page="component://webtools/widget/EntityScreens.xml#EditGeneric"/>
<view-map name="ViewRelations" type="screen" page="component://webtools/widget/EntityScreens.xml#ViewRelations"/>
<!-- these are NOT regions because they generate text output that should never be decorated -->
<view-map name="tablesMySql" page="template/entity/tablesMySql.jsp"/>
<view-map name="droptablesMySql" page="template/entity/droptablesMySql.jsp"/>
<view-map name="droptablesplain" page="template/entity/droptablesplain.jsp"/>
<view-map name="dataMySql" page="template/entity/dataMySql.jsp"/>
<view-map name="ModelWriter" page="template/entity/ModelWriter.jsp"/>
<view-map name="ModelGroupWriter" page="template/entity/ModelGroupWriter.jsp"/>
<view-map name="ModelInduceFromDb" type="screen" page="component://webtools/widget/EntityScreens.xml#ModelInduceFromDb"/>
<view-map name="EntityEoModelBundle" type="screen" page="component://webtools/widget/EntityScreens.xml#EntityEoModelBundle"/>
<view-map name="checkdb" type="screen" page="component://webtools/widget/EntityScreens.xml#CheckDb"/>
<view-map name="xmldsdump" type="screen" page="component://webtools/widget/EntityScreens.xml#xmldsdump"/>
<view-map name="xmldsrawdump" page="template/entity/xmldsrawdump.jsp"/>
<view-map name="FindUtilCache" type="screen" page="component://webtools/widget/CacheScreens.xml#FindUtilCache"/>
<view-map name="FindUtilCacheElements" type="screen" page="component://webtools/widget/CacheScreens.xml#FindUtilCacheElements"/>
<view-map name="EditUtilCache" type="screen" page="component://webtools/widget/CacheScreens.xml#EditUtilCache"/>
<view-map name="viewdatafile" type="screen" page="component://webtools/widget/MiscScreens.xml#viewdatafile"/>
<view-map name="LogConfiguration" type="screen" page="component://webtools/widget/LogScreens.xml#LogConfiguration"/>
<view-map name="LogView" type="screen" page="component://webtools/widget/LogScreens.xml#LogView"/>
<view-map name="FetchLogs" type="screen" page="component://webtools/widget/LogScreens.xml#FetchLogs"/>
<view-map name="StatsSinceStart" type="screen" page="component://webtools/widget/StatsScreens.xml#StatsSinceStart"/>
<view-map name="StatBinsHistory" type="screen" page="component://webtools/widget/StatsScreens.xml#StatBinsHistory"/>
<view-map name="ViewMetrics" type="screen" page="component://webtools/widget/StatsScreens.xml#ViewMetrics"/>
<view-map name="EntityPerformanceTest" type="screen" page="component://webtools/widget/EntityScreens.xml#EntityPerformanceTest"/>
<view-map name="ServiceLog" type="screen" page="component://webtools/widget/LogScreens.xml#ServiceLog"/>
<view-map name="ServiceList" type="screen" page="component://webtools/widget/ServiceScreens.xml#ServiceList"/>
<view-map name="FindJob" type="screen" page="component://webtools/widget/ServiceScreens.xml#FindJob"/>
<view-map name="JobDetails" type="screen" page="component://webtools/widget/ServiceScreens.xml#JobDetails"/>
<view-map name="serviceResult" type="screen" page="component://webtools/widget/ServiceScreens.xml#ServiceResult"/>
<view-map name="threadList" type="screen" page="component://webtools/widget/ServiceScreens.xml#ThreadList"/>
<view-map name="scheduleJob" type="screen" page="component://webtools/widget/ServiceScreens.xml#ScheduleJob"/>
<view-map name="runService" type="screen" page="component://webtools/widget/ServiceScreens.xml#RunService"/>
<view-map name="setServiceParameters" type="screen" page="component://webtools/widget/ServiceScreens.xml#setServiceParameters"/>
<view-map name="setSyncServiceParameters" type="screen" page="component://webtools/widget/ServiceScreens.xml#setSyncServiceParameters"/>
<view-map name="serviceEcaDetail" type="screen" page="component://webtools/widget/AvailableServicesScreens.xml#ServiceEcaDetail"/>
<view-map name="AddJobManagerLock" type="screen" page="component://webtools/widget/ServiceScreens.xml#AddJobManagerLock"/>
<view-map name="FindJobManagerLock" type="screen" page="component://webtools/widget/ServiceScreens.xml#FindJobManagerLock"/>
<view-map name="printStart" type="screen" page="component://webtools/widget/CommonScreens.xml#printStart"/>
<view-map name="printDone" type="screen" page="component://webtools/widget/CommonScreens.xml#printDone"/>
<view-map name="EntitySyncStatus" type="screen" page="component://webtools/widget/EntitySyncScreens.xml#EntitySyncStatus"/>
<view-map name="EntitySQLProcessor" type="screen" page="component://webtools/widget/EntityScreens.xml#EntitySQLProcessor"/>
<view-map name="ConnectionPoolStatus" type="screen" page="component://webtools/widget/EntityScreens.xml#ConnectionPoolStatus"/>
<view-map name="EntityExportAll" type="screen" page="component://webtools/widget/EntityScreens.xml#EntityExportAll"/>
<view-map name="ProgramExport" type="screen" page="component://webtools/widget/EntityScreens.xml#ProgramExport"/>
<view-map name="EntityImportDir" type="screen" page="component://webtools/widget/EntityScreens.xml#EntityImportDir"/>
<view-map name="EntityImport" type="screen" page="component://webtools/widget/EntityScreens.xml#EntityImport"/>
<view-map name="EntityImportReaders" type="screen" page="component://webtools/widget/EntityScreens.xml#EntityImportReaders"/>
<!-- cert views -->
<view-map name="viewbrowsercerts" type="screen" page="component://webtools/widget/CommonScreens.xml#browsercerts"/>
<!-- Artifact Info Views -->
<view-map name="ViewComponents" type="screen" page="component://webtools/widget/ArtifactInfoScreens.xml#ViewComponents"/>
<view-map name="TestSuiteInfo" type="screen" page="component://webtools/widget/ArtifactInfoScreens.xml#TestSuiteInfo"/>
<view-map name="ArtifactInfo" type="screen" page="component://webtools/widget/ArtifactInfoScreens.xml#ArtifactInfo"/>
<!-- Label Manager Views -->
<view-map name="SearchLabels" type="screen" page="component://webtools/widget/LabelManagerScreens.xml#SearchLabels"/>
<view-map name="UpdateLabel" type="screen" page="component://webtools/widget/LabelManagerScreens.xml#UpdateLabel"/>
<view-map name="ViewReferences" type="screen" page="component://webtools/widget/LabelManagerScreens.xml#ViewReferences"/>
<view-map name="ViewFile" type="screen" page="component://webtools/widget/LabelManagerScreens.xml#ViewFile"/>
<!-- Temporal expression views -->
<view-map name="editTemporalExpression" type="screen" page="component://webtools/widget/TempExprScreens.xml#EditTemporalExpression"/>
<view-map name="findTemporalExpression" type="screen" page="component://webtools/widget/TempExprScreens.xml#FindTemporalExpression"/>
<!-- Geo Management -->
<view-map name="FindGeo" type="screen" page="component://webtools/widget/GeoManagementScreens.xml#FindGeo"/>
<view-map name="geoPoint" type="screen" page="component://webtools/widget/GeoManagementScreens.xml#GeoPoint"/>
<view-map name="geoPoints" type="screen" page="component://webtools/widget/GeoManagementScreens.xml#GeoPoints"/>
<view-map name="EditGeo" type="screen" page="component://webtools/widget/GeoManagementScreens.xml#EditGeo"/>
<view-map name="LinkGeos" type="screen" page="component://webtools/widget/GeoManagementScreens.xml#LinkGeos"/>
<view-map name="LookupGeo" type="screen" page="component://webtools/widget/GeoManagementScreens.xml#LookupGeo"/>
<!-- Layout Demo -->
<view-map name="WebtoolsLayoutDemo" type="screen" page="component://webtools/widget/MiscScreens.xml#WebtoolsLayoutDemo"/>
<view-map name="WebtoolsLayoutDemoFop" type="screenfop" page="component://webtools/widget/MiscScreens.xml#WebtoolsLayoutDemoFop" content-type="application/pdf" encoding="none"/>
<view-map name="WebtoolsLayoutDemoText" type="screentext" page="component://webtools/widget/MiscScreens.xml#WebtoolsLayoutDemoText"/>
<view-map name="WebtoolsLayoutDemoXml" type="screenxml" page="component://webtools/widget/MiscScreens.xml#WebtoolsLayoutDemoText" content-type="text/xml"/>
<view-map name="WebtoolsLayoutDemoCsv" type="screencsv" page="component://webtools/widget/MiscScreens.xml#WebtoolsLayoutDemoText" content-type="text/csv"/>
<view-map name="WebtoolsLayoutDemoXls" type="screenxls" page="component://webtools/widget/MiscScreens.xml#WebtoolsLayoutDemoText" content-type="application/vnd.ms-excel"/>
<!-- end of view mappings -->
</site-conf>