force.authzforce-ce-restful-pdp-cxf-spring-boot-server.7.1.0.source-code.spring-beans.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authzforce-ce-restful-pdp-cxf-spring-boot-server Show documentation
Show all versions of authzforce-ce-restful-pdp-cxf-spring-boot-server Show documentation
AuthzForce - RESTful PDP service based on Apache CXF/Spring Boot that is compliant with REST Profile of XACML 3.0, and consumes/produces both XACML-XML and XACML-JSON-Profile-compliant requests/responses
The newest version!
<!-- 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. --> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxrs="http://cxf.apache.org/jaxrs" xmlns:util="http://www.springframework.org/schema/util" xmlns:core="http://cxf.apache.org/core" xsi:schemaLocation=" http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> <bean id="pdpEngineConf" class="org.ow2.authzforce.core.pdp.impl.PdpEngineConfiguration" factory-method="getInstance"> <constructor-arg name="confLocation" value="classpath:pdp.xml" /> <constructor-arg name="catalogLocation" value="classpath:catalog.xml" /> <constructor-arg name="extensionXsdLocation" value="classpath:pdp-ext.xsd" /> </bean> <bean id="apiSchemaHandler" class="org.apache.cxf.jaxrs.utils.schemas.SchemaHandler"> <property name="catalogLocation" value="classpath:/catalog.xml" /> <property name="schemaLocations"> <util:list> <value>classpath:/xacml-core-v3-schema-wd-17.xsd</value> </util:list> </property> </bean> <!-- JAX-RS service supporting XML (textual) and JSON --> <core:bus> <core:properties> <!-- Since not using default JSON Provider, prevent it to be triggered (especially when using FastInfoset instead of JSON, else there is conflict) --> <entry key="skip.default.json.provider.registration" value="true" /> </core:properties> </core:bus> <!-- <jaxrs:server depends-on="ClientAuthHttpsSettings" address="https://localhost:${testutil.ports.PdpServer}/authzforce-ce"> --> <jaxrs:server id="tazService" address="/" staticSubresourceResolution="true"> <jaxrs:serviceBeans> <bean class="org.ow2.authzforce.rest.pdp.jaxrs.JaxrsPdpResource"> <constructor-arg ref="pdpEngineConf" /> </bean> </jaxrs:serviceBeans> <jaxrs:features> <core:logging /> </jaxrs:features> <jaxrs:providers> <bean class="org.apache.cxf.jaxrs.provider.JAXBElementProvider"> <property name="singleJaxbContext" value="true" /> <!-- <property name="extraClass" value="#{ T(org.ow2.authzforce.core.pdp.impl.PdpExtensions).getExtensionJaxbClasses().toArray() }" /> --> <property name="schemaHandler" ref="apiSchemaHandler" /> </bean> <bean class="org.ow2.authzforce.jaxrs.util.JsonRiJaxrsProvider"> <!-- Provider for XACML/JSON profile support (only to be used on /pdp resource) --> <constructor-arg name="schema" value="#{T(org.ow2.authzforce.xacml.json.model.XacmlJsonUtils).REQUEST_SCHEMA}" /> <constructor-arg name="maxJsonStringSize" value="1000" /> <constructor-arg name="maxNumOfImmediateChildren" value="100" /> <constructor-arg name="maxDepth" value="100" /> </bean> <bean class="org.ow2.authzforce.jaxrs.util.BadRequestExceptionMapper" /> <bean class="org.ow2.authzforce.jaxrs.util.ClientErrorExceptionMapper" /> <bean class="org.ow2.authzforce.jaxrs.util.UnsupportedOperationExceptionMapper" /> <bean class="org.ow2.authzforce.jaxrs.util.ServerErrorExceptionMapper" /> <bean class="org.ow2.authzforce.jaxrs.util.DefaultExceptionMapper" /> </jaxrs:providers> </jaxrs:server> </beans>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy