]> source.dussan.org Git - archiva.git/blob
ac2b89e568da4ab58180eb0518f85ea2957be455
[archiva.git] /
1 package org.apache.archiva.admin.repository.admin;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import net.sf.beanlib.provider.replicator.BeanReplicator;
22 import org.apache.archiva.admin.repository.AbstractRepositoryAdmin;
23 import org.apache.archiva.admin.repository.RepositoryAdminException;
24 import org.apache.maven.archiva.configuration.Configuration;
25 import org.springframework.stereotype.Service;
26
27 import java.util.ArrayList;
28 import java.util.List;
29
30 /**
31  * @author Olivier Lamy
32  */
33 @Service("archivaAdministration#default")
34 public class DefaultArchivaAdministration
35     extends AbstractRepositoryAdmin
36     implements ArchivaAdministration
37 {
38     public List<LegacyArtifactPath> getLegacyArtifactPaths()
39         throws RepositoryAdminException
40     {
41         List<LegacyArtifactPath> legacyArtifactPaths = new ArrayList<LegacyArtifactPath>();
42         for ( org.apache.maven.archiva.configuration.LegacyArtifactPath legacyArtifactPath : getArchivaConfiguration().getConfiguration().getLegacyArtifactPaths() )
43         {
44             legacyArtifactPaths.add(
45                 new BeanReplicator().replicateBean( legacyArtifactPath, LegacyArtifactPath.class ) );
46         }
47         return legacyArtifactPaths;
48     }
49
50     public void addLegacyArtifactPath( LegacyArtifactPath legacyArtifactPath )
51         throws RepositoryAdminException
52     {
53         Configuration configuration = getArchivaConfiguration().getConfiguration();
54
55         configuration.addLegacyArtifactPath( new BeanReplicator().replicateBean( legacyArtifactPath,
56                                                                                  org.apache.maven.archiva.configuration.LegacyArtifactPath.class ) );
57
58         saveConfiguration( configuration );
59     }
60
61     public void deleteLegacyArtifactPath( String path )
62         throws RepositoryAdminException
63     {
64         Configuration configuration = getArchivaConfiguration().getConfiguration();
65         org.apache.maven.archiva.configuration.LegacyArtifactPath legacyArtifactPath =
66             new org.apache.maven.archiva.configuration.LegacyArtifactPath();
67
68         legacyArtifactPath.setPath( path );
69         configuration.removeLegacyArtifactPath( legacyArtifactPath );
70
71         saveConfiguration( configuration );
72     }
73 }