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