blob: 1e1b230a80d55a1f0d7cdc0dd57de9f5cd4663b4 [file] [log] [blame]
package org.eclipse.aether.internal.test.util;
/*
* 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.Collections;
import java.util.Iterator;
import java.util.List;
import org.eclipse.aether.RepositorySystemSession;
import org.eclipse.aether.collection.VersionFilter;
import org.eclipse.aether.graph.Dependency;
import org.eclipse.aether.repository.ArtifactRepository;
import org.eclipse.aether.repository.RemoteRepository;
import org.eclipse.aether.resolution.VersionRangeResult;
import org.eclipse.aether.version.Version;
import org.eclipse.aether.version.VersionConstraint;
/**
*/
class TestVersionFilterContext
implements VersionFilter.VersionFilterContext
{
private final RepositorySystemSession session;
private final Dependency dependency;
private final VersionRangeResult result;
private final List<Version> versions;
TestVersionFilterContext( RepositorySystemSession session, VersionRangeResult result )
{
this.session = session;
this.result = result;
dependency = new Dependency( result.getRequest().getArtifact(), "" );
versions = new ArrayList<Version>( result.getVersions() );
}
public RepositorySystemSession getSession()
{
return session;
}
public Dependency getDependency()
{
return dependency;
}
public int getCount()
{
return versions.size();
}
public Iterator<Version> iterator()
{
return versions.iterator();
}
public VersionConstraint getVersionConstraint()
{
return result.getVersionConstraint();
}
public ArtifactRepository getRepository( Version version )
{
return result.getRepository( version );
}
public List<RemoteRepository> getRepositories()
{
return Collections.unmodifiableList( result.getRequest().getRepositories() );
}
}