01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.test.proxyconnect;
05:
06: public interface ProxyConnectManager {
07: void setupProxy();
08:
09: void proxyDown();
10:
11: void proxyUp();
12:
13: void startProxyTest();
14:
15: void stopProxyTest();
16:
17: void setProxyPort(int port);
18:
19: int getProxyPort();
20:
21: void setDsoPort(int port);
22:
23: int getDsoPort();
24:
25: void setProxyDownTime(int milliseconds);
26:
27: int getProxyDownTime();
28:
29: void setProxyWaitTime(int milliseconds);
30:
31: int getProxyWaitTime();
32:
33: void close();
34:
35: void closeClientConnections();
36:
37: }
|