An example configuring a new custom property for a resource environment entry follows:
Using Jacl:
set newree [$AdminConfig getid /Cell:mycell/Node:mynode/ResourceEnvEntry:REE1/]
An example of this output follows:
REE1(cells/mycell/nodes/mynode:resources.xml#ResourceEnvEntry_1)
Using Jacl:
set propSet [$AdminConfig showAttribute $newree propertySet]
An example of this output follows:
(cells/mycell/nodes/mynode:resources.xml#J2EEResourcePropertySet_5)
Using Jacl:
$AdminConfig required J2EEResourceProperty
An example of this output follows:
Attribute Type name String
Using Jacl:
set name [list name RP1] set rpAttrs [list $name]
Using Jacl:
$AdminConfig create J2EEResourceProperty $propSet $rpAttrs
An example of this output follows:
RPI(cells/mycell/nodes/mynode:resources.xml#J2EEResourceProperty_1)
Using Jacl:
$AdminConfig save