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 class TestSynAckMessage extends TestTransportHandshakeMessage
09: implements SynAckMessage {
10:
11: public String getErrorContext() {
12: throw new ImplementMe();
13: }
14:
15: public boolean hasErrorContext() {
16: throw new ImplementMe();
17: }
18:
19: public boolean isSyn() {
20: return false;
21: }
22:
23: public boolean isSynAck() {
24: return true;
25: }
26:
27: public boolean isAck() {
28: return false;
29: }
30:
31: public void recycle() {
32: return;
33: }
34:
35: }
|