1 package org.apache.maven.archiva.repository.content;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
22 import org.apache.maven.archiva.configuration.RemoteRepositoryConfiguration;
23 import org.apache.maven.archiva.model.ArtifactReference;
24 import org.apache.maven.archiva.model.RepositoryURL;
25 import org.apache.maven.archiva.repository.RemoteRepositoryContent;
26 import org.apache.maven.archiva.repository.layout.LayoutException;
27 import org.springframework.context.annotation.Scope;
28 import org.springframework.stereotype.Service;
31 * RemoteLegacyRepositoryContent
34 * @todo no need to be a component once legacy path parser is not
35 * plexus.component role="org.apache.maven.archiva.repository.RemoteRepositoryContent"
37 * instantiation-strategy="per-lookup"
39 @Service( "remoteRepositoryContent#legacy" )
41 public class RemoteLegacyRepositoryContent
42 extends AbstractLegacyRepositoryContent
43 implements RemoteRepositoryContent
45 private RemoteRepositoryConfiguration repository;
49 return repository.getId();
52 public RemoteRepositoryConfiguration getRepository()
57 public RepositoryURL getURL()
59 return new RepositoryURL( repository.getUrl() );
62 public void setRepository( RemoteRepositoryConfiguration repository )
64 this.repository = repository;
68 * Convert a path to an artifact reference.
70 * @param path the path to convert. (relative or full url path)
71 * @throws LayoutException if the path cannot be converted to an artifact reference.
74 public ArtifactReference toArtifactReference( String path )
75 throws LayoutException
77 if ( path.startsWith( repository.getUrl() ) )
79 return super.toArtifactReference( path.substring( repository.getUrl().length() ) );
82 return super.toArtifactReference( path );
85 public RepositoryURL toURL( ArtifactReference reference )
87 String url = repository.getUrl() + toPath( reference );
88 return new RepositoryURL( url );