Author: wkeil Date: Tue Jul 29 23:36:59 2014 New Revision: 1614515 URL: http://svn.apache.org/r1614515 Log: DMAP-35: Refactor Simple DDR
Task-Url: https://issues.apache.org/jira/browse/DMAP-35 Modified: incubator/devicemap/trunk/examples/ddr-service/src/main/webapp/WEB-INF/web.xml Modified: incubator/devicemap/trunk/examples/ddr-service/src/main/webapp/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/incubator/devicemap/trunk/examples/ddr-service/src/main/webapp/WEB-INF/web.xml?rev=1614515&r1=1614514&r2=1614515&view=diff ============================================================================== --- incubator/devicemap/trunk/examples/ddr-service/src/main/webapp/WEB-INF/web.xml (original) +++ incubator/devicemap/trunk/examples/ddr-service/src/main/webapp/WEB-INF/web.xml Tue Jul 29 23:36:59 2014 @@ -3,8 +3,8 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> - <display-name>deviceMap_JavaService</display-name> - <description>Device Map Java Service</description> + <display-name>DeviceMap DDR Service</display-name> + <description>Device Map DDR Simple Java Service</description> <welcome-file-list> <welcome-file>index.jsp</welcome-file> @@ -22,12 +22,12 @@ </servlet-mapping> <filter> - <filter-name>OpenDDRFilter</filter-name> + <filter-name>DeviceMapFilter</filter-name> <filter-class>org.apache.devicemap.simpleddr.web.filter.IdentificationFilter</filter-class> </filter> <filter-mapping> - <filter-name>OpenDDRFilter</filter-name> + <filter-name>DeviceMapFilter</filter-name> <url-pattern>/service/*</url-pattern> </filter-mapping>
