Interface MetadataServiceHandle
- All Superinterfaces:
Serializable
The MetadataService
is exposed as a Stateless Session EJB.
All calls to the service must be made via the local interface of the
corresponding stateless session EJB.
When the service is invoked within a client's transactional context,
it is necessary to store the required state across multiple calls
to the stateless session EJB. Clients can achieve this by obtaining
an handle to the service via a call to the MetadataService.open()
method and then passing it in every subsequent method calls.
Finally, clients must call the MetadataService.close(oracle.as.scheduler.MetadataServiceHandle)
method
to close the handle.
The handle stores the necessary state to support transactional boundary
across multiple method calls. The implementation of MetadataServiceHandle
interface depends upon the implementation of the MetadataService
interface.
-
Method Summary
-
Method Details
-
getLocale
Locale getLocale()Retrieve the locale info associated with this session.
-