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