3.25.2. Entry Class Example

import net.jini.core.entry.Entry;

public class Message implements Entry
{
  // Attributes that form the content of an entry
  public String text;

  // An obligatory parameterless constructor
  public Message () { }
}