Interface JPAServletContext
- All Known Implementing Classes:
JESTContext
public interface JPAServletContext
An operating context provides a
persistence context
and utility functions within
which all JEST commands execute.- Author:
- Pinaki Poddar
-
Method Summary
Modifier and TypeMethodDescriptionGet the persistence context of the operational context.Get the persistence unit name.javax.servlet.http.HttpServletRequest
Get the HTTP Request.Get the requested URI.javax.servlet.http.HttpServletResponse
Get the HTTP Response.void
Logging message.Resolve the given alias to meta-data of the persistent type.
-
Method Details
-
getPersistenceContext
OpenJPAEntityManager getPersistenceContext()Get the persistence context of the operational context. -
getPersistenceUnitName
String getPersistenceUnitName()Get the persistence unit name. -
getRequest
javax.servlet.http.HttpServletRequest getRequest()Get the HTTP Request. -
getResponse
javax.servlet.http.HttpServletResponse getResponse()Get the HTTP Response. -
getRequestURI
String getRequestURI()Get the requested URI. -
resolve
Resolve the given alias to meta-data of the persistent type.- Parameters:
alias
- a moniker for the Java type. It can be fully qualified type name or entity name or simple name of the actual persistent Java class.- Returns:
- meta-data for the given name.
- Throws:
raises
- runtime exception if the given name can not be identified to a persistent Java type.
-
log
Logging message.- Parameters:
level
- OpenJPA definedlog levels
. Invalid levels will print the message on console.message
- a printable message.
-