]> source.dussan.org Git - archiva.git/blob
a40ce1c6ffb748462573946393539b57184cb0d7
[archiva.git] /
1 package org.apache.maven.archiva.web.action.admin.legacy;\r
2 \r
3 /*\r
4  * Licensed to the Apache Software Foundation (ASF) under one\r
5  * or more contributor license agreements.  See the NOTICE file\r
6  * distributed with this work for additional information\r
7  * regarding copyright ownership.  The ASF licenses this file\r
8  * to you under the Apache License, Version 2.0 (the\r
9  * "License"); you may not use this file except in compliance\r
10  * with the License.  You may obtain a copy of the License at\r
11  *\r
12  *  http://www.apache.org/licenses/LICENSE-2.0\r
13  *\r
14  * Unless required by applicable law or agreed to in writing,\r
15  * software distributed under the License is distributed on an\r
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r
17  * KIND, either express or implied.  See the License for the\r
18  * specific language governing permissions and limitations\r
19  * under the License.\r
20  */\r
21 \r
22 import org.apache.archiva.admin.repository.RepositoryAdminException;\r
23 import org.apache.archiva.admin.repository.admin.ArchivaAdministration;\r
24 import org.apache.maven.archiva.web.action.AbstractActionSupport;\r
25 import org.springframework.context.annotation.Scope;\r
26 import org.springframework.stereotype.Controller;\r
27 \r
28 import javax.inject.Inject;\r
29 \r
30 /**\r
31  * Delete a LegacyArtifactPath to archiva configuration\r
32  *\r
33  * @since 1.1\r
34  */\r
35 @Controller( "deleteLegacyArtifactPathAction" )\r
36 @Scope( "prototype" )\r
37 public class DeleteLegacyArtifactPathAction\r
38     extends AbstractActionSupport\r
39 {\r
40 \r
41     @Inject\r
42     private ArchivaAdministration archivaAdministration;\r
43 \r
44     private String path;\r
45 \r
46     public String delete()\r
47     {\r
48         log.info( "remove [" + path + "] from legacy artifact path resolution" );\r
49         try\r
50         {\r
51             getArchivaAdministration().deleteLegacyArtifactPath( path );\r
52         }\r
53         catch ( RepositoryAdminException e )\r
54         {\r
55             log.error( e.getMessage(), e );\r
56             addActionError( "Exception during delete " + e.getMessage() );\r
57         }\r
58         return SUCCESS;\r
59     }\r
60 \r
61     public String getPath()\r
62     {\r
63         return path;\r
64     }\r
65 \r
66     public void setPath( String path )\r
67     {\r
68         this.path = path;\r
69     }\r
70 \r
71     public ArchivaAdministration getArchivaAdministration()\r
72     {\r
73         return archivaAdministration;\r
74     }\r
75 \r
76     public void setArchivaAdministration( ArchivaAdministration archivaAdministration )\r
77     {\r
78         this.archivaAdministration = archivaAdministration;\r
79     }\r
80 }\r