01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.net.protocol.transport;
05:
06: import com.tc.exception.ImplementMe;
07:
08: public abstract class TestTransportHandshakeMessage extends
09: TestWireProtocolMessage implements TransportHandshakeMessage {
10:
11: public ConnectionID connectionID = ConnectionID.NULL_ID;
12:
13: public ConnectionID getConnectionId() {
14: return connectionID;
15: }
16:
17: public boolean isMaxConnectionsExceeded() {
18: throw new ImplementMe();
19: }
20:
21: public int getMaxConnections() {
22: throw new ImplementMe();
23: }
24:
25: }
|