View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.internal.impl;
20  
21  import java.util.Collection;
22  import java.util.List;
23  
24  import org.apache.maven.api.Artifact;
25  import org.apache.maven.api.ArtifactCoordinate;
26  import org.apache.maven.api.Dependency;
27  import org.apache.maven.api.DependencyCoordinate;
28  import org.apache.maven.api.LocalRepository;
29  import org.apache.maven.api.Node;
30  import org.apache.maven.api.Project;
31  import org.apache.maven.api.RemoteRepository;
32  import org.apache.maven.api.Session;
33  import org.apache.maven.api.annotations.Nonnull;
34  import org.apache.maven.execution.MavenSession;
35  import org.eclipse.aether.RepositorySystem;
36  import org.eclipse.aether.RepositorySystemSession;
37  
38  import static org.apache.maven.internal.impl.Utils.cast;
39  
40  public interface InternalSession extends Session {
41  
42      static InternalSession from(Session session) {
43          return cast(InternalSession.class, session, "session should be an " + InternalSession.class);
44      }
45  
46      RemoteRepository getRemoteRepository(org.eclipse.aether.repository.RemoteRepository repository);
47  
48      Node getNode(org.eclipse.aether.graph.DependencyNode node);
49  
50      Node getNode(org.eclipse.aether.graph.DependencyNode node, boolean verbose);
51  
52      @Nonnull
53      Artifact getArtifact(@Nonnull org.eclipse.aether.artifact.Artifact artifact);
54  
55      @Nonnull
56      Dependency getDependency(@Nonnull org.eclipse.aether.graph.Dependency dependency);
57  
58      List<Project> getProjects(List<org.apache.maven.project.MavenProject> projects);
59  
60      Project getProject(org.apache.maven.project.MavenProject project);
61  
62      List<org.eclipse.aether.repository.RemoteRepository> toRepositories(List<RemoteRepository> repositories);
63  
64      org.eclipse.aether.repository.RemoteRepository toRepository(RemoteRepository repository);
65  
66      org.eclipse.aether.repository.LocalRepository toRepository(LocalRepository repository);
67  
68      List<org.apache.maven.artifact.repository.ArtifactRepository> toArtifactRepositories(
69              List<RemoteRepository> repositories);
70  
71      org.apache.maven.artifact.repository.ArtifactRepository toArtifactRepository(RemoteRepository repository);
72  
73      List<org.eclipse.aether.graph.Dependency> toDependencies(
74              Collection<DependencyCoordinate> dependencies, boolean managed);
75  
76      org.eclipse.aether.graph.Dependency toDependency(DependencyCoordinate dependency, boolean managed);
77  
78      List<org.eclipse.aether.artifact.Artifact> toArtifacts(Collection<Artifact> artifacts);
79  
80      org.eclipse.aether.artifact.Artifact toArtifact(Artifact artifact);
81  
82      org.eclipse.aether.artifact.Artifact toArtifact(ArtifactCoordinate coord);
83  
84      MavenSession getMavenSession();
85  
86      RepositorySystemSession getSession();
87  
88      RepositorySystem getRepositorySystem();
89  }