Package oracle.as.scheduler.request
Class ContentFactory
java.lang.Object
oracle.as.scheduler.request.ContentFactory
Factory for request logging and request output.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic LogContentHelper
getLogContentHelper
(long requestId, RuntimeServiceHandle rsh) Gets the helper for creating log content for requests Each operation will use the user-provided handle, and it is the caller's responsibility to commit or rollback the transaction.static OutputContentHelper
getOutputContentHelper
(long requestId) Gets the helper for creating output content for requests with Standard or Extended request mode.static OutputContentHelper
getOutputContentHelper
(long requestId, RuntimeServiceHandle rsh) Gets the helper for creating output content for requests with Standard or Extended request mode.static RequestLogger
getRequestLogger
(long requestId) Gets the request logger for the specified request, which logs to the ESS content store.static RequestOutput
getRequestOutput
(RuntimeServiceHandle rsh, long requestId, ContentType contentType, String contentName) Retrieves the request output and creates the output content in the ESS content store for the request.
-
Field Details
-
DEFAULT_LOG_LEVEL
Default log level for request loggers.
-
-
Constructor Details
-
ContentFactory
public ContentFactory()
-
-
Method Details
-
getRequestLogger
public static RequestLogger getRequestLogger(long requestId) throws RequestNotFoundException, RuntimeServiceException Gets the request logger for the specified request, which logs to the ESS content store. The request logger uses the logging level specified bySystemProperty.REQUEST_LOG_LEVEL
if defined, or else the default level of "INFO".The name of the content in the ESS content store is
requestId.log
.- Parameters:
requestId
- request id to use.- Throws:
RequestNotFoundException
- if the request does not exist.RuntimeServiceException
- in case of any error creating or accessing the log content.
-
getRequestOutput
public static RequestOutput getRequestOutput(RuntimeServiceHandle rsh, long requestId, ContentType contentType, String contentName) throws RequestNotFoundException, RuntimeServiceException, ValidationException Retrieves the request output and creates the output content in the ESS content store for the request.- Parameters:
rsh
- runtime service handle for creating output content.requestId
- request id to use.contentType
- type of output content to create.contentName
- name of the output content- Throws:
RequestNotFoundException
- if the request does not exist.RuntimeServiceException
- in case of any error creating or accessing the output content.ValidationException
- if the output content already exists and its content type does not match the given content type.
-
getOutputContentHelper
public static OutputContentHelper getOutputContentHelper(long requestId) throws RequestNotFoundException, RuntimeServiceException, ValidationException Gets the helper for creating output content for requests with Standard or Extended request mode.- Parameters:
requestId
- id of the request.- Returns:
- Output content helper.
- Throws:
RequestNotFoundException
- if the request does not exist.RuntimeServiceException
- if error accessing the runtime store.ValidationException
- if the request mode is neither Standard nor Extended.
-
getOutputContentHelper
public static OutputContentHelper getOutputContentHelper(long requestId, RuntimeServiceHandle rsh) throws RequestNotFoundException, RuntimeServiceException, ValidationException Gets the helper for creating output content for requests with Standard or Extended request mode. Each operation will use the user-provided handle, and it is the caller's responsibility to commit or rollback the transaction.- Parameters:
requestId
- id of the request.rsh
- runtime service handle.- Returns:
- Output content helper.
- Throws:
RequestNotFoundException
- if the request does not exist.RuntimeServiceException
- if error accessing the runtime store.ValidationException
- if the request mode is neither Standard nor Extended.
-
getLogContentHelper
public static LogContentHelper getLogContentHelper(long requestId, RuntimeServiceHandle rsh) throws RequestNotFoundException, RuntimeServiceException, ValidationException Gets the helper for creating log content for requests Each operation will use the user-provided handle, and it is the caller's responsibility to commit or rollback the transaction.- Parameters:
requestId
- id of the request.rsh
- runtime service handle.- Returns:
- log content helper.
- Throws:
RequestNotFoundException
- if the request does not exist.RuntimeServiceException
- if error accessing the runtime store.ValidationException
- if the request mode is neither Standard nor Extended.
-