]> source.dussan.org Git - archiva.git/blob
7e9cf00ac679e618e09aec059c7ae8d0236afb67
[archiva.git] /
1 package org.apache.maven.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 org.apache.archiva.admin.repository.RepositoryAdminException;
24 import org.apache.archiva.admin.repository.remote.RemoteRepository;
25 import org.apache.commons.lang.StringUtils;
26 import org.springframework.context.annotation.Scope;
27 import org.springframework.stereotype.Controller;
28
29 /**
30  * EditRemoteRepositoryAction
31  *
32  * @version $Id$
33  */
34 @Controller( "editRemoteRepositoryAction" )
35 @Scope( "prototype" )
36 public class EditRemoteRepositoryAction
37     extends AbstractRemoteRepositoriesAction
38     implements Preparable
39 {
40     /**
41      * The model for this action.
42      */
43     private RemoteRepository repository;
44
45     /**
46      * The repository id to edit.
47      */
48     private String repoid;
49
50     public void prepare()
51         throws RepositoryAdminException
52     {
53         if ( StringUtils.isNotBlank( repoid ) )
54         {
55             this.repository = getRemoteRepositoryAdmin().getRemoteRepository( repoid );
56         }
57     }
58
59     public String input()
60     {
61         if ( StringUtils.isBlank( repoid ) )
62         {
63             addActionError( "Edit failure, unable to edit a repository with a blank repository id." );
64             return ERROR;
65         }
66
67         return INPUT;
68     }
69
70     public String commit()
71     {
72         String result = SUCCESS;
73         try
74         {
75             getRemoteRepositoryAdmin().updateRemoteRepository( getRepository(), getAuditInformation() );
76         }
77         catch ( RepositoryAdminException e )
78         {
79             addActionError( "RepositoryAdminException: " + e.getMessage() );
80             result = INPUT;
81         }
82
83         return result;
84     }
85
86     public RemoteRepository getRepository()
87     {
88         return repository;
89     }
90
91     public void setRepository( RemoteRepository repository )
92     {
93         this.repository = repository;
94     }
95
96     public String getRepoid()
97     {
98         return repoid;
99     }
100
101     public void setRepoid( String repoid )
102     {
103         this.repoid = repoid;
104     }
105 }