seb-server/src/main/java/ch/ethz/seb/sebserver/SEBServerInitEvent.java

21 lines
616 B
Java
Raw Normal View History

2019-12-11 11:02:31 +01:00
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver;
2019-12-11 11:02:31 +01:00
import org.springframework.context.ApplicationEvent;
public class SEBServerInitEvent extends ApplicationEvent {
2019-12-11 11:02:31 +01:00
private static final long serialVersionUID = -3608628289559324471L;
public SEBServerInitEvent(final Object source) {
2019-12-11 11:02:31 +01:00
super(source);
}
}