Package org.jmanage.cmdui.commands

Source Code of org.jmanage.cmdui.commands.ListApplicationsHandler

/**
* Copyright 2004-2005 jManage.org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jmanage.cmdui.commands;

import org.jmanage.cmdui.CommandHandler;
import org.jmanage.cmdui.HandlerContext;
import org.jmanage.cmdui.util.Out;
import org.jmanage.core.services.ConfigurationService;
import org.jmanage.core.services.ServiceFactory;
import org.jmanage.core.data.ApplicationConfigData;

import java.util.List;
import java.util.Iterator;

/**
*
* date:  Feb 4, 2005
* @author  Rakesh Kalra
*/
public class ListApplicationsHandler implements CommandHandler {

    public boolean execute(HandlerContext context) {

        ConfigurationService configService =
                ServiceFactory.getConfigurationService();
        List appConfigList = configService.getAllApplications(
                context.getServiceContext());
        for(Iterator it=appConfigList.iterator(); it.hasNext();){
            ApplicationConfigData appConfig = (ApplicationConfigData)it.next();
            if(appConfig.isCluster()){
                Out.println(appConfig.getName() + " [cluster]");
                for(Iterator it2=appConfig.getChildApplications().iterator();it2.hasNext();){
                    Out.print("+ ");
                    printApplication((ApplicationConfigData)it2.next());
                }
            }else{
                printApplication(appConfig);
            }
        }
        return true;
    }

    private void printApplication(ApplicationConfigData appConfig){
        assert !appConfig.isCluster();
        Out.print(appConfig.getName());
        Out.println(" [" + appConfig.getType() + "]" +
                        "\t" + appConfig.getURL() +
                        "\t" + appConfig.getUsername());
    }

    public String getShortHelp() {
        return "Lists all configured applications in jManage";
    }

    public void help() {
        Out.println(getShortHelp());
    }
}
TOP

Related Classes of org.jmanage.cmdui.commands.ListApplicationsHandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.