All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladkrava.converter.XmlToAvroConverter Maven / Gradle / Ivy

Go to download

Enables conversion of Apache Avro object into popular data formats: JSON, XML, etc

There is a newer version: 1.0.1
Show newest version
package com.vladkrava.converter;

import org.apache.avro.specific.SpecificRecordBase;

import com.vladkrava.converter.serialization.AvroDeserializer;

/**
 * @author Vlad Krava - [email protected]
 * @since 0.1-SNAPSHOT
 */
public class XmlToAvroConverter extends AvroDeserializer implements TargetConverter {
    @Override
    public T convert(final String s, final Class aClass) {
        throw new UnsupportedOperationException("This operation in not supported yet.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy