View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.artifact.repository.metadata;
20  
21  import org.apache.maven.artifact.Artifact;
22  import org.apache.maven.artifact.repository.ArtifactRepository;
23  
24  /**
25   * Metadata for the artifact version directory of the repository.
26   *
27   * @author <a href="mailto:brett@apache.org">Brett Porter</a>
28   * TODO split instantiation (versioning, plugin mappings) from definition
29   */
30  public class SnapshotArtifactRepositoryMetadata extends AbstractRepositoryMetadata {
31      private Artifact artifact;
32  
33      public SnapshotArtifactRepositoryMetadata(Artifact artifact) {
34          super(createMetadata(artifact, null));
35          this.artifact = artifact;
36      }
37  
38      public SnapshotArtifactRepositoryMetadata(Artifact artifact, Snapshot snapshot) {
39          super(createMetadata(artifact, createVersioning(snapshot)));
40          this.artifact = artifact;
41      }
42  
43      public boolean storedInGroupDirectory() {
44          return false;
45      }
46  
47      public boolean storedInArtifactVersionDirectory() {
48          return true;
49      }
50  
51      public String getGroupId() {
52          return artifact.getGroupId();
53      }
54  
55      public String getArtifactId() {
56          return artifact.getArtifactId();
57      }
58  
59      public String getBaseVersion() {
60          return artifact.getBaseVersion();
61      }
62  
63      public Object getKey() {
64          return "snapshot " + artifact.getGroupId() + ":" + artifact.getArtifactId() + ":" + artifact.getBaseVersion();
65      }
66  
67      public boolean isSnapshot() {
68          return artifact.isSnapshot();
69      }
70  
71      public int getNature() {
72          return isSnapshot() ? SNAPSHOT : RELEASE;
73      }
74  
75      public ArtifactRepository getRepository() {
76          return artifact.getRepository();
77      }
78  
79      public void setRepository(ArtifactRepository remoteRepository) {
80          artifact.setRepository(remoteRepository);
81      }
82  }