Created
April 2, 2014 06:45
-
-
Save minisu/9929054 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.smartbear.saas.rs.storage; | |
import com.smartbear.saas.rs.model.TestRun; | |
import java.util.Optional; | |
import java.util.Set; | |
public interface TestRunStorage | |
{ | |
Optional<TestRun> getTest( String customerId, String testId ); | |
String getAssets( String customerId, String testId, Optional<String> scenario ); | |
String getDataPoints( String customerId, String testId, Optional<String> variable, Optional<String> metric, | |
Optional<String> limit, Optional<String> offset ); | |
String getTabularLiveStats( String customerId, String testId ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment