/**
  * File: 		MapStringSetEntry.java
  * Content: 	part of the RMI specification of sensei gmns
  * Author: 	LuisM Pena
  * Date: 		1st December 2001
  * Version:  0.29.00
  * Last change:
  *
  **/


package sensei.middleware.gmns;

final public class MapStringSetEntry implements java.io.Serializable
{
    public
    MapStringSetEntry()
    {
    }

    public
    MapStringSetEntry(String key,
                      int value)
    {
        this.key = key;
        this.value = value;
    }

    public String key;
    public int value;
};