]> source.dussan.org Git - archiva.git/blob
0ce76aba51f82efa40f4abcd500ba516550e37f3
[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 org.apache.archiva.admin.model.RepositoryAdminException;
24 import org.apache.archiva.admin.model.beans.RepositoryGroup;
25 import org.apache.archiva.admin.model.group.RepositoryGroupAdmin;
26 import org.apache.commons.lang.StringUtils;
27 import org.springframework.context.annotation.Scope;
28 import org.springframework.stereotype.Controller;
29
30 import javax.inject.Inject;
31
32 /**
33  * DeleteRepositoryGroupAction
34  */
35 @Controller( "deleteRepositoryGroupAction" )
36 @Scope( "prototype" )
37 public class DeleteRepositoryGroupAction
38     extends AbstractRepositoriesAdminAction
39     implements Preparable
40 {
41     private RepositoryGroup repositoryGroup;
42
43     @Inject
44     private RepositoryGroupAdmin repositoryGroupAdmin;
45
46     private String repoGroupId;
47
48     public void prepare()
49         throws RepositoryAdminException
50     {
51
52         if ( StringUtils.isNotBlank( repoGroupId ) )
53         {
54             this.repositoryGroup = repositoryGroupAdmin.getRepositoryGroup( repoGroupId );
55         }
56     }
57
58     public String confirmDelete()
59     {
60         if ( StringUtils.isBlank( repoGroupId ) )
61         {
62             addActionError( "Unable to delete repository group: repository id was blank." );
63             return ERROR;
64         }
65
66         return INPUT;
67     }
68
69     public String delete()
70     {
71
72         try
73         {
74             RepositoryGroup group = repositoryGroupAdmin.getRepositoryGroup( repoGroupId );
75             if ( group == null )
76             {
77                 addActionError( "A repository group with that id does not exist." );
78                 return ERROR;
79             }
80
81             repositoryGroupAdmin.deleteRepositoryGroup( repoGroupId, getAuditInformation() );
82             return SUCCESS;
83         }
84         catch ( RepositoryAdminException e )
85         {
86             addActionError( "error occured " + e.getMessage() );
87             return ERROR;
88         }
89     }
90
91     public RepositoryGroup getRepositoryGroup()
92     {
93         return repositoryGroup;
94     }
95
96     public void setRepositoryGroup( RepositoryGroup repositoryGroup )
97     {
98         this.repositoryGroup = repositoryGroup;
99     }
100
101     public String getRepoGroupId()
102     {
103         return repoGroupId;
104     }
105
106     public void setRepoGroupId( String repoGroupId )
107     {
108         this.repoGroupId = repoGroupId;
109     }
110
111     public RepositoryGroupAdmin getRepositoryGroupAdmin()
112     {
113         return repositoryGroupAdmin;
114     }
115
116     public void setRepositoryGroupAdmin( RepositoryGroupAdmin repositoryGroupAdmin )
117     {
118         this.repositoryGroupAdmin = repositoryGroupAdmin;
119     }
120 }