1package org.apache.archiva.admin.model.networkproxy;
2/*3 * Licensed to the Apache Software Foundation (ASF) under one4 * or more contributor license agreements. See the NOTICE file5 * distributed with this work for additional information6 * regarding copyright ownership. The ASF licenses this file7 * to you under the Apache License, Version 2.0 (the8 * "License"); you may not use this file except in compliance9 * with the License. You may obtain a copy of the License at10 *11 * http://www.apache.org/licenses/LICENSE-2.012 *13 * Unless required by applicable law or agreed to in writing,14 * software distributed under the License is distributed on an15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY16 * KIND, either express or implied. See the License for the17 * specific language governing permissions and limitations18 * under the License.19 */2021import org.apache.archiva.admin.model.AuditInformation;
22import org.apache.archiva.admin.model.RepositoryAdminException;
23import org.apache.archiva.admin.model.beans.NetworkProxy;
2425import java.util.List;
2627/**28 * @author Olivier Lamy29 * @since 1.4-M130 */31publicinterfaceNetworkProxyAdmin32 {
33 List<NetworkProxy> getNetworkProxies()
34throws RepositoryAdminException;
3536NetworkProxy getNetworkProxy( String networkProxyId )
37throws RepositoryAdminException;
3839void addNetworkProxy( NetworkProxy networkProxy, AuditInformation auditInformation )
40throws RepositoryAdminException;
4142void updateNetworkProxy( NetworkProxy networkProxy, AuditInformation auditInformation )
43throws RepositoryAdminException;
4445void deleteNetworkProxy( String networkProxyId, AuditInformation auditInformation )
46throws RepositoryAdminException;
47 }