]> source.dussan.org Git - archiva.git/blob
d0ec3885de474aaf683728991e1fb903d017a3d6
[archiva.git] /
1 package org.apache.maven.archiva.web.action.admin.connectors.proxy;
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.repository.RepositoryAdminException;
23 import org.apache.archiva.admin.repository.proxyconnector.ProxyConnector;
24 import org.apache.maven.archiva.configuration.ProxyConnectorConfiguration;
25 import org.springframework.context.annotation.Scope;
26 import org.springframework.stereotype.Controller;
27
28 /**
29  * DeleteProxyConnectorAction
30  *
31  * @version $Id$
32  */
33 @Controller( "deleteProxyConnectorAction" )
34 @Scope( "prototype" )
35 public class DeleteProxyConnectorAction
36     extends AbstractProxyConnectorAction
37 {
38     private String source;
39
40     private String target;
41
42     private ProxyConnector proxyConfig;
43
44     public String confirmDelete()
45         throws RepositoryAdminException
46     {
47         this.proxyConfig = findProxyConnector( source, target );
48
49         // Not set? Then there is nothing to delete.
50         if ( this.proxyConfig == null )
51         {
52             addActionError(
53                 "Unable to delete proxy configuration, configuration with source [" + source + "], and target ["
54                     + target + "] does not exist." );
55             return ERROR;
56         }
57
58         return INPUT;
59     }
60
61     public String delete()
62         throws RepositoryAdminException
63     {
64         this.proxyConfig = findProxyConnector( source, target );
65
66         // Not set? Then there is nothing to delete.
67         if ( this.proxyConfig == null )
68         {
69             addActionError(
70                 "Unable to delete proxy configuration, configuration with source [" + source + "], and target ["
71                     + target + "] does not exist." );
72             return ERROR;
73         }
74
75         if ( hasActionErrors() )
76         {
77             return ERROR;
78         }
79
80         getProxyConnectorAdmin().deleteProxyConnector( proxyConfig, getAuditInformation() );
81         addActionMessage( "Successfully removed proxy connector [" + source + " , " + target + " ]" );
82
83         setSource( null );
84         setTarget( null );
85
86         return SUCCESS;
87     }
88
89     public String getSource()
90     {
91         return source;
92     }
93
94     public void setSource( String id )
95     {
96         this.source = id;
97     }
98
99     public String getTarget()
100     {
101         return target;
102     }
103
104     public void setTarget( String id )
105     {
106         this.target = id;
107     }
108
109     public ProxyConnector getProxyConfig()
110     {
111         return proxyConfig;
112     }
113 }