moved ScheduledTaskRegistrar to new config package (where the scheduling namespace will live as well)

This commit is contained in:
Juergen Hoeller 2009-05-06 08:47:18 +00:00
parent 6771a22988
commit 0320445316
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.scheduling.support;
package org.springframework.scheduling.config;
import java.util.LinkedHashSet;
import java.util.Map;
@ -28,6 +28,7 @@ import org.springframework.beans.factory.InitializingBean;
import org.springframework.scheduling.TaskScheduler;
import org.springframework.scheduling.Trigger;
import org.springframework.scheduling.concurrent.ConcurrentTaskScheduler;
import org.springframework.scheduling.support.CronTrigger;
import org.springframework.util.Assert;
/**