1 package org.apache.maven.archiva.web.action.admin.connectors.proxy;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
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;
28 * DeleteProxyConnectorAction
32 @Controller( "deleteProxyConnectorAction" )
34 public class DeleteProxyConnectorAction
35 extends AbstractProxyConnectorAction
37 private String source;
39 private String target;
41 private ProxyConnector proxyConfig;
43 public String confirmDelete()
44 throws RepositoryAdminException
46 this.proxyConfig = findProxyConnector( source, target );
48 // Not set? Then there is nothing to delete.
49 if ( this.proxyConfig == null )
52 "Unable to delete proxy configuration, configuration with source [" + source + "], and target ["
53 + target + "] does not exist." );
60 public String delete()
61 throws RepositoryAdminException
63 this.proxyConfig = findProxyConnector( source, target );
65 // Not set? Then there is nothing to delete.
66 if ( this.proxyConfig == null )
69 "Unable to delete proxy configuration, configuration with source [" + source + "], and target ["
70 + target + "] does not exist." );
74 if ( hasActionErrors() )
79 getProxyConnectorAdmin().deleteProxyConnector( proxyConfig, getAuditInformation() );
80 addActionMessage( "Successfully removed proxy connector [" + source + " , " + target + " ]" );
88 public String getSource()
93 public void setSource( String id )
98 public String getTarget()
103 public void setTarget( String id )
108 public ProxyConnector getProxyConfig()