Package org.apache.maven.settings.crypto
Interface SettingsDecryptionRequest
- All Known Implementing Classes:
- DefaultSettingsDecryptionRequest
public interface SettingsDecryptionRequest
Collects parameters that control the decryption of settings.
- Author:
- Benjamin Bentmann
- 
Method SummaryModifier and TypeMethodDescriptionGets the proxies whose passwords should be decrypted.Gets the servers whose passwords should be decrypted.setProxies(List<Proxy> proxies) Sets the proxies whose passwords should be decrypted.setServers(List<Server> servers) Sets the servers whose passwords should be decrypted.
- 
Method Details- 
getServersGets the servers whose passwords should be decrypted.- Returns:
- The servers to decrypt, never null.
 
- 
setServersSets the servers whose passwords should be decrypted.- Parameters:
- servers- The servers to decrypt, may be- null.
- Returns:
- This request, never null.
 
- 
getProxiesGets the proxies whose passwords should be decrypted.- Returns:
- The proxies to decrypt, never null.
 
- 
setProxiesSets the proxies whose passwords should be decrypted.- Parameters:
- proxies- The proxies to decrypt, may be- null.
- Returns:
- This request, never null.
 
 
-