Removing unused file
Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/7b20eb7a Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/7b20eb7a Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/7b20eb7a Branch: refs/heads/master Commit: 7b20eb7a735f4bac1138d9cdc06b79a6bd922145 Parents: fff2791 Author: Colm O hEigeartaigh <[email protected]> Authored: Fri Nov 4 11:34:41 2016 +0000 Committer: Colm O hEigeartaigh <[email protected]> Committed: Fri Nov 4 11:34:41 2016 +0000 ---------------------------------------------------------------------- .../federation/wsfed/src/test/resources/web.xml | 102 ------------------- 1 file changed, 102 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/7b20eb7a/systests/federation/wsfed/src/test/resources/web.xml ---------------------------------------------------------------------- diff --git a/systests/federation/wsfed/src/test/resources/web.xml b/systests/federation/wsfed/src/test/resources/web.xml deleted file mode 100644 index 0719288..0000000 --- a/systests/federation/wsfed/src/test/resources/web.xml +++ /dev/null @@ -1,102 +0,0 @@ -<?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. - ---> -<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" - version="3.0" metadata-complete="true"> - - <description>Fediz IDP</description> - <display-name>Fediz IDP</display-name> - - <context-param> - <param-name>contextConfigLocation</param-name> - <param-value>/WEB-INF/applicationContext.xml</param-value> - </context-param> - - <context-param> - <param-name>spring.profiles.active</param-name> - <param-value>jpa</param-value> - </context-param> - - <filter> - <filter-name>springSecurityFilterChain</filter-name> - <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> - </filter> - - <filter-mapping> - <filter-name>springSecurityFilterChain</filter-name> - <url-pattern>/*</url-pattern> - </filter-mapping> - - <servlet> - <servlet-name>idp</servlet-name> - <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> - <init-param> - <param-name>publishContext</param-name> - <param-value>false</param-value> - </init-param> - <load-on-startup>1</load-on-startup> - </servlet> - - <servlet> - <servlet-name>metadata</servlet-name> - <servlet-class>org.apache.cxf.fediz.service.idp.MetadataServlet</servlet-class> - <init-param> - <param-name>realm</param-name> - <param-value>urn:org:apache:cxf:fediz:idp:realm-B</param-value> - </init-param> - </servlet> - - <servlet> - <servlet-name>CXFServlet</servlet-name> - <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class> - <load-on-startup>1</load-on-startup> - </servlet> - - <servlet-mapping> - <servlet-name>CXFServlet</servlet-name> - <url-pattern>/services/*</url-pattern> - </servlet-mapping> - - <servlet-mapping> - <servlet-name>idp</servlet-name> - <url-pattern>/federation</url-pattern> - </servlet-mapping> - - <servlet-mapping> - <servlet-name>metadata</servlet-name> - <url-pattern>/FederationMetadata/2007-06/FederationMetadata.xml</url-pattern> - </servlet-mapping> - - <listener> - <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> - </listener> - - <!-- Uncomment this when using JNDI DataSource --> - <!-- The property jpa.platform must be updated in persistence.properties even you use JNDI Datasource --> - <!-- - <resource-ref> - <res-ref-name>jdbc/fedizDataSource</res-ref-name> - <res-type>javax.sql.DataSource</res-type> - <res-auth>Container</res-auth> - </resource-ref> - --> - -</web-app>
