]> source.dussan.org Git - archiva.git/blob
653a29318d45c2b372d01bb64f1afce8d2c15ed3
[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.xwork.Preparable;
23
24 import org.apache.commons.lang.StringUtils;
25 import org.apache.maven.archiva.configuration.Configuration;
26 import org.apache.maven.archiva.configuration.RepositoryGroupConfiguration;
27
28 /**
29  * DeleteRepositoryGroupAction
30  * 
31  * @author
32  * @version
33  * @plexus.component role="com.opensymphony.xwork.Action" role-hint="deleteRepositoryGroupAction"
34  */
35 public class DeleteRepositoryGroupAction 
36     extends AbstractRepositoriesAdminAction
37     implements Preparable
38 {
39     private RepositoryGroupConfiguration repositoryGroup;
40
41     private String repoGroupId;
42         
43     public void prepare()
44     {
45         if ( StringUtils.isNotBlank( repoGroupId ) )
46         {
47             this.repositoryGroup = archivaConfiguration.getConfiguration().findRepositoryGroupById( repoGroupId );
48         }
49     }
50         
51     public String confirmDelete()
52     {
53         if ( StringUtils.isBlank( repoGroupId ) )
54         {
55             addActionError( "Unable to delete repository group: repository id was blank." );
56             return ERROR;
57         }
58
59         return INPUT;
60     }
61
62     public String delete()
63     {
64         Configuration config = archivaConfiguration.getConfiguration();
65
66         RepositoryGroupConfiguration group = config.findRepositoryGroupById( repoGroupId );
67         if ( group == null )
68         {
69             addActionError( "A repository group with that id does not exist." );
70             return ERROR;
71         }
72                 
73         config.removeRepositoryGroup( group );
74         return saveConfiguration( config );
75     }
76         
77     public RepositoryGroupConfiguration getRepositoryGroup()
78     {
79         return repositoryGroup;
80     }
81
82     public void setRepositoryGroup( RepositoryGroupConfiguration repositoryGroup )
83     {
84         this.repositoryGroup = repositoryGroup;
85     }
86
87     public String getRepoGroupId()
88     {
89         return repoGroupId;
90     }
91
92     public void setRepoGroupId( String repoGroupId )
93     {
94         this.repoGroupId = repoGroupId;
95     }
96 }