An example configuring a new custom property for a resource environment provider follows:
Using Jacl:
set newrep [$AdminConfig getid /Cell:mycell/Node:mynode/ResourceEnvironmentProvider:REP1/]
An example of this output follows:
REP1(cells/mycell/nodes/mynode:resources.xml#ResourceEnvironmentProvider_1)
Using Jacl:
$AdminConfig required J2EEResourceProperty
An example of this output follows:
Attribute Type name String
Using Jacl:
set name [list name RP] set rpAttrs [list $name]
Using Jacl:
set propSet [$AdminConfig showAttribute $newrep propertySet]
An example of this output follows:
(cells/mycell/nodes/mynode:resources.xml#PropertySet_1)
Using Jacl:
$AdminConfig create J2EEResourceProperty $propSet $rpAttrs
An example of this output follows:
RP(cells/mycell/nodes/mynode:resources.xml#J2EEResourceProperty_1)
Using Jacl:
$AdminConfig save