本文整理汇总了Java中com.offbytwo.jenkins.client.JenkinsHttpClient类的典型用法代码示例。如果您正苦于以下问题:Java JenkinsHttpClient类的具体用法?Java JenkinsHttpClient怎么用?Java JenkinsHttpClient使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
JenkinsHttpClient类属于com.offbytwo.jenkins.client包,在下文中一共展示了JenkinsHttpClient类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: JenkinsHelper
import com.offbytwo.jenkins.client.JenkinsHttpClient; //导入依赖的package包/类
public JenkinsHelper(String configFile) throws JSONException, URISyntaxException, IOException {
// parse the config file
config = ConfigParser.parseConfigFile(configFile);
// crumbs flag will not work without "Prevent Cross Site Request Forgery Exploits" enabled in jenkins
if (config.has("crumbsFlag"))
crumbsFlag = config.getBoolean("crumbsFlag");
URI jenkinsURI = new URI(config.getString("jenkinsURI"));
String username = config.getString("username");
String token = config.getString("token");
// setup our client
client = new JenkinsHttpClient(jenkinsURI, username, token);
jenkins = new JenkinsServer(client);
}
示例2: TestResultHistory
import com.offbytwo.jenkins.client.JenkinsHttpClient; //导入依赖的package包/类
public TestResultHistory(String apacheHTTPURL, String jobName, String userName, String passWord)
throws URISyntaxException {
this.client = new JenkinsHttpClient(new URI(apacheHTTPURL), userName, passWord);
this.jobName = jobName;
}
示例3: setUp
import com.offbytwo.jenkins.client.JenkinsHttpClient; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
client = new JenkinsHttpClient(new URI("http://localhost:8080"));
server = new JenkinsServer(client);
executor = Executors.newCachedThreadPool();
}
示例4: getClient
import com.offbytwo.jenkins.client.JenkinsHttpClient; //导入依赖的package包/类
public JenkinsHttpClient getClient() {
return client;
}
示例5: setClient
import com.offbytwo.jenkins.client.JenkinsHttpClient; //导入依赖的package包/类
public void setClient(JenkinsHttpClient client) {
this.client = client;
}
示例6: JenkinsServer
import com.offbytwo.jenkins.client.JenkinsHttpClient; //导入依赖的package包/类
/**
* Create a new Jenkins server reference given only the server address
*
* @param serverUri address of jenkins server (ex. http://localhost:8080/jenkins)
*/
public JenkinsServer(URI serverUri) {
this(new JenkinsHttpClient(serverUri));
}
示例7: JenkinsServer
import com.offbytwo.jenkins.client.JenkinsHttpClient; //导入依赖的package包/类
/**
* Create a new Jenkins server reference given only the server address
*
* @param serverUri
* address of jenkins server (ex. http://localhost:8080/jenkins)
*/
public JenkinsServer(URI serverUri) {
this(new JenkinsHttpClient(serverUri));
}