Uses of Class
org.jboss.dmr.ModelNode
-
Packages that use ModelNode Package Description org.jboss.as.controller.client The core client API for interacting with the management controllers for either a JBoss Application Server Managed Domain or a standalone JBoss Application Server.org.jboss.as.controller.client.helpers org.jboss.as.controller.client.helpers.domain Convenience API built on top of thecore management APIto make it easier to perform common management tasks against a JBoss Application Server Managed Domain.org.jboss.as.controller.client.helpers.domain.impl Implementation classes to support themanaged domain convenience API.org.jboss.as.controller.client.helpers.standalone.impl Implementation classes to support thestandalone server convenience API.org.jboss.as.controller.client.impl Implementation classes to support thecore JBoss AS management client API.org.jboss.as.naming.management org.jboss.as.naming.subsystem org.jboss.dmr -
-
Uses of ModelNode in org.jboss.as.controller.client
Methods in org.jboss.as.controller.client that return ModelNode Modifier and Type Method Description default ModelNodeModelControllerClient. execute(Operation operation)Execute an operation synchronously.default ModelNodeModelControllerClient. execute(Operation operation, OperationMessageHandler messageHandler)Execute an operation synchronously, optionally receiving progress reports.default ModelNodeModelControllerClient. execute(ModelNode operation)Execute an operation synchronously.default ModelNodeModelControllerClient. execute(ModelNode operation, OperationMessageHandler messageHandler)Execute an operation synchronously, optionally receiving progress reports.ModelNodeOperation. getOperation()The detyped operation to executeModelNodeOperationResponse. getResponseNode()Gets the DMR response to the operation.Methods in org.jboss.as.controller.client that return types with arguments of type ModelNode Modifier and Type Method Description default org.jboss.threads.AsyncFuture<ModelNode>ModelControllerClient. executeAsync(Operation operation)Execute an operation in another thread.org.jboss.threads.AsyncFuture<ModelNode>ModelControllerClient. executeAsync(Operation operation, OperationMessageHandler messageHandler)Execute an operation in another thread, optionally receiving progress reports.default org.jboss.threads.AsyncFuture<ModelNode>ModelControllerClient. executeAsync(ModelNode operation)Execute an operation in another thread.default org.jboss.threads.AsyncFuture<ModelNode>ModelControllerClient. executeAsync(ModelNode operation, OperationMessageHandler messageHandler)Execute an operation in another thread, optionally receiving progress reports.Methods in org.jboss.as.controller.client with parameters of type ModelNode Modifier and Type Method Description static OperationOperation.Factory. create(ModelNode operation)Create a simple operation with no stream attachments.static OperationOperation.Factory. create(ModelNode operation, List<InputStream> attachments)Create a simple operation with stream attachments.static OperationOperation.Factory. create(ModelNode operation, List<InputStream> attachments, boolean autoCloseStreams)Create an operation using the given streams and beauto-close streamssetting.static OperationBuilderOperationBuilder. create(ModelNode operation)Create an operation builder.static OperationBuilderOperationBuilder. create(ModelNode operation, boolean autoCloseStreams)Create an operation builder.static OperationResponseOperationResponse.Factory. createSimple(ModelNode responseNode)default ModelNodeModelControllerClient. execute(ModelNode operation)Execute an operation synchronously.default ModelNodeModelControllerClient. execute(ModelNode operation, OperationMessageHandler messageHandler)Execute an operation synchronously, optionally receiving progress reports.default org.jboss.threads.AsyncFuture<ModelNode>ModelControllerClient. executeAsync(ModelNode operation)Execute an operation in another thread.default org.jboss.threads.AsyncFuture<ModelNode>ModelControllerClient. executeAsync(ModelNode operation, OperationMessageHandler messageHandler)Execute an operation in another thread, optionally receiving progress reports.Constructors in org.jboss.as.controller.client with parameters of type ModelNode Constructor Description OperationBuilder(ModelNode operation)OperationBuilder(ModelNode operation, boolean autoCloseStreams) -
Uses of ModelNode in org.jboss.as.controller.client.helpers
Methods in org.jboss.as.controller.client.helpers that return ModelNode Modifier and Type Method Description static ModelNodeOperations. createAddOperation(ModelNode address)Creates an add operation.static ModelNodeOperations. createAddress(Iterable<String> pairs)Creates an address that can be used as the address for an operation.static ModelNodeOperations. createAddress(String... pairs)Creates an address that can be used as the address for an operation.static ModelNodeOperations. createCompositeOperation()Creates a composite operation with an empty address and empty steps that will rollback on a runtime failure.static ModelNodeOperations. createOperation(String operation)Creates a generic operation with an empty (root) address.static ModelNodeOperations. createOperation(String operation, ModelNode address)Creates an operation.static ModelNodeOperations. createReadAttributeOperation(ModelNode address, String attributeName)Creates an operation to read the attribute represented by theattributeNameparameter.static ModelNodeOperations. createReadResourceOperation(ModelNode address)Creates a non-recursive operation to read a resource.static ModelNodeOperations. createReadResourceOperation(ModelNode address, boolean recursive)Creates an operation to read a resource.static ModelNodeOperations. createRemoveOperation(ModelNode address)Creates a remove operation.static ModelNodeOperations. createUndefineAttributeOperation(ModelNode address, String attributeName)Creates an operation to undefine an attribute value represented by theattributeNameparameter.static ModelNodeOperations. createWriteAttributeOperation(ModelNode address, String attributeName, boolean value)Creates an operation to write an attribute value represented by theattributeNameparameter.static ModelNodeOperations. createWriteAttributeOperation(ModelNode address, String attributeName, int value)Creates an operation to write an attribute value represented by theattributeNameparameter.static ModelNodeOperations. createWriteAttributeOperation(ModelNode address, String attributeName, long value)Creates an operation to write an attribute value represented by theattributeNameparameter.static ModelNodeOperations. createWriteAttributeOperation(ModelNode address, String attributeName, String value)Creates an operation to write an attribute value represented by theattributeNameparameter.static ModelNodeOperations. createWriteAttributeOperation(ModelNode address, String attributeName, ModelNode value)Creates an operation to write an attribute value represented by theattributeNameparameter.ModelNodeDelegatingModelControllerClient. execute(Operation operation)ModelNodeDelegatingModelControllerClient. execute(Operation operation, OperationMessageHandler messageHandler)ModelNodeDelegatingModelControllerClient. execute(ModelNode operation)ModelNodeDelegatingModelControllerClient. execute(ModelNode operation, OperationMessageHandler messageHandler)static ModelNodeOperations. getFailureDescription(ModelNode result)Parses the result and returns the failure description.static ModelNodeOperations. getOperationAddress(ModelNode op)Returns the address for the operation.static ModelNodeOperations. readResult(ModelNode result)Reads the result of an operation and returns the result.Methods in org.jboss.as.controller.client.helpers that return types with arguments of type ModelNode Modifier and Type Method Description org.jboss.threads.AsyncFuture<ModelNode>ContextualModelControllerClient. executeAsync(Operation operation, OperationMessageHandler messageHandler)org.jboss.threads.AsyncFuture<ModelNode>DelegatingModelControllerClient. executeAsync(Operation operation, OperationMessageHandler messageHandler)org.jboss.threads.AsyncFuture<ModelNode>DelegatingModelControllerClient. executeAsync(ModelNode operation, OperationMessageHandler messageHandler)Methods in org.jboss.as.controller.client.helpers with parameters of type ModelNode Modifier and Type Method Description Operations.CompositeOperationBuilderOperations.CompositeOperationBuilder. addStep(ModelNode op)Adds a new operation to the composite operation.static ModelNodeOperations. createAddOperation(ModelNode address)Creates an add operation.static ModelNodeOperations. createOperation(String operation, ModelNode address)Creates an operation.static ModelNodeOperations. createReadAttributeOperation(ModelNode address, String attributeName)Creates an operation to read the attribute represented by theattributeNameparameter.static ModelNodeOperations. createReadResourceOperation(ModelNode address)Creates a non-recursive operation to read a resource.static ModelNodeOperations. createReadResourceOperation(ModelNode address, boolean recursive)Creates an operation to read a resource.static ModelNodeOperations. createRemoveOperation(ModelNode address)Creates a remove operation.static ModelNodeOperations. createUndefineAttributeOperation(ModelNode address, String attributeName)Creates an operation to undefine an attribute value represented by theattributeNameparameter.static ModelNodeOperations. createWriteAttributeOperation(ModelNode address, String attributeName, boolean value)Creates an operation to write an attribute value represented by theattributeNameparameter.static ModelNodeOperations. createWriteAttributeOperation(ModelNode address, String attributeName, int value)Creates an operation to write an attribute value represented by theattributeNameparameter.static ModelNodeOperations. createWriteAttributeOperation(ModelNode address, String attributeName, long value)Creates an operation to write an attribute value represented by theattributeNameparameter.static ModelNodeOperations. createWriteAttributeOperation(ModelNode address, String attributeName, String value)Creates an operation to write an attribute value represented by theattributeNameparameter.static ModelNodeOperations. createWriteAttributeOperation(ModelNode address, String attributeName, ModelNode value)Creates an operation to write an attribute value represented by theattributeNameparameter.ModelNodeDelegatingModelControllerClient. execute(ModelNode operation)ModelNodeDelegatingModelControllerClient. execute(ModelNode operation, OperationMessageHandler messageHandler)org.jboss.threads.AsyncFuture<ModelNode>DelegatingModelControllerClient. executeAsync(ModelNode operation, OperationMessageHandler messageHandler)static ModelNodeOperations. getFailureDescription(ModelNode result)Parses the result and returns the failure description.static ModelNodeOperations. getOperationAddress(ModelNode op)Returns the address for the operation.static StringOperations. getOperationName(ModelNode op)Returns the name of the operation.static booleanOperations. isSuccessfulOutcome(ModelNode outcome)Checks the result for a successful operation outcome.static ModelNodeOperations. readResult(ModelNode result)Reads the result of an operation and returns the result. -
Uses of ModelNode in org.jboss.as.controller.client.helpers.domain
Methods in org.jboss.as.controller.client.helpers.domain that return ModelNode Modifier and Type Method Description ModelNodeServerUpdateResult. getSuccessResult()Gets the result of the action's modification to the server's configuration. -
Uses of ModelNode in org.jboss.as.controller.client.helpers.domain.impl
Methods in org.jboss.as.controller.client.helpers.domain.impl that return ModelNode Modifier and Type Method Description ModelNodeDomainClientImpl. execute(Operation operation)ModelNodeDomainClientImpl. execute(Operation operation, OperationMessageHandler messageHandler)ModelNodeDomainClientImpl. execute(ModelNode operation)ModelNodeDomainClientImpl. execute(ModelNode operation, OperationMessageHandler messageHandler)ModelNodeUpdateResultHandlerResponse. getSuccessResult()Methods in org.jboss.as.controller.client.helpers.domain.impl that return types with arguments of type ModelNode Modifier and Type Method Description org.jboss.threads.AsyncFuture<ModelNode>DomainClientImpl. executeAsync(Operation operation, OperationMessageHandler messageHandler)org.jboss.threads.AsyncFuture<ModelNode>DomainClientImpl. executeAsync(ModelNode operation, OperationMessageHandler messageHandler)Methods in org.jboss.as.controller.client.helpers.domain.impl with parameters of type ModelNode Modifier and Type Method Description static UpdateResultHandlerResponseUpdateResultHandlerResponse. createSuccessResponse(ModelNode result)ModelNodeDomainClientImpl. execute(ModelNode operation)ModelNodeDomainClientImpl. execute(ModelNode operation, OperationMessageHandler messageHandler)org.jboss.threads.AsyncFuture<ModelNode>DomainClientImpl. executeAsync(ModelNode operation, OperationMessageHandler messageHandler)static UpdateResultHandlerResponseUpdateResultHandlerResponse. fromModelNode(ModelNode modelNode) -
Uses of ModelNode in org.jboss.as.controller.client.helpers.standalone.impl
Methods in org.jboss.as.controller.client.helpers.standalone.impl that return types with arguments of type ModelNode Modifier and Type Method Description protected abstract Future<ModelNode>AbstractServerDeploymentManager. executeOperation(Operation context)protected Future<ModelNode>ModelControllerClientServerDeploymentManager. executeOperation(Operation operation) -
Uses of ModelNode in org.jboss.as.controller.client.impl
Methods in org.jboss.as.controller.client.impl that return ModelNode Modifier and Type Method Description ModelNodeAbstractModelControllerClient. execute(Operation operation)ModelNodeAbstractModelControllerClient. execute(Operation operation, OperationMessageHandler messageHandler)ModelNodeAbstractModelControllerClient. execute(ModelNode operation)ModelNodeAbstractModelControllerClient. execute(ModelNode operation, OperationMessageHandler messageHandler)ModelNodeOperationResponseProxy. getResponseNode()Methods in org.jboss.as.controller.client.impl that return types with arguments of type ModelNode Modifier and Type Method Description org.jboss.threads.AsyncFuture<ModelNode>AbstractModelControllerClient. executeAsync(Operation operation, OperationMessageHandler messageHandler)org.jboss.threads.AsyncFuture<ModelNode>AbstractModelControllerClient. executeAsync(ModelNode operation, OperationMessageHandler messageHandler)Methods in org.jboss.as.controller.client.impl with parameters of type ModelNode Modifier and Type Method Description static OperationResponseProxyOperationResponseProxy. create(ModelNode responseNode, org.jboss.as.protocol.mgmt.ManagementChannelAssociation channelAssociation, int batchId, ModelNode streamHeader)ModelNodeAbstractModelControllerClient. execute(ModelNode operation)ModelNodeAbstractModelControllerClient. execute(ModelNode operation, OperationMessageHandler messageHandler)org.jboss.threads.AsyncFuture<ModelNode>AbstractModelControllerClient. executeAsync(ModelNode operation, OperationMessageHandler messageHandler) -
Uses of ModelNode in org.jboss.as.naming.management
Methods in org.jboss.as.naming.management that return ModelNode Modifier and Type Method Description ModelNodeJndiViewExtensionContext. getResult()Get the operation result.Methods in org.jboss.as.naming.management with parameters of type ModelNode Modifier and Type Method Description voidJndiViewExtensionContext. addEntries(ModelNode current, Context context)Add all the entries from the provided context into the provided model node.voidJndiViewOperation. execute(org.jboss.as.controller.OperationContext context, ModelNode operation) -
Uses of ModelNode in org.jboss.as.naming.subsystem
Methods in org.jboss.as.naming.subsystem that return ModelNode Modifier and Type Method Description protected static ModelNodeNamingSubsystem11Parser. parse(org.jboss.as.controller.AttributeDefinition ad, String value, XMLStreamReader reader)protected static ModelNodeNamingSubsystem12Parser. parse(org.jboss.as.controller.AttributeDefinition ad, String value, XMLStreamReader reader)ModelNodeBindingType. toModelNode()Converts the value of the directory grouping to a model node.Methods in org.jboss.as.naming.subsystem with parameters of type ModelNode Modifier and Type Method Description protected voidNamingSubsystemAdd. performBoottime(org.jboss.as.controller.OperationContext context, ModelNode operation, ModelNode model)protected voidNamingBindingAdd. performRuntime(org.jboss.as.controller.OperationContext context, ModelNode operation, ModelNode model)protected voidNamingSubsystemRemove. performRuntime(org.jboss.as.controller.OperationContext context, ModelNode operation, ModelNode model)protected voidRemoteNamingAdd. performRuntime(org.jboss.as.controller.OperationContext context, ModelNode operation, ModelNode model)protected voidNamingBindingAdd. populateModel(org.jboss.as.controller.OperationContext context, ModelNode operation, org.jboss.as.controller.registry.Resource resource)protected voidNamingBindingAdd. populateModel(ModelNode operation, ModelNode model)protected voidNamingSubsystemAdd. populateModel(ModelNode operation, ModelNode model)protected voidRemoteNamingAdd. populateModel(ModelNode operation, ModelNode model)protected voidNamingSubsystemRemove. recoverServices(org.jboss.as.controller.OperationContext context, ModelNode operation, ModelNode model)Method parameters in org.jboss.as.naming.subsystem with type arguments of type ModelNode Modifier and Type Method Description voidNamingSubsystem11Parser. readElement(org.jboss.staxmapper.XMLExtendedStreamReader reader, List<ModelNode> operations)voidNamingSubsystem12Parser. readElement(org.jboss.staxmapper.XMLExtendedStreamReader reader, List<ModelNode> operations)voidNamingSubsystem13Parser. readElement(org.jboss.staxmapper.XMLExtendedStreamReader reader, List<ModelNode> operations)voidNamingSubsystem14Parser. readElement(org.jboss.staxmapper.XMLExtendedStreamReader reader, List<ModelNode> operations) -
Uses of ModelNode in org.jboss.dmr
Fields in org.jboss.dmr declared as ModelNode Modifier and Type Field Description static ModelNodeModelNode. FALSEstatic ModelNodeValidation. SCHEMA_DEFINITIONstatic ModelNodeModelNode. TRUEstatic ModelNodeModelNode. ZEROstatic ModelNodeModelNode. ZERO_LONGMethods in org.jboss.dmr that return ModelNode Modifier and Type Method Description ModelNodeModelNode. add()Add a node to the end of this node's value list and return it.ModelNodeModelNode. add(boolean newValue)Add the given value to the end of this node's value list.ModelNodeModelNode. add(byte[] newValue)Add the given value to the end of this node's value list.ModelNodeModelNode. add(double newValue)Add the given value to the end of this node's value list.ModelNodeModelNode. add(int newValue)Add the given value to the end of this node's value list.ModelNodeModelNode. add(long newValue)Add the given value to the end of this node's value list.ModelNodeModelNode. add(String newValue)Add the given value to the end of this node's value list.ModelNodeModelNode. add(String propertyName, boolean propertyValue)Add a property with the given name and value to the end of this node's value list.ModelNodeModelNode. add(String propertyName, byte[] propertyValue)Add a property with the given name and value to the end of this node's value list.ModelNodeModelNode. add(String propertyName, double propertyValue)Add a property with the given name and value to the end of this node's value list.ModelNodeModelNode. add(String propertyName, int propertyValue)Add a property with the given name and value to the end of this node's value list.ModelNodeModelNode. add(String propertyName, long propertyValue)Add a property with the given name and value to the end of this node's value list.ModelNodeModelNode. add(String propertyName, String propertyValue)Add a property with the given name and value to the end of this node's value list.ModelNodeModelNode. add(String propertyName, BigDecimal propertyValue)Add a property with the given name and value to the end of this node's value list.ModelNodeModelNode. add(String propertyName, BigInteger propertyValue)Add a property with the given name and value to the end of this node's value list.ModelNodeModelNode. add(String propertyName, ModelNode propertyValue)Add a property with the given name and value to the end of this node's value list.ModelNodeModelNode. add(String propertyName, ValueExpression propertyValue)Add a property with the given name and value to the end of this node's value list.ModelNodeModelNode. add(BigDecimal newValue)Add the given value to the end of this node's value list.ModelNodeModelNode. add(BigInteger newValue)Add the given value to the end of this node's value list.ModelNodeModelNode. add(ModelNode newValue)Add a copy of the given value to the end of this node's value list.ModelNodeModelNode. add(Property property)Add a property to the end of this node's value list.ModelNodeModelNode. add(ValueExpression newValue)Add the given value to the end of this node's value list.ModelNodeModelNode. addEmptyList()Add a node of typeModelType.LISTto the end of this node's value list and return it.ModelNodeModelNode. addEmptyObject()Add a node of typeModelType.OBJECTto the end of this node's value list and return it.ModelNodeModelNode. addExpression(String newValue)Deprecated.Useadd(ValueExpression)instead.ModelNodeModelNode. asObject()Get a copy of this value as an object.ModelNodeModelNode. clear()Clear this node's value and change its type toModelType.UNDEFINED.ModelNodeModelNode. clone()Clone this model node.static ModelNodeModelNode. fromBase64(InputStream stream)Reads base64 data from the passed stream, and deserializes the decoded result.static ModelNodeModelNode. fromBase64String(String encoded)Reads base64 data from the passed string, and deserializes the decoded result.static ModelNodeModelNode. fromJSONStream(InputStream stream)Get a model node from a JSON text representation of the model node.static ModelNodeModelNode. fromJSONString(String input)static ModelNodeModelNode. fromStream(InputStream stream)Get a model node from a text representation of the model node.static ModelNodeModelNode. fromString(String input)Get a model node from a string representation of the model node.ModelNodeModelNode. get(int index)Get the child of this node with the given index.ModelNodeModelNode. get(String name)Get the child of this node with the given name.ModelNodeModelNode. get(String... names)Recursively get the children of this node with the given names.ModelNodeProperty. getValue()ModelNodeModelNode. insert(int index)Insert a node at provided index of this node's value list and return it.ModelNodeModelNode. insert(ModelNode newValue, int index)insert copy of the given value to provided index of this node's value list.ModelNodeModelNode. remove(int index)Remove a child of this list, returning the child.ModelNodeModelNode. remove(String name)Remove a child of this node, returning the child.ModelNodeModelNode. require(int index)Require the existence of a child of this node with the given index, returning the child.ModelNodeModelNode. require(String name)Require the existence of a child of this node with the given name, returning the child.ModelNodeModelNode. resolve()Return a copy of this model node, with all values of typeModelType.EXPRESSIONlocally resolved.ModelNodeModelNode. set(boolean newValue)Change this node's value to the given value.ModelNodeModelNode. set(byte[] newValue)Change this node's value to the given value.ModelNodeModelNode. set(double newValue)Change this node's value to the given value.ModelNodeModelNode. set(int newValue)Change this node's value to the given value.ModelNodeModelNode. set(long newValue)Change this node's value to the given value.ModelNodeModelNode. set(String newValue)Change this node's value to the given value.ModelNodeModelNode. set(String propertyName, boolean propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(String propertyName, byte[] propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(String propertyName, double propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(String propertyName, int propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(String propertyName, long propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(String propertyName, String propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(String propertyName, BigDecimal propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(String propertyName, BigInteger propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(String propertyName, ModelNode propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(String propertyName, ModelType propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(String propertyName, ValueExpression propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(BigDecimal newValue)Change this node's value to the given value.ModelNodeModelNode. set(BigInteger newValue)Change this node's value to the given value.ModelNodeModelNode. set(Collection<ModelNode> newValue)Change this node's value to a list whose values are copied from the given collection.ModelNodeModelNode. set(ModelNode newValue)Change this node's value to the given value.ModelNodeModelNode. set(ModelType newValue)Change this node's value to the given value.ModelNodeModelNode. set(Property newValue)Change this node's value to the given value.ModelNodeModelNode. set(ValueExpression newValue)Change this node's value to the given value.ModelNodeModelNode. setEmptyList()Change this node's value to an empty list.ModelNodeModelNode. setEmptyObject()Change this node's value to an empty object.ModelNodeModelNode. setExpression(String newValue)Deprecated.Useset(ValueExpression)instead.ModelNodeModelNode. setExpression(String propertyName, String propertyValue)Deprecated.Useset(String,ValueExpression)instead.Methods in org.jboss.dmr that return types with arguments of type ModelNode Modifier and Type Method Description List<ModelNode>ModelNode. asList()Get the list of entries contained in this object.List<ModelNode>ModelNode. asList(List<ModelNode> defVal)List<ModelNode>ModelNode. asListOrEmpty()Methods in org.jboss.dmr with parameters of type ModelNode Modifier and Type Method Description ModelNodeModelNode. add(String propertyName, ModelNode propertyValue)Add a property with the given name and value to the end of this node's value list.ModelNodeModelNode. add(ModelNode newValue)Add a copy of the given value to the end of this node's value list.booleanModelNode. equals(ModelNode other)Determine whether this object is equal to another.ModelNodeModelNode. insert(ModelNode newValue, int index)insert copy of the given value to provided index of this node's value list.ModelNodeModelNode. set(String propertyName, ModelNode propertyValue)Change this node's value to a property with the given name and value.ModelNodeModelNode. set(ModelNode newValue)Change this node's value to the given value.static voidValidation. validate(ModelNode schema, String rootType)Method parameters in org.jboss.dmr with type arguments of type ModelNode Modifier and Type Method Description List<ModelNode>ModelNode. asList(List<ModelNode> defVal)ModelNodeModelNode. set(Collection<ModelNode> newValue)Change this node's value to a list whose values are copied from the given collection.Constructors in org.jboss.dmr with parameters of type ModelNode Constructor Description Property(String name, ModelNode value)
-