View Javadoc
1   package org.apache.maven.internal.impl;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *  http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.maven.api.annotations.Nonnull;
23  import javax.inject.Inject;
24  
25  import java.nio.file.Path;
26  
27  import org.apache.maven.api.LocalRepository;
28  
29  import static org.apache.maven.internal.impl.Utils.nonNull;
30  
31  public class DefaultLocalRepository implements LocalRepository
32  {
33  
34      private final @Nonnull org.eclipse.aether.repository.LocalRepository repository;
35  
36      @Inject
37      public DefaultLocalRepository( @Nonnull org.eclipse.aether.repository.LocalRepository repository )
38      {
39          this.repository = nonNull( repository, "repository can not be null" );
40      }
41  
42      @Nonnull
43      public org.eclipse.aether.repository.LocalRepository getRepository()
44      {
45          return repository;
46      }
47  
48      @Nonnull
49      @Override
50      public String getId()
51      {
52          return repository.getId();
53      }
54  
55      @Nonnull
56      @Override
57      public String getType()
58      {
59          return repository.getContentType();
60      }
61  
62      @Nonnull
63      @Override
64      public Path getPath()
65      {
66          return repository.getBasedir().toPath();
67      }
68  
69  }