Coverage Report - net.spy.digg.StoryParameters
 
Classes in this File Line Coverage Branch Coverage Complexity
StoryParameters
0%
0/13
N/A
1
 
 1  
 package net.spy.digg;
 2  
 
 3  
 /**
 4  
  * Parameters for story requests.
 5  
  */
 6  0
 public class StoryParameters extends TimestampedPagingParameters {
 7  
 
 8  
         private Long minPromoteDate;
 9  
         private Long maxPromoteDate;
 10  
         private String domain;
 11  
         private String link;
 12  
 
 13  
         /**
 14  
          * Get the domain parameter.
 15  
          */
 16  
         public String getDomain() {
 17  0
                 return domain;
 18  
         }
 19  
         /**
 20  
          * Set the domain parameter.
 21  
          */
 22  
         public void setDomain(String to) {
 23  0
                 domain = to;
 24  0
         }
 25  
         /**
 26  
          * Get the link parameter.
 27  
          */
 28  
         public String getLink() {
 29  0
                 return link;
 30  
         }
 31  
         /**
 32  
          * Set the link parameter.
 33  
          */
 34  
         public void setLink(String to) {
 35  0
                 link = to;
 36  0
         }
 37  
         /**
 38  
          * Get the max promotion date.
 39  
          */
 40  
         public Long getMaxPromoteDate() {
 41  0
                 return maxPromoteDate;
 42  
         }
 43  
         /**
 44  
          * Set the maximum promotion date.
 45  
          */
 46  
         public void setMaxPromoteDate(Long to) {
 47  0
                 maxPromoteDate = to;
 48  0
         }
 49  
         /**
 50  
          * Get the minimum promotion date.
 51  
          */
 52  
         public Long getMinPromoteDate() {
 53  0
                 return minPromoteDate;
 54  
         }
 55  
         /**
 56  
          * Set the minimum promotion date.
 57  
          */
 58  
         public void setMinPromoteDate(Long to) {
 59  0
                 minPromoteDate = to;
 60  0
         }
 61  
 
 62  
 }