|
19 | 19 | import com.fasterxml.jackson.databind.JsonNode; |
20 | 20 | import com.networknt.schema.i18n.DefaultMessageSource; |
21 | 21 | import com.networknt.schema.i18n.MessageSource; |
| 22 | +import com.networknt.schema.keyword.KeywordValidator; |
22 | 23 | import com.networknt.schema.regex.ECMAScriptRegularExpressionFactory; |
23 | 24 | import com.networknt.schema.regex.JDKRegularExpressionFactory; |
24 | 25 | import com.networknt.schema.regex.RegularExpressionFactory; |
@@ -325,7 +326,7 @@ public Boolean getFormatAssertionsEnabled() { |
325 | 326 | return formatAssertionsEnabled; |
326 | 327 | } |
327 | 328 |
|
328 | | - WalkListenerRunner getItemWalkListenerRunner() { |
| 329 | + public WalkListenerRunner getItemWalkListenerRunner() { |
329 | 330 | return this.itemWalkListenerRunner; |
330 | 331 | } |
331 | 332 |
|
@@ -384,7 +385,7 @@ public int getPreloadJsonSchemaRefMaxNestingDepth() { |
384 | 385 | return preloadJsonSchemaRefMaxNestingDepth; |
385 | 386 | } |
386 | 387 |
|
387 | | - WalkListenerRunner getPropertyWalkListenerRunner() { |
| 388 | + public WalkListenerRunner getPropertyWalkListenerRunner() { |
388 | 389 | return this.propertyWalkListenerRunner; |
389 | 390 | } |
390 | 391 |
|
@@ -510,7 +511,7 @@ public boolean isReadOnly() { |
510 | 511 | return null != this.readOnly && this.readOnly; |
511 | 512 | } |
512 | 513 |
|
513 | | - Boolean getReadOnly() { |
| 514 | + public Boolean getReadOnly() { |
514 | 515 | return this.readOnly; |
515 | 516 | } |
516 | 517 |
|
@@ -552,7 +553,7 @@ public boolean isWriteOnly() { |
552 | 553 | return null != this.writeOnly && this.writeOnly; |
553 | 554 | } |
554 | 555 |
|
555 | | - Boolean getWriteOnly() { |
| 556 | + public Boolean getWriteOnly() { |
556 | 557 | return this.writeOnly; |
557 | 558 | } |
558 | 559 |
|
|
0 commit comments