Skip to content

Commit

Permalink
JENKINS-41934 Added conf to ignore certificate
Browse files Browse the repository at this point in the history
  • Loading branch information
janario committed Mar 18, 2017
1 parent 5d631d5 commit ce565aa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/jenkins/plugins/http_request/HttpRequest.java
Expand Up @@ -93,6 +93,10 @@ public HttpRequest(@Nonnull String url) {
this.url = url;
}

public Boolean getIgnoreSslErrors() {
return ignoreSslErrors;
}

@DataBoundSetter
public void setIgnoreSslErrors(Boolean ignoreSslErrors) {
this.ignoreSslErrors = ignoreSslErrors;
Expand Down

0 comments on commit ce565aa

Please sign in to comment.