Network Deployment (Distributed operating systems), v8.0 > Administer applications and their environment > Administer business-level applications using programming


List assets using programming

We can list the assets that have been imported so that you can do further asset administration, such as deleting or exporting assets. An asset represents at least one binary file that implements business logic.

This task assumes a basic familiarity with command framework programming. Read about command framework programming in the application programming interfaces documentation.

We can list assets using programming, the administrative console, or wsadmin.sh.

We can list assets using programming, the admin console, or wsadmin.sh. This topic describes how to list assets using programming.

When you list assets, all the assets are listed unless you set the assetID to specify the asset to list. We can optionally include deployable units or a description of the assets when you list the assets. After you list the assets, you can use the information to do further administration, such as deleting or exporting assets.

To list assets using programming.


Procedure

  1. Connect to the application server.

    The command framework allows the administrative command to be created and run with or without being connected to the application server. This step is optional if the application server is not running.

  2. Create the command manager.

    The command manager provides the functionality to create a new administrative command or query existing administrative commands.

  3. Optionally create the asynchronous command handler for listening to command notifications.

    Business-level application commands are implemented as asynchronous commands.

    To monitor the progress of the running command, we have to create an asynchronous command handler to receive notifications that the command generates.

  4. Create the asynchronous command client.

    An asynchronous command client provides a higher level interface to work with an asynchronous command. If you created an asynchronous command handler in the previous step, the handler is passed to the asynchronous command client. The asynchronous command client forwards the command notification to the handler and helps to control running of the command.

  5. Use the command manager that you created in a previous step to create and set up the command that lists assets.

    The command name is listAssets. We can optionally set the assetID parameter to query for assets that match the ID. We can also optionally set the includeDescription parameter and the includeDeplUnit parameter to include the display of the asset description and its deployable units.

  6. Call the processCommandParameters method in the asynchronous command client to process the command parameters.

    The command framework asynchronous command model requires this call.

  7. Call the asynchronous command client to list the asset.

    You might have created an asynchronous command handler to implement the AsyncCommandHandlerIF interface class in a previous step. If you did, the asynchronous command client listens to command notifications and forwards the notifications to the handler. The handler performs any necessary actions while waiting for the command to complete.

  8. Check the command result when the command completes.

    When the command finishes running, control is returned to the caller. You can then check the result by calling the command.getCommandResult method.


Results

After you successfully run the code, a list of assets is displayed.


Example

The following example shows how to list the assets based on the previous steps. Some statements are split on multiple lines for printing purposes.

package com.ibm.ws.management.application.task;

import java.util.Properties;

import com.ibm.websphere.management.AdminClient;
import com.ibm.websphere.management.AdminClientFactory;
import com.ibm.websphere.management.Session;
import com.ibm.websphere.management.cmdframework.AdminCommand;
import com.ibm.websphere.management.cmdframework.CommandMgr;
import com.ibm.websphere.management.cmdframework.CommandResult;
import com.ibm.websphere.management.async.client.AsyncCommandClient;

public class ListAssets {

    public static void main(String[] args) {

        try {

            // Connect to the application server.
            // This step is optional if you use the local             // command manager. Comment out the lines to and including             // CommandMgr cmdMgr = CommandMgr.getClientCommandMgr(
            // soapClient);
            // to get the soapClient soap client if you use the local             // command manager.


            String host = "localhost";
            String port = "8880"; // Change to your port number if
                                          // it is not 8880.

            Properties config = new Properties();
            config.put(AdminClient.CONNECTOR_HOST, host);
            config.put(AdminClient.CONNECTOR_PORT, port);
            config.put(AdminClient.CONNECTOR_TYPE,                                AdminClient.CONNECTOR_TYPE_SOAP);
            .println("Config: " + config);
            AdminClient soapClient =
                              AdminClientFactory.createAdminClient(config);

            // Create the command manager.
            CommandMgr cmdMgr = CommandMgr.getClientCommandMgr(soapClient);


   // Comment out the previous lines to create a client command
    // manager if you are using a local command manager.

   // Uncomment the following line to create a local command
    // manager:
            //
            // CommandMgr cmdMgr = CommandMgr.getCommandMgr();
            .println("\nCreated command manager");

            // Optionally create an asynchronous command handler.
            // Comment out the following line if no further handling
            // of command notification is required.
            AsyncCmdTaskHandler listener = new AsyncCmdTaskHandler();

            // Create an asynchronous command client.

            // Set up the session.
            String id = Long.toHexString(System.currentTimeMillis());
            String user = "content" + id;
            Session session = new Session(user, true);


   // If no command handler is used, replace listener with
    // null for the AsyncCommandClient object.
            AsyncCommandClient asyncCmdClientHelper = new
                               AsyncCommandClient(session, listener);
            .println("\nCreated async command client");

            // Create the command that lists the assets.
            String cmdName = "listAssets";
            AdminCommand cmd = cmdMgr.createCommand(cmdName);
            cmd.setConfigSession(session); // list all the assets
                                          // using the session created.
            .println("\nCreated " + cmdName);

            // Optionally set the assetID parameter.
            // Uncomment the following code to set the assetID parameter to
            // only list the asset with the ID specified, otherwise all
            // assets are listed. Change the assetID parameter according to your
            // scenario.
            // Examples of valid formats for the assetID parameter are:
            // - aName
            // - assetname=aName
            // - WebSphere:assetname=aName
            // All assets that match the ID specification are listed.
            // The ID must include at least the asset name.
            // String assetID = "asset1.zip";
            // cmd.setParameter("assetID", assetID);
 
            //System.out.println("\nSet assetID parameter to "
            //                     + cmd.getParameter("assetID"));
 

   // Optionally include a description by setting
    // the includeDescription parameter to true or false.
            String includeDescription = "true";
            cmd.setParameter("includeDescription", includeDescription);
 
            .println("\nSet includeDescription parameter to "
                               + cmd.getParameter("includeDescription"));
 

   // Optionally include deployable units by setting
    // the includeDeplUnit parameter to true or false.
            String includeDeplUnit = "false";
            cmd.setParameter("includeDeplUnit", includeDeplUnit);
 
            .println("\nSet includeDeplUnit parameter to "
                                + cmd.getParameter("includeDeplUnit"));
 
            // Call the asynchronous client helper to process parameters.
            try {        
                asyncCmdClientHelper.processCommandParameters(cmd);
                .println("\nCompleted process command " +
                                      "parameters");
            } catch (Throwable th) {
                .println("Failed from " +
                    "asyncCmdClientHelper.processCommandParameters(cmd).");
                th.printStackTrace();
                System.exit(-1);
            }
 
            // Run the command to list assets.
            asyncCmdClientHelper.execute(cmd);
            .println("\nCompleted running of the command");

            // Check the command result.
            CommandResult result = cmd.getCommandResult();
            if (result != null) {
                if (result.isSuccessful()) {
                    .println("\nCommand ran successfully "
                                   + "with result\n" + result.getResult());
                }
                else {
                    .println("\nCommand ran with " +
                                               "Exception");
                    result.getException().printStackTrace();
                }
           }
       } catch (Exception e) {
           e.printStackTrace();
       }
    '}
}


package com.ibm.ws.management.application.task;

import com.ibm.websphere.management.cmdframework.provider.CommandNotification;
import com.ibm.websphere.management.async.client.AsyncCommandHandlerIF;

public class AsyncCmdTaskHandler implements AsyncCommandHandlerIF {

    public void handleNotification(CommandNotification notification) {
        // Add your own code here to handle the received notification
        .println("\nEXAMPLE: notification received: " +
                            notification);
    }
}


What to do next

We can complete other tasks associated with assets, such as deleting, editing, and exporting assets.
Additional Application Programming Interfaces (APIs)
Deploy and administering business-level applications
Administer business-level applications using programming
Import an asset using programming
Delete an asset using programming
Export an asset using programming
Edit an asset using programming
View an asset using programming
Manage assets using wsadmin.sh


Related


BLAManagement command group using wsadmin.sh

+

Search Tips   |   Advanced Search