com.offbytwo.jenkins.model.BaseModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jenkins-client Show documentation
Show all versions of jenkins-client Show documentation
A Jenkins API client for Java
/*
* Copyright (c) 2013 Rising Oak LLC.
*
* Distributed under the MIT license: http://opensource.org/licenses/MIT
*/
package com.offbytwo.jenkins.model;
import com.offbytwo.jenkins.client.JenkinsHttpClient;
public class BaseModel {
JenkinsHttpClient client;
public JenkinsHttpClient getClient() {
return client;
}
public void setClient(JenkinsHttpClient client) {
this.client = client;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy