1 package org.sapia.archie;2 3 /**4 * @author Yanick Duchesne5 * <dl>6 * <dt><b>Copyright:</b><dd>Copyright © 2002-2003 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>7 * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the8 * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>9 * </dl>10 */11 public class Entry {12 13 private String _name;14 private Object _value;15 16 public Entry(String name, Object value){17 _name = name;18 _value = value;19 }20 21 /**22 * @return this entry's name.23 */24 public String getName(){25 return _name;26 }27 28 /**29 * @return this entry's value.30 */31 public Object getValue(){32 return _value;33 }34 }35