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.repository.ArtifactRepository;
23  
24  import java.util.Iterator;
25  import java.util.List;
26  
27  /**
28   * Metadata for the group directory of the repository.
29   *
30   * @author <a href="mailto:brett@apache.org">Brett Porter</a>
31   */
32  public class GroupRepositoryMetadata
33      extends AbstractRepositoryMetadata
34  {
35      private final String groupId;
36  
37      public GroupRepositoryMetadata( String groupId )
38      {
39          super( new Metadata() );
40          this.groupId = groupId;
41      }
42  
43      public boolean storedInGroupDirectory()
44      {
45          return true;
46      }
47  
48      public boolean storedInArtifactVersionDirectory()
49      {
50          return false;
51      }
52  
53      public String getGroupId()
54      {
55          return groupId;
56      }
57  
58      public String getArtifactId()
59      {
60          return null;
61      }
62  
63      public String getBaseVersion()
64      {
65          return null;
66      }
67  
68      public void addPluginMapping( String goalPrefix,
69                                    String artifactId )
70      {
71          addPluginMapping( goalPrefix, artifactId, artifactId );
72      }
73  
74      public void addPluginMapping( String goalPrefix,
75                                    String artifactId,
76                                    String name )
77      {
78          List plugins = getMetadata().getPlugins();
79          boolean found = false;
80          for ( Iterator i = plugins.iterator(); i.hasNext() && !found; )
81          {
82              Plugin plugin = (Plugin) i.next();
83              if ( plugin.getPrefix().equals( goalPrefix ) )
84              {
85                  found = true;
86              }
87          }
88          if ( !found )
89          {
90              Plugin plugin = new Plugin();
91              plugin.setPrefix( goalPrefix );
92              plugin.setArtifactId( artifactId );
93              plugin.setName( name );
94  
95  
96              getMetadata().addPlugin( plugin );
97          }
98      }
99  
100     public Object getKey()
101     {
102         return groupId;
103     }
104 
105     public boolean isSnapshot()
106     {
107         return false;
108     }
109 
110     public ArtifactRepository getRepository()
111     {
112         return null;
113     }
114 
115     public void setRepository( ArtifactRepository remoteRepository )
116     {
117         // intentionally blank
118     }
119 }