Update of 
/var/cvs/contributions/CMSContainer_Portlets/portlets-newsletter/src/java/com/finalist/newsletter/domain
In directory 
james.mmbase.org:/tmp/cvs-serv32401/portlets-newsletter/src/java/com/finalist/newsletter/domain

Modified Files:
        StatisticResult.java 
Log Message:
CMSC-725 test and basic implement.


See also: 
http://cvs.mmbase.org/viewcvs/contributions/CMSContainer_Portlets/portlets-newsletter/src/java/com/finalist/newsletter/domain
See also: http://www.mmbase.org/jira/browse/CMSC-725


Index: StatisticResult.java
===================================================================
RCS file: 
/var/cvs/contributions/CMSContainer_Portlets/portlets-newsletter/src/java/com/finalist/newsletter/domain/StatisticResult.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- StatisticResult.java        10 Apr 2008 10:07:47 -0000      1.1
+++ StatisticResult.java        21 Apr 2008 09:51:03 -0000      1.2
@@ -1,33 +1,115 @@
 package com.finalist.newsletter.domain;
 
+import java.util.Date;
+
 public class StatisticResult {
+
    private int newsletterId = 0;
+
    private String name;
+
    private int post = 0;
 
-   public int getNewsletterId() {
+       private int bounches = 0;
+
+       private int subscribe = 0;
+
+       private int unsubscribe = 0;
+
+       private int removed = 0;
+
+       private Date logdate;
+
+       private String showingdate;
+
+       public String getShowingdate (){
+
+               return showingdate;
+       }
+
+       public void setShowingdate (String showingdate){
+
+               this.showingdate = showingdate;
+       }
+
+       public int getNewsletterId (){
+
       return newsletterId;
    }
 
-   public void setNewsletterId(int newsletterId) {
+       public void setNewsletterId (int newsletterId){
+
       this.newsletterId = newsletterId;
    }
 
-   public String getName() {
+       public String getName (){
+
       return name;
    }
 
-   public void setName(String name) {
+       public void setName (String name){
+
       this.name = name;
    }
 
-   public int getPost() {
+       public int getPost (){
+
       return post;
    }
 
-   public void setPost(int post) {
+       public void setPost (int post){
+
       this.post = post;
    }
 
+       public int getBounches (){
+
+               return bounches;
+       }
+
+       public void setBounches (int bounches){
+
+               this.bounches = bounches;
+       }
+
+       public int getSubscribe (){
+
+               return subscribe;
+       }
+
+       public void setSubscribe (int subscribe){
+
+               this.subscribe = subscribe;
+       }
+
+       public int getUnsubscribe (){
+
+               return unsubscribe;
+       }
+
+       public void setUnsubscribe (int unsubscribe){
+
+               this.unsubscribe = unsubscribe;
+       }
+
+       public int getRemoved (){
+
+               return removed;
+       }
+
+       public void setRemoved (int removed){
+
+               this.removed = removed;
+       }
+
+       public Date getLogdate (){
+
+               return logdate;
+       }
+
+       public void setLogdate (Date logdate){
+
+               this.logdate = logdate;
+       }
 
 }
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to