use of org.opendaylight.controller.md.sal.common.impl.util.compat.DataNormalizer in project controller by opendaylight.
the class BindingToNormalizedNodeCodec method onGlobalContextUpdated.
@Override
public void onGlobalContextUpdated(final SchemaContext schemaContext) {
this.legacyToNormalized = new DataNormalizer(schemaContext);
final BindingRuntimeContext runtimeContext = BindingRuntimeContext.create(this.classLoadingStrategy, schemaContext);
this.codecRegistry.onBindingRuntimeContextUpdated(runtimeContext);
this.futureSchema.onRuntimeContextUpdated(runtimeContext);
}
Aggregations