Package com.veracode.jenkins.plugin.data
Class ProxyBlock
- java.lang.Object
-
- com.veracode.jenkins.plugin.data.ProxyBlock
-
public final class ProxyBlock extends Object
The ProxyBlock class corresponds to an "optionalBlock" jelly element that represents proxy configuration data.
-
-
Constructor Summary
Constructors Constructor Description ProxyBlock(String phost, String pport, String puser, String ppassword)Called by Jenkins with form data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPhost()Corresponds to thephostidentifier referenced in a jelly file.StringgetPpassword()Corresponds to theppasswordidentifier referenced in a jelly file.StringgetPport()Corresponds to thepportidentifier referenced in a jelly file.StringgetPuser()Corresponds to thepuseridentifier referenced in a jelly file.
-
-
-
Method Detail
-
getPhost
public String getPhost()
Corresponds to thephostidentifier referenced in a jelly file.- Returns:
- a
Stringobject.
-
getPport
public String getPport()
Corresponds to thepportidentifier referenced in a jelly file.- Returns:
- a
Stringobject.
-
getPuser
public String getPuser()
Corresponds to thepuseridentifier referenced in a jelly file.- Returns:
- a
Stringobject.
-
-