Interface SettingsDecryptionRequest

All Known Implementing Classes:
DefaultSettingsDecryptionRequest

@Deprecated(since="4.0.0") public interface SettingsDecryptionRequest
Deprecated.
since 4.0.0
Collects parameters that control the decryption of settings.
  • Method Summary

    Modifier and Type
    Method
    Description
    List<org.apache.maven.settings.Proxy>
    Deprecated.
    Gets the proxies whose passwords should be decrypted.
    List<org.apache.maven.settings.Server>
    Deprecated.
    Gets the servers whose passwords should be decrypted.
    setProxies(List<org.apache.maven.settings.Proxy> proxies)
    Deprecated.
    Sets the proxies whose passwords should be decrypted.
    setServers(List<org.apache.maven.settings.Server> servers)
    Deprecated.
    Sets the servers whose passwords should be decrypted.
  • Method Details

    • getServers

      List<org.apache.maven.settings.Server> getServers()
      Deprecated.
      Gets the servers whose passwords should be decrypted.
      Returns:
      The servers to decrypt, never null.
    • setServers

      SettingsDecryptionRequest setServers(List<org.apache.maven.settings.Server> servers)
      Deprecated.
      Sets the servers whose passwords should be decrypted.
      Parameters:
      servers - The servers to decrypt, may be null.
      Returns:
      This request, never null.
    • getProxies

      List<org.apache.maven.settings.Proxy> getProxies()
      Deprecated.
      Gets the proxies whose passwords should be decrypted.
      Returns:
      The proxies to decrypt, never null.
    • setProxies

      SettingsDecryptionRequest setProxies(List<org.apache.maven.settings.Proxy> proxies)
      Deprecated.
      Sets the proxies whose passwords should be decrypted.
      Parameters:
      proxies - The proxies to decrypt, may be null.
      Returns:
      This request, never null.