[jboss-jira] [JBoss JIRA] (WFCORE-287) Provide an operation to execute domain wide queries on the server side

Heiko Rupp (JIRA) issues at jboss.org
Fri Jun 12 06:40:02 EDT 2015


    [ https://issues.jboss.org/browse/WFCORE-287?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13078089#comment-13078089 ] 

Heiko Rupp commented on WFCORE-287:
-----------------------------------

Awesome [~heiko.braun]

> Provide an operation to execute domain wide queries on the server side
> ----------------------------------------------------------------------
>
>                 Key: WFCORE-287
>                 URL: https://issues.jboss.org/browse/WFCORE-287
>             Project: WildFly Core
>          Issue Type: Feature Request
>          Components: Domain Management
>            Reporter: Heiko Braun
>            Assignee: Heiko Braun
>             Fix For: 2.0.0.Alpha3
>
>
> i.e. retrieve all 'enabled' datasources that use the 'h2' driver:
> {code:java}
> ModelNode address = new ModelNode();
> address.add("profile", "*")
>        .add("subsystem", "datasources")
>        .add("data-source", "*");
> ModelNode filter = new ModelNode();
> filter.add("driver-name", "h2")
>       .add("enabled", true);
> ModelNode op = new ModelNode();
> op.get(OP).set(QUERY);
> op.get(ADDRESS).set(address);
> op.get(WHERE).set(filter);
> {code}
> Another example using the CLI:
> {code}
> [standalone at localhost:9990 /] /path=*:query(select=[path], where={name="jboss.home.dir"})
> {
>     "outcome" => "success",
>     "result" => [{
>         "address" => [("path" => "jboss.home.dir")],
>         "outcome" => "success",
>         "result" => {"path" => "/Users/hbraun/dev/prj/wildfly-core/core-build/target/wildfly-core-1.0.0.Alpha14-SNAPSHOT"}
>     }]
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


More information about the jboss-jira mailing list