Package org.apache.maven.settings.crypto
Class DefaultSettingsDecryptionRequest
java.lang.Object
org.apache.maven.settings.crypto.DefaultSettingsDecryptionRequest
- All Implemented Interfaces:
SettingsDecryptionRequest
Collects parameters that control the decryption of settings.
- Author:
- Benjamin Bentmann
-
Constructor Summary
ConstructorDescriptionCreates an empty request.Creates a new request to decrypt the specified proxy.Creates a new request to decrypt the specified server.DefaultSettingsDecryptionRequest
(Settings settings) Creates a new request to decrypt the specified settings. -
Method Summary
Modifier 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.
-
Constructor Details
-
DefaultSettingsDecryptionRequest
public DefaultSettingsDecryptionRequest()Creates an empty request. -
DefaultSettingsDecryptionRequest
Creates a new request to decrypt the specified settings.- Parameters:
settings
- The settings to decrypt, must not benull
.
-
DefaultSettingsDecryptionRequest
Creates a new request to decrypt the specified server.- Parameters:
server
- The server to decrypt, must not benull
.
-
DefaultSettingsDecryptionRequest
Creates a new request to decrypt the specified proxy.- Parameters:
proxy
- The proxy to decrypt, must not benull
.
-
-
Method Details
-
getServers
Description copied from interface:SettingsDecryptionRequest
Gets the servers whose passwords should be decrypted.- Specified by:
getServers
in interfaceSettingsDecryptionRequest
- Returns:
- The servers to decrypt, never
null
.
-
setServers
Description copied from interface:SettingsDecryptionRequest
Sets the servers whose passwords should be decrypted.- Specified by:
setServers
in interfaceSettingsDecryptionRequest
- Parameters:
servers
- The servers to decrypt, may benull
.- Returns:
- This request, never
null
.
-
getProxies
Description copied from interface:SettingsDecryptionRequest
Gets the proxies whose passwords should be decrypted.- Specified by:
getProxies
in interfaceSettingsDecryptionRequest
- Returns:
- The proxies to decrypt, never
null
.
-
setProxies
Description copied from interface:SettingsDecryptionRequest
Sets the proxies whose passwords should be decrypted.- Specified by:
setProxies
in interfaceSettingsDecryptionRequest
- Parameters:
proxies
- The proxies to decrypt, may benull
.- Returns:
- This request, never
null
.
-