1 18 19 package org.apache.beehive.netui.tools.testrecorder.server.state; 20 21 import org.apache.beehive.netui.tools.testrecorder.server.FilterData; 22 23 import java.io.File ; 24 25 26 28 public interface PlaybackSession extends Session { 29 30 35 boolean startTest() throws SessionFailedException; 36 37 41 int endTest( FilterData filterData ) throws SessionFailedException; 42 43 String getStringUID(); 44 45 File getPlaybackFile(); 46 47 File getDiffFile(); 48 49 File getRecordFile(); 50 51 int passCount(); 52 53 int failCount(); 54 55 String getStatus(); 56 57 } 58 | Popular Tags |