Skip to content

Instantly share code, notes, and snippets.

@minisu
Created April 2, 2014 06:45
Show Gist options
  • Save minisu/9929054 to your computer and use it in GitHub Desktop.
Save minisu/9929054 to your computer and use it in GitHub Desktop.
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