All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.scm.command.remoteinfo.RemoteInfoScmResult Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package org.apache.maven.scm.command.remoteinfo;

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.
 */

import org.apache.maven.scm.ScmResult;

import java.util.HashMap;
import java.util.Map;

/**
 * @author Olivier Lamy
 * @since 1.6
 */
public class RemoteInfoScmResult
    extends ScmResult
{

    /**
     * depending on scm informations can be different
     * svn: branch name / remote url
     */
    private Map branches = new HashMap();

    /**
     * depending on scm informations can be different
     * svn: branch name / remote url
     */
    private Map tags = new HashMap();

    public RemoteInfoScmResult( String commandLine, String providerMessage, String commandOutput, boolean success )
    {
        super( commandLine, providerMessage, commandOutput, success );
    }

    public RemoteInfoScmResult( String commandLine, Map branches, Map tags )
    {
        super( commandLine, null, null, true );
        this.branches = branches;
        this.tags = tags;
    }

    public Map getBranches()
    {
        return branches;
    }

    public void setBranches( Map branches )
    {
        this.branches = branches;
    }

    public Map getTags()
    {
        return tags;
    }

    public void setTags( Map tags )
    {
        this.tags = tags;
    }

    @Override
    public String toString()
    {
        final StringBuilder sb = new StringBuilder();
        sb.append( "RemoteInfoScmResult" );
        sb.append( "{branches=" ).append( branches );
        sb.append( ", tags=" ).append( tags );
        sb.append( '}' );
        return sb.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy