Advertisement
Guest User

CommunicationStatusDto

a guest
Feb 29th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.17 KB | None | 0 0
  1. import java.io.Serializable;
  2. import java.util.Date;
  3.  
  4. public class CommunicationStatusDto implements Serializable {
  5.     private Date date;
  6.     private Double total;
  7.     private Double successful;
  8.     private Double failed;
  9.     private Double pending;
  10.     private Double target;
  11.  
  12.     public Date getDate() {
  13.         return date;
  14.     }
  15.  
  16.     public void setDate(Date date) {
  17.         this.date = date;
  18.     }
  19.  
  20.     public Double getTotal() {
  21.         return total;
  22.     }
  23.  
  24.     public void setTotal(Double total) {
  25.         this.total = total;
  26.     }
  27.  
  28.     public Double getSuccessful() {
  29.         return successful;
  30.     }
  31.  
  32.     public void setSuccessful(Double successful) {
  33.         this.successful = successful;
  34.     }
  35.  
  36.     public Double getFailed() {
  37.         return failed;
  38.     }
  39.  
  40.     public void setFailed(Double failed) {
  41.         this.failed = failed;
  42.     }
  43.  
  44.     public Double getPending() {
  45.         return pending;
  46.     }
  47.  
  48.     public void setPending(Double pending) {
  49.         this.pending = pending;
  50.     }
  51.  
  52.     public Double getTarget() {
  53.         return target;
  54.     }
  55.  
  56.     public void setTarget(Double target) {
  57.         this.target = target;
  58.     }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement