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