@@ -1043,7 +1043,7 @@ private JsonNode deserialize(String input, InputFormat inputFormat) {
10431043 *
10441044 * @return the validation result
10451045 */
1046- public ValidationResult walk (ExecutionContext executionContext , JsonNode node , boolean validate ,
1046+ public Result walk (ExecutionContext executionContext , JsonNode node , boolean validate ,
10471047 ExecutionContextCustomizer executionCustomizer ) {
10481048 return walkAtNodeInternal (executionContext , node , node , atRoot (), validate , OutputFormat .RESULT ,
10491049 executionCustomizer );
@@ -1076,7 +1076,7 @@ public <T> T walk(ExecutionContext executionContext, JsonNode node, OutputFormat
10761076 *
10771077 * @return the validation result
10781078 */
1079- public ValidationResult walk (ExecutionContext executionContext , JsonNode node , boolean validate ,
1079+ public Result walk (ExecutionContext executionContext , JsonNode node , boolean validate ,
10801080 Consumer <ExecutionContext > executionCustomizer ) {
10811081 return walkAtNodeInternal (executionContext , node , node , atRoot (), validate , OutputFormat .RESULT ,
10821082 executionCustomizer );
@@ -1108,7 +1108,7 @@ public <T> T walk(ExecutionContext executionContext, JsonNode node, OutputFormat
11081108 *
11091109 * @return the validation result
11101110 */
1111- public ValidationResult walk (ExecutionContext executionContext , JsonNode node , boolean validate ) {
1111+ public Result walk (ExecutionContext executionContext , JsonNode node , boolean validate ) {
11121112 return walkAtNodeInternal (executionContext , node , node , atRoot (), validate , OutputFormat .RESULT ,
11131113 (ExecutionContextCustomizer ) null );
11141114 }
@@ -1122,7 +1122,7 @@ public ValidationResult walk(ExecutionContext executionContext, JsonNode node, b
11221122 * @param validate true to validate the input against the schema
11231123 * @return the validation result
11241124 */
1125- public ValidationResult walk (ExecutionContext executionContext , String input , InputFormat inputFormat ,
1125+ public Result walk (ExecutionContext executionContext , String input , InputFormat inputFormat ,
11261126 boolean validate ) {
11271127 JsonNode node = deserialize (input , inputFormat );
11281128 return walkAtNodeInternal (executionContext , node , node , atRoot (), validate , OutputFormat .RESULT ,
@@ -1157,7 +1157,7 @@ public <T> T walk(ExecutionContext executionContext, String input, InputFormat i
11571157 * @param executionCustomizer the customizer
11581158 * @return the validation result
11591159 */
1160- public ValidationResult walk (ExecutionContext executionContext , String input , InputFormat inputFormat ,
1160+ public Result walk (ExecutionContext executionContext , String input , InputFormat inputFormat ,
11611161 boolean validate , ExecutionContextCustomizer executionCustomizer ) {
11621162 JsonNode node = deserialize (input , inputFormat );
11631163 return walkAtNodeInternal (executionContext , node , node , atRoot (), validate , OutputFormat .RESULT , executionCustomizer );
@@ -1188,7 +1188,7 @@ public <T> T walk(ExecutionContext executionContext, String input, InputFormat i
11881188 * @param validate true to validate the input against the schema
11891189 * @return the validation result
11901190 */
1191- public ValidationResult walk (JsonNode node , boolean validate ) {
1191+ public Result walk (JsonNode node , boolean validate ) {
11921192 return walk (createExecutionContext (), node , validate );
11931193 }
11941194
@@ -1200,7 +1200,7 @@ public ValidationResult walk(JsonNode node, boolean validate) {
12001200 * @param executionCustomizer the customizer
12011201 * @return the validation result
12021202 */
1203- public ValidationResult walk (JsonNode node , boolean validate , ExecutionContextCustomizer executionCustomizer ) {
1203+ public Result walk (JsonNode node , boolean validate , ExecutionContextCustomizer executionCustomizer ) {
12041204 return walk (createExecutionContext (), node , validate , executionCustomizer );
12051205 }
12061206
@@ -1212,7 +1212,7 @@ public ValidationResult walk(JsonNode node, boolean validate, ExecutionContextCu
12121212 * @param executionCustomizer the customizer
12131213 * @return the validation result
12141214 */
1215- public ValidationResult walk (JsonNode node , boolean validate , Consumer <ExecutionContext > executionCustomizer ) {
1215+ public Result walk (JsonNode node , boolean validate , Consumer <ExecutionContext > executionCustomizer ) {
12161216 return walk (createExecutionContext (), node , validate , executionCustomizer );
12171217 }
12181218
@@ -1237,7 +1237,7 @@ public <T> T walk(JsonNode node, OutputFormat<T> outputFormat, boolean validate)
12371237 * @param validate true to validate the input against the schema
12381238 * @return the validation result
12391239 */
1240- public ValidationResult walk (String input , InputFormat inputFormat , boolean validate ) {
1240+ public Result walk (String input , InputFormat inputFormat , boolean validate ) {
12411241 return walk (createExecutionContext (), deserialize (input , inputFormat ), validate );
12421242 }
12431243
@@ -1250,7 +1250,7 @@ public ValidationResult walk(String input, InputFormat inputFormat, boolean vali
12501250 * @param executionCustomizer the customizer
12511251 * @return the validation result
12521252 */
1253- public ValidationResult walk (String input , InputFormat inputFormat , boolean validate ,
1253+ public Result walk (String input , InputFormat inputFormat , boolean validate ,
12541254 ExecutionContextCustomizer executionCustomizer ) {
12551255 return walk (createExecutionContext (), deserialize (input , inputFormat ), validate , executionCustomizer );
12561256 }
@@ -1264,7 +1264,7 @@ public ValidationResult walk(String input, InputFormat inputFormat, boolean vali
12641264 * @param executionCustomizer the customizer
12651265 * @return the validation result
12661266 */
1267- public ValidationResult walk (String input , InputFormat inputFormat , boolean validate ,
1267+ public Result walk (String input , InputFormat inputFormat , boolean validate ,
12681268 Consumer <ExecutionContext > executionCustomizer ) {
12691269 return walk (createExecutionContext (), deserialize (input , inputFormat ), validate , executionCustomizer );
12701270 }
@@ -1279,7 +1279,7 @@ public ValidationResult walk(String input, InputFormat inputFormat, boolean vali
12791279 * @param validate true to validate the input against the schema
12801280 * @return the validation result
12811281 */
1282- public ValidationResult walkAtNode (ExecutionContext executionContext , JsonNode node , JsonNode rootNode ,
1282+ public Result walkAtNode (ExecutionContext executionContext , JsonNode node , JsonNode rootNode ,
12831283 NodePath instanceLocation , boolean validate ) {
12841284 return walkAtNodeInternal (executionContext , node , rootNode , instanceLocation , validate , OutputFormat .RESULT ,
12851285 (ExecutionContextCustomizer ) null );
0 commit comments