Interface SettingsDecryptionRequest

All Known Implementing Classes:
DefaultSettingsDecryptionRequest

public interface SettingsDecryptionRequest
Collects parameters that control the decryption of settings.
Author:
Benjamin Bentmann
  • Method Summary

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

    • getServers

      List<org.apache.maven.settings.Server> getServers()
      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)
      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()
      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)
      Sets the proxies whose passwords should be decrypted.
      Parameters:
      proxies - The proxies to decrypt, may be null.
      Returns:
      This request, never null.