uk.co.codera.ci.tooling.jenkins.JenkinsConnectionDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codera-ci-tooling-service-jenkins Show documentation
Show all versions of codera-ci-tooling-service-jenkins Show documentation
Provides integration with jenkins such as creating and deleting jobs automatically.
The newest version!
package uk.co.codera.ci.tooling.jenkins;
public class JenkinsConnectionDetails {
private final String serverUrl;
private JenkinsConnectionDetails(Builder builder) {
this.serverUrl = builder.serverUrl;
}
public static Builder aJenkinsConfiguration() {
return new Builder();
}
public String getServerUrl() {
return this.serverUrl;
}
public static class Builder {
private String serverUrl;
private Builder() {
super();
}
public Builder serverUrl(String serverUrl) {
this.serverUrl = serverUrl;
return this;
}
public JenkinsConnectionDetails build() {
return new JenkinsConnectionDetails(this);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy