Interface SettingsDecryptionResult
Deprecated.
since 4.0.0
Collects the output of the settings decrypter.
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Gets the problems that were encountered during the settings decryption.List<org.apache.maven.settings.Proxy> Deprecated.Gets the decrypted proxies.org.apache.maven.settings.ProxygetProxy()Deprecated.Gets the decrypted proxy.org.apache.maven.settings.ServerDeprecated.Gets the decrypted server.List<org.apache.maven.settings.Server> Deprecated.Gets the decrypted servers.
-
Method Details
-
getServer
org.apache.maven.settings.Server getServer()Deprecated.Gets the decrypted server. This is a convenience method to retrieve the first element fromgetServers().- Returns:
- The decrypted server or
null.
-
getServers
List<org.apache.maven.settings.Server> getServers()Deprecated.Gets the decrypted servers.- Returns:
- The decrypted server, can be empty but never
null.
-
getProxy
org.apache.maven.settings.Proxy getProxy()Deprecated.Gets the decrypted proxy. This is a convenience method to retrieve the first element fromgetProxies().- Returns:
- The decrypted proxy or
null.
-
getProxies
List<org.apache.maven.settings.Proxy> getProxies()Deprecated.Gets the decrypted proxies.- Returns:
- The decrypted proxy, can be empty but never
null.
-
getProblems
List<SettingsProblem> getProblems()Deprecated.Gets the problems that were encountered during the settings decryption.- Returns:
- The problems that were encountered during the decryption, can be empty but never
null.
-