1 16 17 package org.springframework.jmx.export; 18 19 import java.util.Date ; 20 21 24 public class DateRange { 25 26 private Date startDate; 27 28 private Date endDate; 29 30 public Date getStartDate() { 31 return startDate; 32 } 33 34 public void setStartDate(Date startDate) { 35 this.startDate = startDate; 36 } 37 38 public Date getEndDate() { 39 return endDate; 40 } 41 42 public void setEndDate(Date endDate) { 43 this.endDate = endDate; 44 } 45 46 } 47 | Popular Tags |