https://maven.apache.org/wagon/wagon-provider-api: Maven Wagon API that defines the contract between different Wagon implementations
(The Apache Software Foundation)
- James William Dumay
- Nathan Beyer
- Gregory Block
- Thomas Recloux
- Trustin Lee
- John Wells
- Marcel Schutte
- David Hawkins
- Juan F. Codagnone
- ysoonleo
- Thomas Champagne
- M. van der Plas
- Jason Dillon
- Jochen Wiedmann
- Gilles Scokart
- Wolfgang Glas
- Kohsuke Kawaguchi
- Antti Virtanen
- Thorsten Heit
- Michal Maczka (Codehaus)
- Adrián Boimvaser (Application Security, Inc.)
- Oleg Kalnichevski
- William Bernardet
- Michael Neale
- Grzegorz Grzybek
- Jean Niklas L'orange
- Robert Scholte
- Arnaud Héritier
- Anders Hammar
- Barrie Treloar
- Benson Margulies
- Brian Fox (Sonatype)
- Tamas Cservenak
- Dennis Lundberg (ASF)
- Daniel Kulp (ASF)
- Emmanuel Venisse (ASF)
- Guillaume Boué
- Hervé Boutemy (ASF)
- Igor Fedorenko (Sonatype)
- Jason van Zyl
- Karl Heinz Marbaise
- Kristian Rosenvold
- Milos Kleint
- Olivier Lamy
- Michael Osipov
- Ralph Goers (Intuit)
- Stephane Nicoll (ASF)
- Stephen Connolly
- Tibor Digaňa
- Vincent Siveton (ASF)
- Wayne Fay (ASF)
- Andreas Dangel
- Brian Demers (Sonatype)
- Fabrice Bellingard
- Benjamin Bentmann (Sonatype)
- Chris Graham
- Dan Tran
- Damian Bradicich (Sonatype)
- Brett Porter (ASF)
- Daniel Fabulich
- Fabrizio Giustina (openmind)
- Evgeny Mandrikov (SonarSource)
- Andrew Williams
- Dominik Bartholdi
- Jeff Jensen
- Lukas Theussl
- Mark Hobson
- Mauro Talevi
- Mirko Friedenhagen
- Manfred Moser
- Nicolas de Loof
- Maria Odea B. Ching
- Paul Gier (Red Hat)
- Petar Tahchiev
- Raphaël Piéroni (Dexem)
- Christian Schulte
- Simone Tripodi
- Christian Stein
- Mark Struberg
- Tony Chemit (CodeLutin)
- Vincent Massol (ASF)
- Andreas Gudian
- Allan Q. Ramirez
- Henri Yandell
- Carlos Sanchez (ASF)
- Chris Stevenson
- David Blevins
- Daniel Rall
- Edwin Punzalan
- Felipe Leme
- John Casey (ASF)
- Jesse McConnell (ASF)
- Joakim Erdfelt (ASF)
- Johnny Ruiz III
- James Strachan
- Ernesto Tolentino Jr. (ASF)
- Kenney Westerhof (Neonics)
- Mike Perham (IBM)
- Oleg Gusakov
- Patrick Schneider
- Rahul Thakur
- Shinobu Kuwai
- Torbjorn Eikli Smorgrav
- Trygve Laugstol (ASF)
- Wendy Smoak
package org.apache.maven.wagon.proxy;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
Interface of an object, which provides the proxy settings. Typically, this is the artifact manager.
/**
* Interface of an object, which provides the proxy settings. Typically, this is the artifact manager.
*/
public interface ProxyInfoProvider
{
Returns the proxy settings for the given protocol.
Returns: Proxy settings or null, if no proxy is configured for this protocol.
/**
* Returns the proxy settings for the given protocol.
*
* @return Proxy settings or null, if no proxy is configured for this protocol.
*/
ProxyInfo getProxyInfo( String protocol );
}