All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.alauda.client.IBuildClient Maven / Gradle / Ivy

package io.alauda.client;

import net.sf.json.JSONObject;

import java.io.IOException;

public interface IBuildClient {
    String startBuild(String configName, String commitID, String branch) throws IOException;

    String startBuild(String configName, String commitID, String branch, String spaceName) throws IOException;

    JSONObject retrieveBuild(String buildID) throws IOException;

    void deleteBuild(String buildID) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy