Interface WarningsHandler
-
public interface WarningsHandlerCalled if there are warnings to determine if those warnings should fail the request.
-
-
Field Summary
Fields Modifier and Type Field Description static WarningsHandlerPERMISSIVEThe permissive warnings handler.static WarningsHandlerSTRICTThe strict warnings handler.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanwarningsShouldFailRequest(java.util.List<java.lang.String> warnings)Determines whether the given list of warnings should fail the request.
-
-
-
Field Detail
-
PERMISSIVE
static final WarningsHandler PERMISSIVE
The permissive warnings handler. Warnings will not fail the request.
-
STRICT
static final WarningsHandler STRICT
The strict warnings handler. Warnings will fail the request.
-
-