1 22 package test.asynchronous; 23 import org.apache.commons.logging.Log; 24 import org.apache.commons.logging.LogFactory; 25 30 31 public class BusinessModelWithCleanupWithParameters extends BusinessModel { 32 public BusinessModelWithCleanupWithParameters() {} 33 36 public BusinessModelWithCleanupWithParameters(long sleepTime) { 37 super(sleepTime); 38 } 39 public void cleanup(long sleepTime, Parameter parameter) { 40 System.out.println("BusinessModelWithCleanupWithParameters Cleanup"); 41 bCleanupCalled = true; 42 } 43 } 44 | Popular Tags |