
com.slickqa.client.apiparts.ReleaseApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slickqa-java-client Show documentation
Show all versions of slickqa-java-client Show documentation
Java client api for the slick test management tool.
The newest version!
package com.slickqa.client.apiparts;
import com.slickqa.client.model.Build;
import com.slickqa.client.model.Release;
/**
* The release api extends the basic CRUD Api by adding build related operations.
* Created by jcorbett on 4/7/14.
*/
public interface ReleaseApi extends RetrieveUpdateDeleteApi {
/**
* Query for all the builds belonging to this release, no filtering.
* @return QueryAndCreateApi
*/
public QueryAndCreateApi builds();
/**
* Use a specific release.
*
* @param idOrName The id or name of the build
* @return RetrieveUpdateDeleteApi
*/
public RetrieveUpdateDeleteApi build(String idOrName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy