Package lumis.doui.source
Interface ISourceContext
-
- All Known Implementing Classes:
SourceContext
,SourceContextSPI
@StableMinor(version="14.2", sinceVersion="4.0") public interface ISourceContext
Offers information about the context where a source is being used.- Since:
- 4.0.4
- Version:
- $Revision: 24985 $ $Date: 2022-05-02 23:04:30 -0300 (Mon, 02 May 2022) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DouiContext
getDouiContext()
Returns the doui context this source context belongs to.ServiceInstanceConfig
getServiceInstanceConfig()
Returns the service instance of this context.SessionConfig
getSessionConfig()
Returns the user session information.ITransaction
getTransaction()
Returns the transaction for persistence access.
-
-
-
Method Detail
-
getDouiContext
DouiContext getDouiContext()
Returns the doui context this source context belongs to.- Returns:
- the doui context this source context belongs to, or null if this source context does not belongs to a doui context.
- Since:
- 4.0.4
-
getTransaction
ITransaction getTransaction()
Returns the transaction for persistence access.- Returns:
- the transaction for persistence access.
- Since:
- 4.0.4
-
getSessionConfig
SessionConfig getSessionConfig()
Returns the user session information.- Returns:
- the user session information.
- Since:
- 4.0.4
-
getServiceInstanceConfig
ServiceInstanceConfig getServiceInstanceConfig()
Returns the service instance of this context.- Returns:
- the service instance of this context.
- Since:
- 4.0.4
-
-