]
Ilia Vassilev reassigned ELY-1111:
----------------------------------
Assignee: Ilia Vassilev (was: Darran Lofthouse)
There is description of "case-sensitive" attribute
inconsistency between model and XSD.
---------------------------------------------------------------------------------------
Key: ELY-1111
URL:
https://issues.jboss.org/browse/ELY-1111
Project: WildFly Elytron
Issue Type: Bug
Components: Credential Store
Reporter: Hynek Švábek
Assignee: Ilia Vassilev
There is description of "case-sensitive" attribute inconsistency between model
and XSD.
In XSD is missing default value.
Please add to XSD default value and unify description.
I suggest use description from model as right one: "Case sensitivity of the
credential store. If case insensitive only lower case names are allowed for
aliases.".
*MODEL*
{code}
"case-sensitive" => {
"type" => BOOLEAN,
"description" => "Case sensitivity of the
credential store. If case insensitive only lower case names are allowed for
aliases.",
"attribute-group" =>
"implementation",
"expressions-allowed" => false,
"required" => false,
"nillable" => true,
"default" => false,
"access-type" => "read-write",
"storage" => "configuration",
"restart-required" =>
"resource-services"
},
{code}
*DMR*
{code}
<xs:attribute name="case-sensitive" type="xs:boolean"
use="optional">
<xs:annotation>
<xs:documentation>
Indicates that the credential store is case sensitive and should then
allow for upper case in alias.
</xs:documentation>
</xs:annotation>
</xs:attribute>
{code}