blob: d9a2d491092f21123d1f9c4474bc8531af1270c9 [file] [log] [blame]
package org.apache.maven.scm.command.checkin;
/*
* 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 java.util.ArrayList;
import java.util.List;
import org.apache.maven.scm.ScmFile;
import org.apache.maven.scm.ScmResult;
/**
* @author <a href="mailto:trygvis@inamo.no">Trygve Laugst&oslash;l</a>
* @author Olivier Lamy
*
*/
public class CheckInScmResult
extends ScmResult
{
private static final long serialVersionUID = 954225589449445354L;
private List<ScmFile> checkedInFiles;
private String scmRevision;
public CheckInScmResult( String commandLine, String providerMessage, String commandOutput, boolean success )
{
super( commandLine, providerMessage, commandOutput, success );
}
public CheckInScmResult( String commandLine, List<ScmFile> checkedInFiles )
{
super( commandLine, null, null, true );
this.checkedInFiles = checkedInFiles;
}
/**
* @param commandLine
* @param checkedInFiles
* @param scmRevision
* @since 1.2
*/
public CheckInScmResult( String commandLine, List<ScmFile> checkedInFiles, String scmRevision )
{
this( commandLine, checkedInFiles );
this.scmRevision = scmRevision;
}
public CheckInScmResult( List<ScmFile> checkedInFiles, ScmResult result )
{
super( result );
this.checkedInFiles = checkedInFiles;
}
public List<ScmFile> getCheckedInFiles()
{
if ( this.checkedInFiles == null )
{
this.checkedInFiles = new ArrayList<ScmFile>();
}
return checkedInFiles;
}
/**
* @since 1.2
* @return can be null for some providers (implemented at least for svn)
*/
public String getScmRevision()
{
return scmRevision;
}
}