1 package org.apache.maven.artifact.repository.metadata;
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.artifact.Artifact;
23 import org.apache.maven.artifact.repository.ArtifactRepository;
24
25 /**
26 * Metadata for the artifact directory of the repository.
27 *
28 * @author <a href="mailto:brett@apache.org">Brett Porter</a>
29 * @version $Id: ArtifactRepositoryMetadata.java 640549 2008-03-24 20:05:11Z bentmann $
30 */
31 public class ArtifactRepositoryMetadata
32 extends AbstractRepositoryMetadata
33 {
34 private Artifact artifact;
35
36 public ArtifactRepositoryMetadata( Artifact artifact )
37 {
38 this( artifact, null );
39 }
40
41 public ArtifactRepositoryMetadata( Artifact artifact, Versioning versioning )
42 {
43 super( createMetadata( artifact, versioning ) );
44 this.artifact = artifact;
45 }
46
47 public boolean storedInGroupDirectory()
48 {
49 return false;
50 }
51
52 public boolean storedInArtifactVersionDirectory()
53 {
54 return false;
55 }
56
57 public String getGroupId()
58 {
59 return artifact.getGroupId();
60 }
61
62 public String getArtifactId()
63 {
64 return artifact.getArtifactId();
65 }
66
67 public String getBaseVersion()
68 {
69 // Don't want the artifact's version in here, as this is stored in the directory above that
70 return null;
71 }
72
73 public Object getKey()
74 {
75 return "artifact " + artifact.getGroupId() + ":" + artifact.getArtifactId();
76 }
77
78 public boolean isSnapshot()
79 {
80 // Don't consider the artifact's version in here, as this is stored in the directory above that
81 return false;
82 }
83
84 public void setRepository( ArtifactRepository remoteRepository )
85 {
86 artifact.setRepository( remoteRepository );
87 }
88 }