Details
-
Feature Request
-
Status: Closed
-
Major
-
Resolution: Done
-
2017.1.1
-
None
Description
In testing a custom jaspic configuration I ran into the problem of needing to be able to specify the module attribute that specifies which jboss module to use to load the class. It looks like all of the security module types support this attribute. Here is the authModuleType as an example.
{{
<xs:complexType name="authModuleType">
<xs:annotation>
<xs:documentation>
<![CDATA[
Authentication module configuration for JASPI.
]]>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="module-option" type="propertyType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="optional"/>
<xs:attribute name="code" type="xs:string" use="required"/>
<xs:attribute name="flag" type="module-option-flag" use="optional"/>
<xs:attribute name="login-module-stack-ref" type="xs:string" use="optional"/>
<xs:attribute name="module" type="xs:string" use="optional"/>
</xs:complexType>
}}
I have created a https://github.com/wildfly-swarm/wildfly-config-api/pull/31 request to add the module attribute