1 4 package org.oddjob.scheduling; 5 6 import java.io.Serializable ; 7 import java.util.LinkedHashMap ; 8 import java.util.Map ; 9 10 13 public class ScheduleSummary implements Serializable { 14 private static final long serialVersionUID = 20051117; 15 16 17 private String id; 18 19 20 private Map description = new LinkedHashMap (); 21 22 27 public String getId() { 28 return id; 29 } 30 31 36 public void setId(String id) { 37 this.id = id; 38 } 39 40 45 public Map getDescription() { 46 return description; 47 } 48 49 54 public void setDescription(Map description) { 55 this.description = description; 56 } 57 } 58 | Popular Tags |