1 20 package org.apache.cactus.spi.client.connector; 21 22 import junit.framework.Test; 23 24 import org.apache.cactus.Request; 25 import org.apache.cactus.spi.client.ResponseObjectFactory; 26 27 63 public interface ProtocolHandler 64 { 65 72 Request createRequest(); 73 74 91 ProtocolState runTest(Test theDelegatedTest, Test theWrappedTest, 92 Request theRequest) throws Throwable ; 93 94 103 ResponseObjectFactory createResponseObjectFactory(ProtocolState theState); 104 105 114 void afterTest(ProtocolState theState) throws Exception ; 115 } 116 | Popular Tags |