/**
  * File: 		Property.java
  * Content: 	part of the RMI specification of sensei domains
  *           Defines the property structure
  * Author: 	LuisM Pena
  * Date: 		27th October 2001
  * Version:  0.51.00
  * Last change:
  *
  **/


package sensei.middleware.domains;

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

    public
    Property(String nam,
             String val)
    {
        this.nam = nam;
        this.val = val;
    }

    public String nam;
    public String val;
}