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