All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webswing.model.s2c.SimpleEventMsgOut Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.model.s2c;

import org.webswing.model.Msg;

public enum SimpleEventMsgOut implements Msg {
	applicationAlreadyRunning,
	shutDownNotification,
	tooManyClientsNotification,
	continueOldSession,
	configurationError,
	sessionStolenNotification,
	unauthorizedAccess,
	shutDownAutoLogoutNotification,
	sessionTimeoutWarning,
	sessionTimedOutNotification,
	applicationBusy;

	public AppFrameMsgOut buildMsgOut() {
		AppFrameMsgOut result = new AppFrameMsgOut();
		result.setEvent(this);
		return result;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy