WAS v8.5 > Script the application serving environment (wsadmin) > Use the wsadmin scripting AdminControl object for scripted administration

ObjectName, Attribute, and AttributeList classes using wsadmin.sh

WebSphere Application Server scripting commands use the underlying JMX classes, ObjectName, Attribute, and AttributeList, to manipulate object names, attributes and attribute lists respectively.

The ObjectName class uniquely identifies running objects. The ObjectName class consists of the following elements:

When ObjectName classes are represented by strings, they have the following pattern:

For example, we can specify WebSphere:name="My Server",type=ApplicationServer,node=n1,* to specify an application server named My Server on node n1. (The asterisk (*) is a wildcard character, used so that we do not have to specify the entire set of key properties.) The AdminControl commands that take strings as parameters expect strings that look like this example when specifying running objects (MBeans). We can obtain the object name for a running object with the getObjectName command.

Attributes of these objects consist of a name and a value. We can extract the name and value with the getName and the getValue methods available in the javax.management.Attribute class. We can also extract a list of attributes.


+

Search Tips   |   Advanced Search