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

com.slickqa.client.apiparts.ReleaseApi Maven / Gradle / Ivy

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