1 package org.apache.maven.archiva.repository.content;
\r
4 * Licensed to the Apache Software Foundation (ASF) under one
\r
5 * or more contributor license agreements. See the NOTICE file
\r
6 * distributed with this work for additional information
\r
7 * regarding copyright ownership. The ASF licenses this file
\r
8 * to you under the Apache License, Version 2.0 (the
\r
9 * "License"); you may not use this file except in compliance
\r
10 * with the License. You may obtain a copy of the License at
\r
12 * http://www.apache.org/licenses/LICENSE-2.0
\r
14 * Unless required by applicable law or agreed to in writing,
\r
15 * software distributed under the License is distributed on an
\r
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
\r
17 * KIND, either express or implied. See the License for the
\r
18 * specific language governing permissions and limitations
\r
19 * under the License.
\r
22 import org.apache.maven.archiva.model.ArtifactReference;
\r
23 import org.apache.maven.archiva.repository.layout.LayoutException;
\r
26 * PathParser interface.
\r
28 * @author <a href="mailto:nicolas@apache.org">nicolas de loof</a>
\r
31 public interface PathParser
\r
35 * Take a path and get the ArtifactReference associated with it.
\r
37 * @param path the relative path to parse.
\r
38 * @return the ArtifactReference for the provided path. (never null)
\r
39 * @throws LayoutException if there was a problem parsing the path.
\r
41 public ArtifactReference toArtifactReference( String path )
\r
42 throws LayoutException;
\r