# jenkins-java-client **Repository Path**: mamh-java/jenkins-java-client ## Basic Information - **Project Name**: jenkins-java-client - **Description**: https://github.com/mamh-java/jenkins-java-client - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-05-14 - **Last Updated**: 2023-04-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README jenkins-java-client ====================== # A jenkins API Client for Java Introduction ----------- Java implementation of the [Jenkins] REST API. Usage ------- ```java URI uri = new URI("http://localhost:8080/"); String username = "mage"; String password = "token"; server = new JenkinsServer(uri, username, password); List jobs = server.getJobs("view");//获取视图 view 下面的jobs List jobs = server.getJobs(); //默认获取视图All下面的jobs ```