1 37 38 package net.sourceforge.cruisecontrol.sourcecontrols; 39 40 import java.util.Collections ; 41 import java.util.Date ; 42 import java.util.Hashtable ; 43 import java.util.List ; 44 import java.util.Map ; 45 46 import net.sourceforge.cruisecontrol.CruiseControlException; 47 import net.sourceforge.cruisecontrol.SourceControl; 48 49 59 public class ForceOnly implements SourceControl { 60 61 private static final Hashtable EMPTY_HASHTABLE = new Hashtable (); 62 63 public List getModifications(Date lastBuild, Date now) { 64 return Collections.EMPTY_LIST; 65 } 66 67 public void validate() throws CruiseControlException { 68 } 70 71 public Map getProperties() { 72 return EMPTY_HASHTABLE; 73 } 74 } 75 | Popular Tags |