|
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
Security Deployer
-->
<deployment xmlns="urn:jboss:bean-deployer:2.0">
<bean name="SecurityDeployer" class="org.jboss.deployment.security.SecurityDeployer">
<property name="type">security</property>
<property name="ignoreSuffixes">
<set elementClass="java.lang.String">
<value>xml</value>
<value>beans</value>
<value>deployer</value>
<value>rar</value>
<value>properties</value>
</set>
</property>
</bean>
<!-- JNDI Object Factory to establish SecurityDomainContext objects -->
<bean name="SecurityDomainObjectFactory" class="org.jboss.security.integration.SecurityDomainObjectFactory" />
<!-- JNDI Context legacy establishment of java:/jaas/securityDomain -->
<bean name="JBossSecurityJNDIContextEstablishment" class="org.jboss.security.integration.JNDIContextEstablishment"/>
<!-- JNDI Based Security Management -->
<bean name="JNDIBasedSecurityManagement" class="org.jboss.security.integration.JNDIBasedSecurityManagement">
</bean>
</deployment>
|