Samples JDK
MeterControlRequest.java
1 package com.freemindcafe.apache.commons.beanutils.sample1;
2 
3 import java.util.Date;
4 
5 
6 public class MeterControlRequest{
7  private Long svcPtId;
8  private String deviceId;
9  private Date windowStartDateTime;
10  private Date windowEndDateTime;
11  public Long getSvcPtId() {
12  return svcPtId;
13  }
14  public void setSvcPtId(Long svcPtId) {
15  this.svcPtId = svcPtId;
16  }
17  public String getDeviceId() {
18  return deviceId;
19  }
20  public void setDeviceId(String deviceId) {
21  this.deviceId = deviceId;
22  }
23  public Date getWindowStartDateTime() {
24  return windowStartDateTime;
25  }
26  public void setWindowStartDateTime(Date windowStartDateTime) {
27  this.windowStartDateTime = windowStartDateTime;
28  }
29  public Date getWindowEndDateTime() {
30  return windowEndDateTime;
31  }
32  public void setWindowEndDateTime(Date windowEndDateTime) {
33  this.windowEndDateTime = windowEndDateTime;
34  }
35 }