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: public class TestSynMessage extends TestTransportHandshakeMessage
07: implements SynMessage {
08:
09: public boolean isSyn() {
10: return true;
11: }
12:
13: public boolean isSynAck() {
14: return false;
15: }
16:
17: public boolean isAck() {
18: return false;
19: }
20: }
|