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

com.sap.cds.services.application.ApplicationPreparedEventContext Maven / Gradle / Ivy

/**************************************************************************
 * (C) 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
 **************************************************************************/
package com.sap.cds.services.application;

import com.sap.cds.services.EventContext;
import com.sap.cds.services.EventName;

@EventName(ApplicationLifecycleService.EVENT_APPLICATION_PREPARED)
public interface ApplicationPreparedEventContext extends EventContext {

	/**
	 * Creates an {@link EventContext} already overlayed with this interface. The event is set to be {@link ApplicationLifecycleService#EVENT_APPLICATION_PREPARED}
	 * @return the {@link ApplicationPreparedEventContext}
	 */
	static ApplicationPreparedEventContext create() {
		return EventContext.create(ApplicationPreparedEventContext.class, null);
	}

	@Override
	ApplicationLifecycleService getService();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy