View Javadoc
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 version directory of the repository.
27   *
28   * @author <a href="mailto:brett@apache.org">Brett Porter</a>
29   * TODO split instantiation (versioning, plugin mappings) from definition
30   */
31  public class SnapshotArtifactRepositoryMetadata
32      extends AbstractRepositoryMetadata
33  {
34      private Artifact artifact;
35  
36      public SnapshotArtifactRepositoryMetadata( Artifact artifact )
37      {
38          super( createMetadata( artifact, null ) );
39          this.artifact = artifact;
40      }
41  
42      public SnapshotArtifactRepositoryMetadata( Artifact artifact,
43                                                 Snapshot snapshot )
44      {
45          super( createMetadata( artifact, createVersioning( snapshot ) ) );
46          this.artifact = artifact;
47      }
48  
49      public boolean storedInGroupDirectory()
50      {
51          return false;
52      }
53  
54      public boolean storedInArtifactVersionDirectory()
55      {
56          return true;
57      }
58  
59      public String getGroupId()
60      {
61          return artifact.getGroupId();
62      }
63  
64      public String getArtifactId()
65      {
66          return artifact.getArtifactId();
67      }
68  
69      public String getBaseVersion()
70      {
71          return artifact.getBaseVersion();
72      }
73  
74      public Object getKey()
75      {
76          return "snapshot " + artifact.getGroupId() + ":" + artifact.getArtifactId() + ":" + artifact.getBaseVersion();
77      }
78  
79      public boolean isSnapshot()
80      {
81          return artifact.isSnapshot();
82      }
83  
84      public int getNature()
85      {
86          return isSnapshot() ? SNAPSHOT : RELEASE;
87      }
88  
89      public ArtifactRepository getRepository()
90      {
91          return artifact.getRepository();
92      }
93  
94      public void setRepository( ArtifactRepository remoteRepository )
95      {
96          artifact.setRepository( remoteRepository );
97      }
98  }