Class ProxyBlock

java.lang.Object
com.netsparker.cloud.model.ProxyBlock

public class ProxyBlock extends Object
The ProxyBlock class corresponds to an "optionalBlock" global.jelly element that represents proxy configuration data.
  • Constructor Details

    • ProxyBlock

      @DataBoundConstructor public ProxyBlock(Boolean useProxy, String pHost, String pPort, String pUser, String pPassword)
      Called by Jenkins with form data.
      Parameters:
      useProxy - a Boolean object.
      pHost - a String object.
      pPort - a String object.
      pUser - a String object.
      pPassword - a String object.
  • Method Details

    • getUseProxy

      public Boolean getUseProxy()
      Corresponds to the useProxy identifier referenced in a global.jelly file.
      Returns:
      a Boolean object.
    • getpHost

      public String getpHost()
      Corresponds to the pHost identifier referenced in a global.jelly file.
      Returns:
      a String object.
    • getpPort

      public String getpPort()
      Corresponds to the pPort identifier referenced in a global.jelly file.
      Returns:
      a String object.
    • getpUser

      public String getpUser()
      Corresponds to the pUser identifier referenced in a global.jelly file.
      Returns:
      a String object.
    • getpPassword

      public String getpPassword()
      Corresponds to the pPassword identifier referenced in a global.jelly file.
      Returns:
      a String object.