modify |
If at all possible, avoid using this command.
Use AdminTask commands if available.
This is a very low level command that may or may not conflict with certain advanced WAS configurations.
You have to pass the configuration ID of the element you wish to modify and a JACL list of lists of attributes
that you wish to modify.
Assume that the example code for AdminConfig.create() succeeded.
print AdminConfig.show( jaasID )
print AdminConfig.modify( jaasID, \
[ ['description',' LOOK at what we just changed!!'] ] )
print AdminConfig.show( jaasID )
print AdminConfig.modify( jaasID, [ ['description','We made another change'], \
['userId', 'different-Database-User-ID'] ] )
print AdminConfig.show( jaasID )
|