]> source.dussan.org Git - archiva.git/blob
8b050e94f6e711656a2fad048cd15dcb96d28024
[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.maven.archiva.configuration.ProxyConnectorConfiguration;
23
24
25 /**
26  * EditProxyConnectorAction 
27  *
28  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
29  * @version $Id$
30  * 
31  * @plexus.component role="com.opensymphony.xwork.Action" role-hint="editProxyConnectorAction"
32  */
33 public class EditProxyConnectorAction
34     extends AbstractProxyConnectorFormAction
35 {
36     /**
37      * The proxy connector source id to edit. (used with {@link #target})
38      */
39     private String source;
40
41     /**
42      * The proxy connector target id to edit. (used with {@link #source})
43      */
44     private String target;
45
46     @Override
47     public void prepare()
48     {
49         super.prepare();
50
51         connector = findProxyConnector( source, target );
52     }
53
54     public String input()
55     {
56         if ( connector == null )
57         {
58             addActionError( "Unable to edit non existant proxy connector with source [" + source + "] and target ["
59                 + target + "]" );
60             return ERROR;
61         }
62
63         return INPUT;
64     }
65
66     public String commit()
67     {
68         validateConnector();
69
70         if ( hasActionErrors() )
71         {
72             return INPUT;
73         }
74
75         String sourceId = connector.getSourceRepoId();
76         String targetId = connector.getTargetRepoId();
77
78         ProxyConnectorConfiguration otherConnector = findProxyConnector( sourceId, targetId );
79         if ( otherConnector != null )
80         {
81             // Remove the previous connector.
82             removeProxyConnector( otherConnector );
83         }
84
85         if ( hasActionErrors() )
86         {
87             return INPUT;
88         }
89
90         addProxyConnector( connector );
91         return saveConfiguration();
92     }
93
94     public String getSource()
95     {
96         return source;
97     }
98
99     public void setSource( String source )
100     {
101         this.source = source;
102     }
103
104     public String getTarget()
105     {
106         return target;
107     }
108
109     public void setTarget( String target )
110     {
111         this.target = target;
112     }
113
114 }