Package org.flywaydb.core.api.callback
Interface Warning
-
public interface WarningA warning that occurred while executing a statement.Flyway Teams only
-
-
Method Summary
Modifier and Type Method Description intgetCode()java.lang.StringgetMessage()java.lang.StringgetState()booleanisHandled()Checks whether this warning has already been handled.voidsetHandled(boolean handled)Sets whether this warning has already been handled.
-
-
-
Method Detail
-
getCode
int getCode()
- Returns:
- The warning code.
-
getState
java.lang.String getState()
- Returns:
- The warning state.
-
getMessage
java.lang.String getMessage()
- Returns:
- The warning message.
-
isHandled
boolean isHandled()
Checks whether this warning has already been handled.- Returns:
truetrueif this warning has already be handled orfalseif it should flow via the default warning handler.
-
setHandled
void setHandled(boolean handled)
Sets whether this warning has already been handled.- Parameters:
handled-trueif this warning has already be handled orfalseif it should flow via the default warning handler.
-
-