1 37 38 package net.sourceforge.cruisecontrol.distributed; 39 40 import net.jini.entry.AbstractEntry; 41 42 import org.apache.log4j.Logger; 43 44 public class PropertyEntry extends AbstractEntry { 45 46 private static final Logger LOG = Logger.getLogger(PropertyEntry.class); 47 48 private static final long serialVersionUID = -3021011110362115574L; 49 public String name = null; 50 public String value = null; 51 52 public PropertyEntry() { 53 54 } 55 56 public PropertyEntry(String name, String value) { 57 this.name = name; 58 this.value = value; 59 } 60 } 61 | Popular Tags |