Skip to content

Commit 3810f30

Browse files
authored
fixes #788 update JsonSchema to fix the javadoc issues (#789)
1 parent aa9f164 commit 3810f30

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/main/java/com/networknt/schema/JsonSchema.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ static JsonSchema from(ValidationContext validationContext, String schemaPath, U
6464
}
6565

6666
/**
67+
* @param validationContext validation context
68+
* @param baseUri base URL
69+
* @param schemaNode schema node
6770
* @deprecated Use {@code JsonSchemaFactory#create(ValidationContext, String, JsonNode, JsonSchema)}
6871
*/
6972
@Deprecated
@@ -72,6 +75,11 @@ public JsonSchema(ValidationContext validationContext, URI baseUri, JsonNode sch
7275
}
7376

7477
/**
78+
* @param validationContext validation context
79+
* @param schemaPath schema path
80+
* @param currentUri current URI
81+
* @param schemaNode schema node
82+
* @param parent parent schema
7583
* @deprecated Use {@code JsonSchemaFactory#create(ValidationContext, String, JsonNode, JsonSchema)}
7684
*/
7785
@Deprecated
@@ -81,6 +89,10 @@ public JsonSchema(ValidationContext validationContext, String schemaPath, URI cu
8189
}
8290

8391
/**
92+
* @param validationContext validation context
93+
* @param baseUri base URI
94+
* @param schemaNode schema node
95+
* @param suppressSubSchemaRetrieval suppress sub schema retrieval
8496
* @deprecated Use {@code JsonSchemaFactory#create(ValidationContext, String, JsonNode, JsonSchema)}
8597
*/
8698
@Deprecated

0 commit comments

Comments
 (0)