Package org.forgerock.api.jackson
Class CrestObjectSchema
java.lang.Object
com.fasterxml.jackson.module.jsonSchema.JsonSchema
com.fasterxml.jackson.module.jsonSchema.types.SimpleTypeSchema
com.fasterxml.jackson.module.jsonSchema.types.ContainerTypeSchema
com.fasterxml.jackson.module.jsonSchema.types.ObjectSchema
org.forgerock.api.jackson.CrestObjectSchema
- All Implemented Interfaces:
WithExampleSchema<Map<String,
Object>>
public class CrestObjectSchema
extends com.fasterxml.jackson.module.jsonSchema.types.ObjectSchema
implements WithExampleSchema<Map<String,Object>>
An extension to the Jackson
ObjectSchema
that includes the custom CREST JSON Schema attributes.-
Nested Class Summary
Nested classes/interfaces inherited from class com.fasterxml.jackson.module.jsonSchema.types.ObjectSchema
com.fasterxml.jackson.module.jsonSchema.types.ObjectSchema.AdditionalProperties, com.fasterxml.jackson.module.jsonSchema.types.ObjectSchema.Dependency, com.fasterxml.jackson.module.jsonSchema.types.ObjectSchema.NoAdditionalProperties, com.fasterxml.jackson.module.jsonSchema.types.ObjectSchema.SchemaAdditionalProperties, com.fasterxml.jackson.module.jsonSchema.types.ObjectSchema.SchemaDependency, com.fasterxml.jackson.module.jsonSchema.types.ObjectSchema.SimpleDependency
-
Field Summary
Fields inherited from class com.fasterxml.jackson.module.jsonSchema.types.ContainerTypeSchema
enums, oneOf
Fields inherited from class com.fasterxml.jackson.module.jsonSchema.types.SimpleTypeSchema
defaultdefault, links, pathStart, title
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGetsexample
JSON Schema field.Gets read-only property.void
setErrorOnWritePolicyFailure
(Boolean errorOnWritePolicyFailure) void
setExample
(String example) Setsexample
JSON Schema field.void
setPropertyOrder
(Integer order) void
setReadPolicy
(ReadPolicy readPolicy) void
setRequiredFields
(Set<String> requiredFields) void
setReturnOnDemand
(Boolean returnOnDemand) void
setWritePolicy
(WritePolicy policy) void
Methods inherited from class com.fasterxml.jackson.module.jsonSchema.types.ObjectSchema
_equals, addSchemaDependency, addSimpleDependency, asObjectSchema, equals, getAdditionalProperties, getDependencies, getPatternProperties, getProperties, getType, isObjectSchema, putOptionalProperty, putOptionalProperty, putPatternProperty, putProperty, putProperty, rejectAdditionalProperties, setAdditionalProperties, setDependencies, setPatternProperties, setProperties
Methods inherited from class com.fasterxml.jackson.module.jsonSchema.types.ContainerTypeSchema
_equals, asContainerSchema, asContainerTypeSchema, getEnums, getOneOf, isContainerTypeSchema, setEnums, setOneOf
Methods inherited from class com.fasterxml.jackson.module.jsonSchema.types.SimpleTypeSchema
_equals, asSimpleTypeSchema, getDefault, getLinks, getPathStart, getTitle, isSimpleTypeSchema, setDefault, setLinks, setPathStart, setTitle
Methods inherited from class com.fasterxml.jackson.module.jsonSchema.JsonSchema
_equals, arraysEqual, asAnySchema, asArraySchema, asBooleanSchema, asIntegerSchema, asNullSchema, asNumberSchema, asStringSchema, asUnionTypeSchema, asValueSchemaSchema, asValueTypeSchema, enrichWithBeanProperty, equals, get$ref, get$schema, getDescription, getDisallow, getExtends, getId, getRequired, isAnySchema, isArraySchema, isBooleanSchema, isIntegerSchema, isNullSchema, isNumberSchema, isStringSchema, isUnionTypeSchema, isValueTypeSchema, minimalForFormat, set$ref, set$schema, setDescription, setDisallow, setExtends, setId, setReadonly, setRequired
-
Constructor Details
-
CrestObjectSchema
public CrestObjectSchema()
-
-
Method Details
-
getWritePolicy
-
setWritePolicy
-
getReadPolicy
-
setReadPolicy
-
getErrorOnWritePolicyFailure
-
setErrorOnWritePolicyFailure
-
getReturnOnDemand
-
setReturnOnDemand
-
getPropertyOrder
-
setPropertyOrder
-
validate
- Throws:
javax.validation.ValidationException
-
getReadonly
Gets read-only property. This method overrides the superclass' definition of "readOnly" being all lower-case, via theJsonProperty
annotation.- Overrides:
getReadonly
in classcom.fasterxml.jackson.module.jsonSchema.JsonSchema
- Returns:
true
if property is read-only, otherwisefalse
ornull
-
getRequiredFields
-
setRequiredFields
-
getExample
Description copied from interface:WithExampleSchema
Getsexample
JSON Schema field.- Specified by:
getExample
in interfaceWithExampleSchema<Map<String,
Object>> - Returns:
- The example value, or null if not defined.
-
setExample
Description copied from interface:WithExampleSchema
Setsexample
JSON Schema field.- Specified by:
setExample
in interfaceWithExampleSchema<Map<String,
Object>> - Parameters:
example
- The example value.- Throws:
IOException
- When the type of schema cannot be parsed from the String value.
-