]> source.dussan.org Git - archiva.git/blob
c6a4e4ea0751ddb172c2b03a75b65f37fb9142f8
[archiva.git] /
1 package org.apache.archiva.web.action.admin.repositories;
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 com.opensymphony.xwork2.Preparable;
23 import com.opensymphony.xwork2.Validateable;
24 import org.apache.archiva.admin.model.RepositoryAdminException;
25 import org.apache.archiva.admin.model.beans.RemoteRepository;
26 import org.springframework.context.annotation.Scope;
27 import org.springframework.stereotype.Controller;
28
29 /**
30  * AddRemoteRepositoryAction
31  *
32  *
33  */
34 @Controller( "addRemoteRepositoryAction" )
35 @Scope( "prototype" )
36 public class AddRemoteRepositoryAction
37     extends AbstractRemoteRepositoriesAction
38     implements Preparable, Validateable
39 {
40     /**
41      * The model for this action.
42      */
43     private RemoteRepository repository;
44
45     public void prepare()
46         throws RepositoryAdminException
47     {
48         this.repository = new RemoteRepository();
49         setNetworkProxies( getNetworkProxyAdmin().getNetworkProxies() );
50     }
51
52     public String input()
53     {
54         return INPUT;
55     }
56
57     public String commit()
58     {
59
60         String result = SUCCESS;
61         try
62         {
63             getRemoteRepositoryAdmin().addRemoteRepository( repository, getAuditInformation() );
64         }
65         catch ( RepositoryAdminException e )
66         {
67             addActionError( "RepositoryAdminException: " + e.getMessage() );
68             result = INPUT;
69         }
70
71         return result;
72     }
73
74
75     public RemoteRepository getRepository()
76     {
77         return repository;
78     }
79
80     public void setRepository( RemoteRepository repository )
81     {
82         this.repository = repository;
83     }
84 }