]
Darran Lofthouse updated WFLY-7477:
-----------------------------------
Affects Version/s: (was: 11.0.0.Alpha1)
Elytron dir-context not updatable
---------------------------------
Key: WFLY-7477
URL:
https://issues.jboss.org/browse/WFLY-7477
Project: WildFly
Issue Type: Bug
Components: Security
Reporter: Martin Choma
Assignee: Ilia Vassilev
Fix For: 11.0.0.Alpha1
All attributes of {{dir-context}} resource are read-only.
Attempt to update:
{code}
[standalone@localhost:9990 /] /subsystem=elytron/dir-context=dc:write-attribute(name=url,
value=ldap://localhost:10389)
{
"outcome" => "failed",
"failure-description" => "WFLYCTL0048: Attribute url is not
writable",
"rolled-back" => true
}
{code}
Model description:
{code}
"url" => {
"type" => STRING,
"description" => "The connection url.",
"expressions-allowed" => true,
"nillable" => true,
"min-length" => 1L,
"max-length" => 2147483647L,
"access-type" => "read-only",
"storage" => "configuration"
}
{code}
Make {{dir-context}} updatable.