public class InMemorySchemaLibrary extends Object implements SchemaLibrary
SchemaLibrary.MismatchedTypeProblem, SchemaLibrary.Problem, SchemaLibrary.ProblemType, SchemaLibrary.Results
Constructor and Description |
---|
InMemorySchemaLibrary(String name) |
Modifier and Type | Method and Description |
---|---|
Document |
convertValues(Document document,
SchemaLibrary.Results results)
Look for fields within the document (including nested documents) whose values are not of the expected type for the given
schema, but whose values can be converted into the expected type.
|
Document |
convertValues(Document document,
String schemaUri)
Look for fields within the document (including nested documents) whose values are not of the expected type for the given
schema, but whose values can be converted into the expected type.
|
Document |
get(String key)
Get the document with the supplied key.
|
String |
getName()
Get the name of this library.
|
Document |
put(String key,
Document document)
Store the supplied document at the given key.
|
Document |
putIfAbsent(String key,
Document document)
Store the supplied document at the given key.
|
Document |
remove(String key)
Remove the existing document at the given key.
|
Document |
replace(String key,
Document document)
Replace the existing document at the given key with the document that is supplied.
|
SchemaLibrary.Results |
validate(Document document,
String schemaUri)
Validate the supplied document against the JSON Schema with the supplied URI.
|
public InMemorySchemaLibrary(String name)
public String getName()
DocumentLibrary
getName
in interface DocumentLibrary
public Document get(String key)
DocumentLibrary
get
in interface DocumentLibrary
key
- the key or identifier for the documentpublic Document put(String key, Document document)
DocumentLibrary
put
in interface DocumentLibrary
key
- the key or identifier for the documentdocument
- the document that is to be storedpublic Document putIfAbsent(String key, Document document)
DocumentLibrary
putIfAbsent
in interface DocumentLibrary
key
- the key or identifier for the documentdocument
- the document that is to be storedpublic Document replace(String key, Document document)
DocumentLibrary
replace
in interface DocumentLibrary
key
- the key or identifier for the documentdocument
- the document that is to replace the existing documentpublic Document remove(String key)
DocumentLibrary
remove
in interface DocumentLibrary
key
- the key or identifier for the documentpublic SchemaLibrary.Results validate(Document document, String schemaUri)
SchemaLibrary
validate
in interface SchemaLibrary
document
- the document to be validated; may not be nullschemaUri
- the URI of the JSON Schema that should be used to validate the document; may not be nullpublic Document convertValues(Document document, SchemaLibrary.Results results)
SchemaLibrary
This is often useful when the results from SchemaLibrary.validate(Document, String)
contain only
mismatched type errors
. In such a case, the document can be converted and the
resulting document will likely satisfy the schema.
convertValues
in interface SchemaLibrary
document
- the document to be validated; may not be nullresults
- the results from the SchemaLibrary.validate(Document, String)
call; may not be nulldocument
if thepublic Document convertValues(Document document, String schemaUri)
SchemaLibrary
This method is similar to SchemaLibrary.convertValues(Document, Results)
, except that this method automatically runs a JSON
Schema validation to obtain the results. If you've already validated
the document, then
instead of calling this method (which would validate a second time) try calling SchemaLibrary.convertValues(Document, Results)
.
convertValues
in interface SchemaLibrary
document
- the document to be validated; may not be nullschemaUri
- the URI of the JSON Schema that should be used to validate the document; may not be nulldocument
if theCopyright © 2008–2016 JBoss, a division of Red Hat. All rights reserved.