]> source.dussan.org Git - archiva.git/blob
ec07874c3a67d967004081d06e78cbfbb3202552
[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.AuditInformation;
23 import org.apache.archiva.admin.repository.AbstractRepositoryAdmin;
24 import org.apache.archiva.admin.repository.RepositoryAdminException;
25 import org.apache.maven.archiva.configuration.Configuration;
26 import org.springframework.stereotype.Service;
27
28 import java.util.ArrayList;
29 import java.util.List;
30
31 /**
32  * @author Olivier Lamy
33  */
34 @Service( "archivaAdministration#default" )
35 public class DefaultArchivaAdministration
36     extends AbstractRepositoryAdmin
37     implements ArchivaAdministration
38 {
39     public List<LegacyArtifactPath> getLegacyArtifactPaths()
40         throws RepositoryAdminException
41     {
42         List<LegacyArtifactPath> legacyArtifactPaths = new ArrayList<LegacyArtifactPath>();
43         for ( org.apache.maven.archiva.configuration.LegacyArtifactPath legacyArtifactPath : getArchivaConfiguration().getConfiguration().getLegacyArtifactPaths() )
44         {
45             legacyArtifactPaths.add(
46                 new BeanReplicator().replicateBean( legacyArtifactPath, LegacyArtifactPath.class ) );
47         }
48         return legacyArtifactPaths;
49     }
50
51     public void addLegacyArtifactPath( LegacyArtifactPath legacyArtifactPath, AuditInformation auditInformation )
52         throws RepositoryAdminException
53     {
54         Configuration configuration = getArchivaConfiguration().getConfiguration();
55
56         configuration.addLegacyArtifactPath( new BeanReplicator().replicateBean( legacyArtifactPath,
57                                                                                  org.apache.maven.archiva.configuration.LegacyArtifactPath.class ) );
58
59         saveConfiguration( configuration );
60     }
61
62     public void deleteLegacyArtifactPath( String path, AuditInformation auditInformation )
63         throws RepositoryAdminException
64     {
65         Configuration configuration = getArchivaConfiguration().getConfiguration();
66         org.apache.maven.archiva.configuration.LegacyArtifactPath legacyArtifactPath =
67             new org.apache.maven.archiva.configuration.LegacyArtifactPath();
68
69         legacyArtifactPath.setPath( path );
70         configuration.removeLegacyArtifactPath( legacyArtifactPath );
71
72         saveConfiguration( configuration );
73     }
74 }