@@ -40,7 +40,7 @@ public class RecordVisitor
40
40
41
41
protected List <Schema .Field > _fields = new ArrayList <>();
42
42
43
- public RecordVisitor (SerializerProvider p , JavaType type , VisitorFormatWrapperImpl visitorWrapper )
43
+ public RecordVisitor (SerializationContext p , JavaType type , VisitorFormatWrapperImpl visitorWrapper )
44
44
{
45
45
super (p );
46
46
_type = type ;
@@ -66,9 +66,9 @@ public RecordVisitor(SerializerProvider p, JavaType type, VisitorFormatWrapperIm
66
66
} else if (subTypes != null && !subTypes .isEmpty ()) {
67
67
List <Schema > unionSchemas = new ArrayList <>();
68
68
for (NamedType subType : subTypes ) {
69
- ValueSerializer <?> ser = getProvider ().findValueSerializer (subType .getType ());
69
+ ValueSerializer <?> ser = getContext ().findValueSerializer (subType .getType ());
70
70
VisitorFormatWrapperImpl visitor = _visitorWrapper .createChildWrapper ();
71
- ser .acceptJsonFormatVisitor (visitor , getProvider ().getTypeFactory ().constructType (subType .getType ()));
71
+ ser .acceptJsonFormatVisitor (visitor , getContext ().getTypeFactory ().constructType (subType .getType ()));
72
72
unionSchemas .add (visitor .getAvroSchema ());
73
73
}
74
74
_avroSchema = Schema .createUnion (unionSchemas );
@@ -173,10 +173,10 @@ protected Schema.Field schemaFieldForWriter(BeanProperty prop, boolean optional)
173
173
// 2-Mar-2017, bryan: AvroEncode annotation expects to have the schema used directly
174
174
optional = optional && !(ser instanceof CustomEncodingSerializer ); // Don't modify schema
175
175
}
176
- final SerializerProvider prov = getProvider ();
176
+ final SerializationContext prov = getContext ();
177
177
if (ser == null ) {
178
178
if (prov == null ) {
179
- throw DatabindException .from (prov , "SerializerProvider missing for RecordVisitor" );
179
+ throw DatabindException .from (prov , "SerializationContext missing for RecordVisitor" );
180
180
}
181
181
ser = prov .findPrimaryPropertySerializer (prop .getType (), prop );
182
182
}
@@ -210,7 +210,7 @@ protected Schema.Field schemaFieldForWriter(BeanProperty prop, boolean optional)
210
210
if (meta != null ) {
211
211
field .addProp (meta .key (), meta .value ());
212
212
}
213
- List <PropertyName > aliases = prop .findAliases (getProvider ().getConfig ());
213
+ List <PropertyName > aliases = prop .findAliases (getContext ().getConfig ());
214
214
if (!aliases .isEmpty ()) {
215
215
for (PropertyName pn : aliases ) {
216
216
field .addAlias (pn .getSimpleName ());
0 commit comments