Interface ScenarioReadResult
-
@OpenApiAll public interface ScenarioReadResult
Contains success flag and possible errors of scenario read result.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<Element,java.lang.String>
getFailedElements()
Gets failed elements with their errors.boolean
isSuccess()
Gets reading success result flag.
-
-
-
Method Detail
-
isSuccess
boolean isSuccess()
Gets reading success result flag.- Returns:
- reading success result flag.
-
getFailedElements
java.util.Map<Element,java.lang.String> getFailedElements()
Gets failed elements with their errors.- Returns:
- failed elements with their errors.
-
-