]> source.dussan.org Git - archiva.git/blob
944ac1d3e8f4cf77488d0c1cc09f23c06e8772bb
[archiva.git] /
1 package org.apache.archiva.web.action.admin.legacy;
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.archiva.admin.model.RepositoryAdminException;
23 import org.apache.archiva.admin.model.admin.ArchivaAdministration;
24 import org.apache.archiva.web.action.AbstractActionSupport;
25 import org.springframework.context.annotation.Scope;
26 import org.springframework.stereotype.Controller;
27
28 import javax.inject.Inject;
29
30 /**
31  * Delete a LegacyArtifactPath to archiva configuration
32  *
33  * @since 1.1
34  */
35 @Controller( "deleteLegacyArtifactPathAction" )
36 @Scope( "prototype" )
37 public class DeleteLegacyArtifactPathAction
38     extends AbstractActionSupport
39 {
40
41     @Inject
42     private ArchivaAdministration archivaAdministration;
43
44     private String path;
45
46     public String delete()
47     {
48         log.info( "remove [" + path + "] from legacy artifact path resolution" );
49         try
50         {
51             getArchivaAdministration().deleteLegacyArtifactPath( path, getAuditInformation() );
52         }
53         catch ( RepositoryAdminException e )
54         {
55             log.error( e.getMessage(), e );
56             addActionError( "Exception during delete " + e.getMessage() );
57         }
58         return SUCCESS;
59     }
60
61     public String getPath()
62     {
63         return path;
64     }
65
66     public void setPath( String path )
67     {
68         this.path = path;
69     }
70
71     public ArchivaAdministration getArchivaAdministration()
72     {
73         return archivaAdministration;
74     }
75
76     public void setArchivaAdministration( ArchivaAdministration archivaAdministration )
77     {
78         this.archivaAdministration = archivaAdministration;
79     }
80 }