Clover Coverage Report - Pebble 2.5-SNAPSHOT
Coverage timestamp: Sat Jun 12 2010 09:39:29 EST
0   21   0   -
0   4   -   0
0     -  
1    
This report was generated with an evaluation server license. Purchase Clover or configure your license.
 
  TrackBackConfirmationStrategy       Line # 11 0 - 0 0 - -1.0
 
No Tests
 
1    package net.sourceforge.pebble.api.confirmation;
2   
3    import net.sourceforge.pebble.domain.Blog;
4   
5    /**
6    * Represents an abstraction of the various ways in which TrackBack links
7    * can be confirmed.
8    *
9    * @author Simon Brown
10    */
 
11    public interface TrackBackConfirmationStrategy extends ConfirmationStrategy {
12   
13    /**
14    * Called to determine whether confirmation is required.
15    *
16    * @param blog the owning Blog
17    * @return true if the confirmation is required, false otherwise
18    */
19    public boolean confirmationRequired(Blog blog);
20   
21    }