25 lines
797 B
Java
25 lines
797 B
Java
/*
|
|
* 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;
|
|
|
|
import org.springframework.context.ApplicationEvent;
|
|
|
|
import ch.ethz.seb.sebserver.webservice.WebserviceInit;
|
|
|
|
public class SEBServerInitEvent extends ApplicationEvent {
|
|
|
|
private static final long serialVersionUID = -3608628289559324471L;
|
|
|
|
public final WebserviceInit webserviceInit;
|
|
|
|
public SEBServerInitEvent(final WebserviceInit webserviceInit) {
|
|
super(webserviceInit);
|
|
this.webserviceInit = webserviceInit;
|
|
}
|
|
}
|