Package hudson.plugins.gradle.enriched
Class EnrichedSummaryConfig
- java.lang.Object
-
- hudson.model.Descriptor<jenkins.model.GlobalConfiguration>
-
- jenkins.model.GlobalConfiguration
-
- hudson.plugins.gradle.enriched.EnrichedSummaryConfig
-
- All Implemented Interfaces:
hudson.ExtensionPoint
,hudson.model.Describable<jenkins.model.GlobalConfiguration>
,hudson.model.Saveable
,jenkins.model.Loadable
,jenkins.util.io.OnMaster
@Extension public class EnrichedSummaryConfig extends jenkins.model.GlobalConfiguration
-
-
Constructor Summary
Constructors Constructor Description EnrichedSummaryConfig()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
configure(org.kohsuke.stapler.StaplerRequest req, net.sf.json.JSONObject json)
hudson.util.FormValidation
doCheckHttpClientDelayBetweenRetriesInSeconds(int value)
hudson.util.FormValidation
doCheckHttpClientMaxRetries(int value)
hudson.util.FormValidation
doCheckHttpClientTimeoutInSeconds(int value)
static EnrichedSummaryConfig
get()
hudson.util.Secret
getBuildScanAccessKey()
java.lang.String
getBuildScanServer()
int
getHttpClientDelayBetweenRetriesInSeconds()
int
getHttpClientMaxRetries()
int
getHttpClientTimeoutInSeconds()
boolean
isEnrichedSummaryEnabled()
void
setBuildScanAccessKey(hudson.util.Secret buildScanAccessKey)
void
setBuildScanServer(java.lang.String buildScanServerUrl)
void
setEnrichedSummaryEnabled(boolean enrichedSummaryEnabled)
void
setHttpClientDelayBetweenRetriesInSeconds(int httpClientDelayBetweenRetriesInSeonds)
void
setHttpClientMaxRetries(int httpClientMaxRetries)
void
setHttpClientTimeoutInSeconds(int httpClientTimeoutInSeconds)
-
Methods inherited from class jenkins.model.GlobalConfiguration
all, getDescriptor, getGlobalConfigPage
-
Methods inherited from class hudson.model.Descriptor
addHelpFileRedirect, bindJSON, calcAutoCompleteSettings, calcFillSettings, configure, doHelp, find, find, findByDescribableClassName, findById, getCategory, getCheckMethod, getCheckUrl, getConfigFile, getConfigPage, getCurrentDescriptorByNameUrl, getDescriptorFullUrl, getDescriptorUrl, getDisplayName, getGlobalPropertyType, getHelpFile, getHelpFile, getHelpFile, getId, getJsonSafeClassName, getKlass, getPlugin, getPossibleViewNames, getPropertyType, getPropertyType, getPropertyTypeOrDie, getRequiredGlobalConfigPagePermission, getT, getViewPage, isInstance, isSubTypeOf, load, newInstance, newInstance, newInstancesFromHeteroList, newInstancesFromHeteroList, save, self, toArray, toList, toMap
-
-
-
-
Method Detail
-
get
public static EnrichedSummaryConfig get()
-
isEnrichedSummaryEnabled
public boolean isEnrichedSummaryEnabled()
-
setEnrichedSummaryEnabled
@DataBoundSetter public void setEnrichedSummaryEnabled(boolean enrichedSummaryEnabled)
-
getHttpClientTimeoutInSeconds
public int getHttpClientTimeoutInSeconds()
-
setHttpClientTimeoutInSeconds
@DataBoundSetter public void setHttpClientTimeoutInSeconds(int httpClientTimeoutInSeconds)
-
getHttpClientMaxRetries
public int getHttpClientMaxRetries()
-
setHttpClientMaxRetries
@DataBoundSetter public void setHttpClientMaxRetries(int httpClientMaxRetries)
-
getHttpClientDelayBetweenRetriesInSeconds
public int getHttpClientDelayBetweenRetriesInSeconds()
-
setHttpClientDelayBetweenRetriesInSeconds
@DataBoundSetter public void setHttpClientDelayBetweenRetriesInSeconds(int httpClientDelayBetweenRetriesInSeonds)
-
getBuildScanServer
public java.lang.String getBuildScanServer()
-
setBuildScanServer
@DataBoundSetter public void setBuildScanServer(java.lang.String buildScanServerUrl)
-
getBuildScanAccessKey
public hudson.util.Secret getBuildScanAccessKey()
-
setBuildScanAccessKey
@DataBoundSetter public void setBuildScanAccessKey(hudson.util.Secret buildScanAccessKey)
-
configure
public boolean configure(org.kohsuke.stapler.StaplerRequest req, net.sf.json.JSONObject json)
- Overrides:
configure
in classjenkins.model.GlobalConfiguration
-
doCheckHttpClientTimeoutInSeconds
@Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class) @POST public hudson.util.FormValidation doCheckHttpClientTimeoutInSeconds(@QueryParameter int value)
-
doCheckHttpClientMaxRetries
@Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class) @POST public hudson.util.FormValidation doCheckHttpClientMaxRetries(@QueryParameter int value)
-
doCheckHttpClientDelayBetweenRetriesInSeconds
@Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class) @POST public hudson.util.FormValidation doCheckHttpClientDelayBetweenRetriesInSeconds(@QueryParameter int value)
-
-