Class DbAclUnCheckedExceptionMapper
java.lang.Object
com.illumon.iris.db.v2.permissions.rs.BaseExceptionMapper<DbAclUncheckedException>
com.illumon.iris.db.v2.permissions.rs.exceptions.DbAclUnCheckedExceptionMapper
- All Implemented Interfaces:
io.deephaven.shadow.resteasy.javax.ws.rs.ext.ExceptionMapper<DbAclUncheckedException>
@Provider
public class DbAclUnCheckedExceptionMapper
extends BaseExceptionMapper<DbAclUncheckedException>
The
ExceptionMapper
for all DbAclUncheckedException
exceptions raised in the acl api. Subclass of BaseExceptionMapper
that helps populate
AuditEvent
with error information.-
Field Summary
Fields inherited from class com.illumon.iris.db.v2.permissions.rs.BaseExceptionMapper
request
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected String
getCommandName
(DbAclUncheckedException exception) The name of the command the request uri points to, if NPE or generic error would include the requestURIprotected String
getErrorDetails
(DbAclUncheckedException exception) Part of the error message that is logged, allows implementations to customize what can be includedprotected io.deephaven.shadow.resteasy.javax.ws.rs.core.Response.Status
getResponseStatus
(DbAclUncheckedException exception) Implementations should return the appropriate Response Status to build and propagate in theResponse
protected void
updateAuditEventBuilder
(io.deephaven.enterprise.auth.audit.AuditEventBuilder aeBuilder, DbAclUncheckedException exception) The implementations can add customization detail of what to log for inAuditEvent
Methods inherited from class com.illumon.iris.db.v2.permissions.rs.BaseExceptionMapper
handleShadowExceptionMappers, toResponse
-
Constructor Details
-
DbAclUnCheckedExceptionMapper
public DbAclUnCheckedExceptionMapper()
-
-
Method Details
-
getCommandName
Description copied from class:BaseExceptionMapper
The name of the command the request uri points to, if NPE or generic error would include the requestURI- Specified by:
getCommandName
in classBaseExceptionMapper<DbAclUncheckedException>
- Parameters:
exception
- The exception that has occurred- Returns:
- name of the command the request uri points to
-
getErrorDetails
Description copied from class:BaseExceptionMapper
Part of the error message that is logged, allows implementations to customize what can be included- Specified by:
getErrorDetails
in classBaseExceptionMapper<DbAclUncheckedException>
- Parameters:
exception
- The exception that has occurred- Returns:
- string with customized details about the specific error
-
getResponseStatus
protected io.deephaven.shadow.resteasy.javax.ws.rs.core.Response.Status getResponseStatus(@NotNull DbAclUncheckedException exception) Description copied from class:BaseExceptionMapper
Implementations should return the appropriate Response Status to build and propagate in theResponse
- Specified by:
getResponseStatus
in classBaseExceptionMapper<DbAclUncheckedException>
- Parameters:
exception
- The thrown exception used to extract the response status- Returns:
- The Response Status for the exception
-
updateAuditEventBuilder
protected void updateAuditEventBuilder(@NotNull io.deephaven.enterprise.auth.audit.AuditEventBuilder aeBuilder, @NotNull DbAclUncheckedException exception) Description copied from class:BaseExceptionMapper
The implementations can add customization detail of what to log for inAuditEvent
- Specified by:
updateAuditEventBuilder
in classBaseExceptionMapper<DbAclUncheckedException>
- Parameters:
aeBuilder
- The AuditEventBuilder instance being used in building the AuditEvent to logexception
- The thrown exception
-