
com.slickqa.client.apiparts.ResultApi 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.errors.SlickError;
import com.slickqa.client.model.LogEntry;
import com.slickqa.client.model.Result;
import java.util.List;
/**
* The ResultApi adds only one method to the RetrieveUpdateDeleteApi, addLogs.
*
* Created by jcorbett on 4/14/14.
*/
public interface ResultApi extends RetrieveUpdateDeleteApi {
/**
* Add log entries to an existing result.
* @param logEntries The log entries to add to the result.
* @return a complete list of log entries in the result after the add.
* @throws com.slickqa.client.errors.SlickError if a problem was encountered while communicating with the server
*/
Integer addLogs(List logEntries) throws SlickError;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy