]
Brian Stansberry moved JBEAP-11791 to WFCORE-3007:
--------------------------------------------------
Project: WildFly Core (was: JBoss Enterprise Application Platform)
Key: WFCORE-3007 (was: JBEAP-11791)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
Component/s: Domain Management
Security
(was: Domain Management)
(was: Security)
Affects Version/s: (was: 7.1.0.ER1)
some xxx-realm operations should be marked runtime-only
-------------------------------------------------------
Key: WFCORE-3007
URL:
https://issues.jboss.org/browse/WFCORE-3007
Project: WildFly Core
Issue Type: Bug
Components: Domain Management, Security
Reporter: Martin Simka
Priority: Minor
some xxx-realm operations should be marked runtime-only. Their handlers extends
ElytronRuntimeOnlyHandler and they don't seem to change anything in model.
properties-realm:load
caching-realm:clear-cache
{code}
[domain@localhost:9990 /]
/profile=default/subsystem=elytron/properties-realm=ApplicationRealm:read-operation-description(name=load
{
"outcome" => "success",
"result" => {
"operation-name" => "load",
"description" => "Reload the properties files from the file
system.",
"request-properties" => {},
"reply-properties" => {},
"read-only" => false,
"runtime-only" => false
}
}
[domain@localhost:9990 /]
/profile=default/subsystem=elytron/caching-realm=test:read-operation-description(name=clear-cache
{
"outcome" => "success",
"result" => {
"operation-name" => "clear-cache",
"description" => "Removes all entries from the cache.",
"request-properties" => {},
"reply-properties" => {},
"read-only" => false,
"runtime-only" => false
}
}
{code}