1 /** 2 * 3 */ 4 package org.sourceforge.jemm.comm.shared; 5 6 /** 7 * Initialisation message used by RPCHandler listing the interfaces 8 * available for call by the sender. 9 * 10 * @author Rory Graves 11 */ 12 public class ServerReadyMessage extends Message { 13 private static final long serialVersionUID = 1L; 14 15 /** 16 * Creates an AvailableIFsMessage with the given interface list. 17 * @param offeredIFs The interfaces offered by the creator. 18 */ 19 public ServerReadyMessage() { 20 super(null); 21 } 22 23 }