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/.
|
|
|
|
*/
|
|
|
|
|
2019-12-18 16:21:20 +01:00
|
|
|
package ch.ethz.seb.sebserver;
|
2019-12-11 11:02:31 +01:00
|
|
|
|
|
|
|
import org.springframework.context.ApplicationEvent;
|
|
|
|
|
2021-12-07 10:41:54 +01:00
|
|
|
import ch.ethz.seb.sebserver.webservice.WebserviceInit;
|
|
|
|
|
2019-12-18 16:21:20 +01:00
|
|
|
public class SEBServerInitEvent extends ApplicationEvent {
|
2019-12-11 11:02:31 +01:00
|
|
|
|
|
|
|
private static final long serialVersionUID = -3608628289559324471L;
|
|
|
|
|
2021-12-07 10:41:54 +01:00
|
|
|
public final WebserviceInit webserviceInit;
|
|
|
|
|
|
|
|
public SEBServerInitEvent(final WebserviceInit webserviceInit) {
|
|
|
|
super(webserviceInit);
|
|
|
|
this.webserviceInit = webserviceInit;
|
2019-12-11 11:02:31 +01:00
|
|
|
}
|
|
|
|
}
|