create |
If at all possible, avoid using this command.
Use AdminTask commands if available.
This is a very low level element creation that is only appropriate
for simple configuration elements. You must know the type of element to create,
the parent node of that element, and the attributes to initialize.
secMgrID = AdminConfig.getid( '/Security:/' )
jaasID = AdminConfig.create( 'JAASAuthData', secMgrID, \
[ ['alias', 'BossNode/DatabaseCredentials'], \
['description', 'This is an example of a JAAS Authentication Alias'], \
['userId', 'Database-User-ID'], \
['password', 'SuperT0pSecret'] ])
|