-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathspring-beans.xml
More file actions
101 lines (96 loc) · 4.19 KB
/
spring-beans.xml
File metadata and controls
101 lines (96 loc) · 4.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!-- 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="file:${cfg.dir}/pdp.xml" />
<constructor-arg
name="catalogLocation"
value="${cfg.dir}/catalog.xml" />
<constructor-arg
name="extensionXsdLocation"
value="file:${cfg.dir}/pdp-ext.xsd" />
</bean>
<bean
id="apiSchemaHandler"
class="org.apache.cxf.jaxrs.utils.schemas.SchemaHandler">
<property
name="catalogLocation"
value="${cfg.dir}/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="xacmlPdp"
address="${cxf.jaxrs.server.path}"
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>