]> git.argeo.org Git - gpl/argeo-slc.git/blob - execution/ExecutionFinishedEvent.java
Prepare next development cycle
[gpl/argeo-slc.git] / execution / ExecutionFinishedEvent.java
1 package org.argeo.slc.execution;
2
3 import org.springframework.context.ApplicationEvent;
4
5 public class ExecutionFinishedEvent extends ApplicationEvent {
6 static final long serialVersionUID = 012;
7
8 private final ExecutionContext executionContext;
9
10 public ExecutionFinishedEvent(Object source, ExecutionContext executionContext) {
11 super(source);
12 this.executionContext = executionContext;
13 }
14
15 public ExecutionContext getExecutionContext() {
16 return executionContext;
17 }
18
19 }