123456789101112131415161718192021222324 |
- package org.dbsyncer.common.event;
- import org.dbsyncer.common.model.Task;
- import org.springframework.context.ApplicationContext;
- import org.springframework.context.event.ApplicationContextEvent;
- public class IncrementRefreshEvent extends ApplicationContextEvent {
- private Task task;
- /**
- * Create a new ContextStartedEvent.
- *
- * @param source the {@code ApplicationContext} that the event is raised for (must not be {@code null})
- */
- public IncrementRefreshEvent(ApplicationContext source, Task task) {
- super(source);
- this.task = task;
- }
- public Task getTask() {
- return task;
- }
- }
|