Add: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 25: Line 25:
<font color=red>TODO</font>
<font color=red>TODO</font>


=Adding Hierarchical Data=
=Adding Children Nodes=


Specify the hierarchical structure as argument to <tt>add(...)</tt>.
Specify the hierarchical structure as argument to <tt>add(...)</tt>.

Revision as of 03:54, 16 November 2016

Internal

Overview

Adds a resource of given type.

Syntax

/path/<resource-type>:<resource-value>:add(...)

Adding a Node without Content

Use add() without any argument:

/path/<resource-type>:<resource-value>:add()

Example:

TODO

Adding Children Nodes

Specify the hierarchical structure as argument to add(...).

The children management nodes for the node being added with add() are specified as follows:

...:add(child-node-name-1=node-content-1, child-node-name-2=node-content-2, ...)

A set of attributes of a child node can be specified as follows:

child-node-name={"attribute-name1"=>"attribute-value-1", "attribute-name-2"=>"attribute-value-2", ...}

In the particular case the child node has just a single attribute named "value", this is specified as follows:

child-node-name="some-node-value"

Usage example of the syntax described above:

/subsystem=logging/file-handler=MYHANDLER:add(file={"path"=>"myfile.log", "relative-to"=>"jboss.server.log.dir"}, suffix=".yyyy-MM-dd")

This results in:

<server ...>
    ...
    <profile>
        <subsystem xmlns="urn:jboss:domain:logging:1.5">
            ...
            <file-handler name="MYHANDLER">
                <file relative-to="jboss.server.log.dir" path="myfile.log"/>
            </file-handler>
            <suffix value=".yyyy-MM-dd"/>
             ...
        </subsystem>
        ...
    </profile>
   ...
</server>

Examples