Package cz.o2.proxima.scheme.confluent
Class SchemaRegistrySerializerFactory
- java.lang.Object
 - 
- cz.o2.proxima.scheme.confluent.SchemaRegistrySerializerFactory
 
 
- 
- All Implemented Interfaces:
 ValueSerializerFactory,java.io.Serializable
@AutoService(ValueSerializerFactory.class) public class SchemaRegistrySerializerFactory extends java.lang.Object implements ValueSerializerFactory
- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description SchemaRegistrySerializerFactory() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAcceptableScheme()Retrieve scheme that of URI that this parser accepts.java.lang.StringgetClassName(java.net.URI scheme)Retrieve class type for given scheme.<T> ValueSerializer<T>getValueSerializer(java.net.URI scheme)GetValueSerializerfor given scheme.- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface cz.o2.proxima.core.scheme.ValueSerializerFactory
canProvideTransactionSerializer, createTransactionSerializerSchemeProvider 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getAcceptableScheme
public java.lang.String getAcceptableScheme()
Description copied from interface:ValueSerializerFactoryRetrieve scheme that of URI that this parser accepts.- Specified by:
 getAcceptableSchemein interfaceValueSerializerFactory- Returns:
 - name of acceptable scheme of this factory
 
 
- 
getValueSerializer
public <T> ValueSerializer<T> getValueSerializer(java.net.URI scheme)
Description copied from interface:ValueSerializerFactoryGetValueSerializerfor given scheme.- Specified by:
 getValueSerializerin interfaceValueSerializerFactory- Type Parameters:
 T- type of deserialized data- Parameters:
 scheme- URI specifier of this data type- Returns:
 ValueSerializerfor the scheme
 
- 
getClassName
public java.lang.String getClassName(java.net.URI scheme)
Description copied from interface:ValueSerializerFactoryRetrieve class type for given scheme.- Specified by:
 getClassNamein interfaceValueSerializerFactory- Parameters:
 scheme- URI specifier of this data type- Returns:
 - full name of class
 
 
 - 
 
 -