1 package org.apache.maven.archiva.web.action.admin.repositories;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
22 import com.opensymphony.xwork2.Preparable;
24 import org.apache.commons.lang.StringUtils;
25 import org.apache.maven.archiva.configuration.Configuration;
26 import org.apache.maven.archiva.configuration.RemoteRepositoryConfiguration;
27 import org.codehaus.plexus.redback.role.RoleManagerException;
29 import java.io.IOException;
32 * EditRemoteRepositoryAction
36 * @plexus.component role="com.opensymphony.xwork2.Action" role-hint="editRemoteRepositoryAction" instantiation-strategy="per-lookup"
38 public class EditRemoteRepositoryAction
39 extends AbstractRemoteRepositoriesAction
43 * The model for this action.
45 private RemoteRepositoryConfiguration repository;
48 * The repository id to edit.
50 private String repoid;
55 if ( StringUtils.isNotBlank( repoid ) )
57 this.repository = archivaConfiguration.getConfiguration().findRemoteRepositoryById( id );
63 if ( StringUtils.isBlank( repoid ) )
65 addActionError( "Edit failure, unable to edit a repository with a blank repository id." );
72 public String commit()
74 Configuration configuration = archivaConfiguration.getConfiguration();
76 // We are in edit mode, remove the old repository configuration.
77 removeRepository( repository.getId(), configuration );
79 // Save the repository configuration.
83 addRepository( repository, configuration );
84 result = saveConfiguration( configuration );
86 catch ( IOException e )
88 addActionError( "I/O Exception: " + e.getMessage() );
91 catch ( RoleManagerException e )
93 addActionError( "Role Manager Exception: " + e.getMessage() );
100 public RemoteRepositoryConfiguration getRepository()
105 public void setRepository( RemoteRepositoryConfiguration repository )
107 this.repository = repository;
110 public String getRepoid()
115 public void setRepoid( String repoid )
117 this.repoid = repoid;