WildFly Dynamic Model Representation Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 5: Line 5:


=ModelNode=
=ModelNode=
The primary class of the public management API is <tt>org.jboss.dmr.ModelNode</tt>
A ModelNode is wrapper around a value. The value is typically some basic JDK type. A ModelNode exposes a <tt>getType()</tt> method. This method returns a value of type <tt>org.jboss.dmr.ModelType</tt>, which is an enum of all the valid types of values.
=ModelType=
=Property=


=ModelValue=
=ModelValue=

Revision as of 03:16, 5 September 2016

Internal

ModelNode

The primary class of the public management API is org.jboss.dmr.ModelNode

A ModelNode is wrapper around a value. The value is typically some basic JDK type. A ModelNode exposes a getType() method. This method returns a value of type org.jboss.dmr.ModelType, which is an enum of all the valid types of values.

ModelType

Property

ModelValue