1 18 19 package org.apache.beehive.netui.tools.testrecorder.server.state; 20 21 22 27 public interface Session { 28 29 36 boolean sessionStart() throws SessionFailedException; 37 38 44 boolean sessionEnd() throws SessionFailedException; 45 46 55 boolean sessionEnd( long loopTimeout, long hardTimeout ) throws SessionFailedException; 56 57 String getSessionName(); 58 59 String getTestUser(); 60 61 int testCount(); 62 63 boolean isSessionStarted(); 65 66 boolean isSessionFinished(); 68 69 } 70 | Popular Tags |