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.l2.msg;
05:
06: import com.tc.net.groups.NodeID;
07:
08: public class ObjectSyncCompleteMessageFactory {
09:
10: public static ObjectSyncCompleteMessage createObjectSyncCompleteMessageFor(
11: NodeID nodeID, long sequence) {
12: return new ObjectSyncCompleteMessage(
13: ObjectSyncCompleteMessage.OBJECT_SYNC_COMPLETE,
14: sequence);
15: }
16:
17: }
|