Package com.sonatype.maven.shell.commands.nexus.repo

Source Code of com.sonatype.maven.shell.commands.nexus.repo.RepoListCommand

/*******************************************************************************
* Copyright (c) 2009-2011 Sonatype, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
* The Eclipse Public License is available at
*   http://www.eclipse.org/legal/epl-v10.html
* The Apache License v2.0 is available at
*   http://www.apache.org/licenses/LICENSE-2.0.html
* You may elect to redistribute this code under either of these licenses.
*******************************************************************************/

package com.sonatype.maven.shell.commands.nexus.repo;

import com.sonatype.maven.shell.commands.nexus.NexusCommandSupport;
import com.sonatype.maven.shell.nexus.NexusClient;
import com.sonatype.maven.shell.nexus.RepositoryClient;
import org.sonatype.gshell.command.Command;
import org.sonatype.gshell.command.CommandContext;
import org.sonatype.gshell.command.IO;
import org.sonatype.gshell.util.pref.Preferences;
import org.sonatype.nexus.rest.model.RepositoryListResource;

import java.util.List;

/**
* List repositories.
*
* @author <a href="mailto:jason@planet57.com">Jason Dillon</a>
* @since 0.9
*/
@Command(name = "nexus/repo/list")
@Preferences(path = "commands/nexus/repo/list")
public class RepoListCommand
    extends NexusCommandSupport
{
    @Override
    protected Object execute(final CommandContext context, final NexusClient client) throws Exception {
        assert context != null;
        assert client != null;
        IO io = context.getIo();

        List<RepositoryListResource> repos = client.ext(RepositoryClient.class).list();

        for (RepositoryListResource repo : repos) {
            // TODO: Add color

            io.println("ID: {}", repo.getId()); // TODO: i18n
            io.println("Name: {}", repo.getName());

            // TODO: More details
        }

        return repos;
    }
}
TOP

Related Classes of com.sonatype.maven.shell.commands.nexus.repo.RepoListCommand

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.