Before you begin
Before starting this task, the wsadmin tool must be running. See the Starting the wsadmin scripting client article for more information.Why and when to perform this task
Perform the following steps to create a list of attributes of configuration objects:Steps for this task
Using Jacl:
$AdminConfig attributes type
AdminConfig.attributes('type')
$ | is a Jacl operator for substituting a variable name with its value |
AdminConfig | is an object that represents the WebSphere Application Server configuration |
attributes | is an AdminConfig command |
type | is an object type |
To get a list of attributes for the JDBCProvider type, use the following example command:
Using Jacl:
$AdminConfig attributes JDBCProvider
AdminConfig.attributes('JDBCProvider')
Using Jacl:
$AdminConfig required type
AdminConfig.required('type')
$ | is a Jacl operator for substituting a variable name with its value |
AdminConfig | is an object that represents the WebSphere Application Server configuration |
required | is an AdminConfig command |
type | is an object type |
To get a list of required attributes for the JDBCProvider type, use the following example command:
Using Jacl:
$AdminConfig required JDBCProvider
AdminConfig.required('JDBCProvider')
Using Jacl:
$AdminConfig defaults type
AdminConfig.defaults('type')
$ | is a Jacl operator for substituting a variable name with its value |
AdminConfig | is an object that represents the WebSphere Application Server configuration |
defaults | is an AdminConfig command |
type | is an object type |
To get a list of attributes with the defaults displayed for the JDBCProvider type, use the following example command:
Using Jacl:
$AdminConfig defaults JDBCProvider
AdminConfig.defaults('JDBCProvider')
Related concepts
AdminConfig object for scripted administration
Related reference
Commands for the AdminConfig object