Class ConnectionEvent
- java.lang.Object
-
- java.util.EventObject
-
- de.hybris.platform.sap.core.jco.connection.impl.ConnectionEvent
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
JCoConnectionEvent
public class ConnectionEvent extends java.util.EventObjectThis class provides information on a connection event The BackendContext and Request Context can be used to exchange data with other layers.- See Also:
RequestContext, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConnectionEvent(java.lang.Object source)Constructs an event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RequestContextgetRequestContext()Returns the request context.
-
-
-
Method Detail
-
getRequestContext
public RequestContext getRequestContext()
Returns the request context. This context can be used to pass data between layers of the framework. The context has the scope of an request (HTTP request). NOTE:
This context MUST NOT be used in standard development. It is a tool for quickly extending the functionality of the standard in CUSTOMER projects.- Returns:
- the request context
-
-