1   package org.org.usurper.dummydomain;
2   
3   import org.org.usurper.model.IHandledEntity;
4   import org.org.usurper.setup.ICountCallback;
5   
6   public class DummyCountCallback implements ICountCallback {
7   
8       public static final int LUCKY_VALUE = 13;
9   
10      public Integer determineCount(IHandledEntity handledEntity) {
11          return LUCKY_VALUE;
12      }
13  
14  }