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 java.util.Set;
07:
08: public class GCResultMessageFactory {
09:
10: public static GCResultMessage createGCResultMessage(Set deleted) {
11: return new GCResultMessage(GCResultMessage.GC_RESULT, deleted);
12: }
13:
14: }
|