Package org.apache.druid.server.http
Class ServletResourceUtils
java.lang.Object
org.apache.druid.server.http.ServletResourceUtils
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic javax.ws.rs.core.Responsestatic <T> javax.ws.rs.core.ResponsebuildReadResponse(Supplier<T> readOperation) static javax.ws.rs.core.ResponsebuildUpdateResponse(Supplier<Boolean> updateOperation) Converts String errorMsg into a Map so that it produces valid json on serialization into response.Sanitize the exception as a map of "error" to information about the exception.
-
Constructor Details
-
ServletResourceUtils
public ServletResourceUtils()
-
-
Method Details
-
sanitizeException
Sanitize the exception as a map of "error" to information about the exception. This method explicitly suppresses the stack trace and any other logging. Any logging should be handled by the caller.- Parameters:
t- The exception to sanitize- Returns:
- An immutable Map with a single entry which maps "error" to information about the error suitable for passing as an entity in a servlet error response.
-
jsonize
Converts String errorMsg into a Map so that it produces valid json on serialization into response. -
buildErrorResponseFrom
-
buildUpdateResponse
-
buildReadResponse
-