Class DefaultYamlSerializer<CLASS extends IBoundObject>
java.lang.Object
gov.nist.secauto.metaschema.databind.io.AbstractSerializer<CLASS>
gov.nist.secauto.metaschema.databind.io.json.DefaultJsonSerializer<CLASS>
gov.nist.secauto.metaschema.databind.io.yaml.DefaultYamlSerializer<CLASS>
- All Implemented Interfaces:
IConfiguration<SerializationFeature<?>>
,IMutableConfiguration<SerializationFeature<?>>
,ISerializer<CLASS>
-
Constructor Summary
ConstructorDescriptionDefaultYamlSerializer
(IBoundDefinitionModelAssembly definition) Construct a new YAML serializer that will generate YAML content based on data in the bound class identified by theclassBinding
. -
Method Summary
Modifier and TypeMethodDescription<V> V
get
(SerializationFeature<?> feature) protected IBindingContext
Retrieve the binding context associated with the serializer.protected IMutableConfiguration<SerializationFeature<?>>
Get the current configuration of the serializer/deserializer.protected IBoundDefinitionModelAssembly
Retrieve the bound class information associated with the assembly that the serializer/deserializer will write/read data from.boolean
isFeatureEnabled
(SerializationFeature<?> feature) protected com.fasterxml.jackson.core.JsonFactory
Constructs a new JSON factory.Methods inherited from class gov.nist.secauto.metaschema.databind.io.json.DefaultJsonSerializer
configurationChanged, resetFactory, serialize
Methods inherited from class gov.nist.secauto.metaschema.databind.io.AbstractSerializer
applyConfiguration, disableFeature, enableFeature, set
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface gov.nist.secauto.metaschema.core.configuration.IConfiguration
get, getFeatureValues, isFeatureEnabled
Methods inherited from interface gov.nist.secauto.metaschema.databind.io.ISerializer
serialize, serialize, serialize
-
Constructor Details
-
DefaultYamlSerializer
Construct a new YAML serializer that will generate YAML content based on data in the bound class identified by theclassBinding
.- Parameters:
definition
- the bound class information for the Java type this serializer is operating on
-
-
Method Details
-
newFactoryInstance
Description copied from class:DefaultJsonSerializer
Constructs a new JSON factory.Subclasses can override this method to create a JSON factory with a specific configuration.
- Overrides:
newFactoryInstance
in classDefaultJsonSerializer<CLASS extends IBoundObject>
- Returns:
- the factory
-
getBindingContext
Retrieve the binding context associated with the serializer.- Returns:
- the binding context
-
getDefinition
Retrieve the bound class information associated with the assembly that the serializer/deserializer will write/read data from.- Returns:
- the class binding for the Module assembly
-
getConfiguration
Get the current configuration of the serializer/deserializer.- Returns:
- the configuration
-
isFeatureEnabled
- Specified by:
isFeatureEnabled
in interfaceIConfiguration<T extends IConfigurationFeature<?>>
-
getFeatureValues
- Specified by:
getFeatureValues
in interfaceIConfiguration<T extends IConfigurationFeature<?>>
-
get
- Specified by:
get
in interfaceIConfiguration<T extends IConfigurationFeature<?>>
-