001package org.apache.maven.toolchain.building;
002
003/*
004 * Licensed to the Apache Software Foundation (ASF) under one
005 * or more contributor license agreements.  See the NOTICE file
006 * distributed with this work for additional information
007 * regarding copyright ownership.  The ASF licenses this file
008 * to you under the Apache License, Version 2.0 (the
009 * "License"); you may not use this file except in compliance
010 * with the License.  You may obtain a copy of the License at
011 *
012 *   http://www.apache.org/licenses/LICENSE-2.0
013 *
014 * Unless required by applicable law or agreed to in writing,
015 * software distributed under the License is distributed on an
016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017 * KIND, either express or implied.  See the License for the
018 * specific language governing permissions and limitations
019 * under the License.
020 */
021
022import java.util.ArrayList;
023import java.util.List;
024
025import org.apache.maven.building.Problem;
026import org.apache.maven.toolchain.model.PersistedToolchains;
027
028/**
029 * Holds the result of the merged toolchains and holds the problems during this build, if any.
030 * 
031 * @author Robert Scholte
032 * @since 3.3.0
033 */
034public class DefaultToolchainsBuildingResult
035    implements ToolchainsBuildingResult
036{
037
038    private PersistedToolchains effectiveToolchains;
039    
040    private List<Problem> problems;
041    
042    /**
043     * Default constructor
044     * 
045     * @param effectiveToolchains the merged toolchains, may not be {@code null}
046     * @param problems the problems while building the effectiveToolchains, if any.
047     */
048    public DefaultToolchainsBuildingResult( PersistedToolchains effectiveToolchains, List<Problem> problems )
049    {
050        this.effectiveToolchains = effectiveToolchains;
051        this.problems = ( problems != null ) ? problems : new ArrayList<Problem>();
052    }
053
054    @Override
055    public PersistedToolchains getEffectiveToolchains()
056    {
057        return effectiveToolchains;
058    }
059    
060    @Override
061    public List<Problem> getProblems()
062    {
063        return problems;
064    }
065
066}