001    package org.apache.maven.artifact.resolver;
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    
022    import java.util.List;
023    
024    import org.apache.maven.artifact.Artifact;
025    import org.apache.maven.artifact.repository.ArtifactRepository;
026    
027    /**
028     * A simple recording of the Artifacts that could not be resolved for a given resolution request, along with
029     * the remote repositories where attempts were made to resolve the artifacts.
030     *
031     * @author Jason van Zyl
032     */
033    public class UnresolvedArtifacts
034    {
035        private Artifact originatingArtifact;
036    
037        private List<Artifact> artifacts;
038    
039        private List<ArtifactRepository> remoteRepositories;
040    
041        public UnresolvedArtifacts( Artifact originatingArtifact,
042                                    List<Artifact> artifacts,
043                                    List<ArtifactRepository> remoteRepositories )
044        {
045            this.originatingArtifact = originatingArtifact;
046    
047            this.artifacts = artifacts;
048    
049            this.remoteRepositories = remoteRepositories;
050        }
051    
052        public Artifact getOriginatingArtifact()
053        {
054            return originatingArtifact;
055        }
056    
057        public List<Artifact> getArtifacts()
058        {
059            return artifacts;
060        }
061    
062        public List<ArtifactRepository> getRemoteRepositories()
063        {
064            return remoteRepositories;
065        }
066    }