Coverage Report - org.apache.maven.artifact.repository.metadata.SnapshotArtifactRepositoryMetadata
 
Classes in this File Line Coverage Branch Coverage Complexity
SnapshotArtifactRepositoryMetadata
0 %
0/15
N/A
1
 
 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 640549 2008-03-24 20:05:11Z 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  0
         super( createMetadata( artifact, null ) );
 40  0
         this.artifact = artifact;
 41  0
     }
 42  
 
 43  
     public SnapshotArtifactRepositoryMetadata( Artifact artifact, Snapshot snapshot )
 44  
     {
 45  0
         super( createMetadata( artifact, createVersioning( snapshot ) ) );
 46  0
         this.artifact = artifact;
 47  0
     }
 48  
 
 49  
     public boolean storedInGroupDirectory()
 50  
     {
 51  0
         return false;
 52  
     }
 53  
 
 54  
     public boolean storedInArtifactVersionDirectory()
 55  
     {
 56  0
         return true;
 57  
     }
 58  
 
 59  
     public String getGroupId()
 60  
     {
 61  0
         return artifact.getGroupId();
 62  
     }
 63  
 
 64  
     public String getArtifactId()
 65  
     {
 66  0
         return artifact.getArtifactId();
 67  
     }
 68  
 
 69  
     public String getBaseVersion()
 70  
     {
 71  0
         return artifact.getBaseVersion();
 72  
     }
 73  
 
 74  
     public Object getKey()
 75  
     {
 76  0
         return "snapshot " + artifact.getGroupId() + ":" + artifact.getArtifactId() + ":" + artifact.getBaseVersion();
 77  
     }
 78  
 
 79  
     public boolean isSnapshot()
 80  
     {
 81  0
         return artifact.isSnapshot();
 82  
     }
 83  
 
 84  
     public void setRepository( ArtifactRepository remoteRepository )
 85  
     {
 86  0
         artifact.setRepository( remoteRepository );
 87  0
     }
 88  
 }