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

com.scarabsoft.jrest.converter.StringConverterFactory Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.scarabsoft.jrest.converter;

import com.scarabsoft.jrest.converter.body.BodyConverter;
import com.scarabsoft.jrest.converter.body.StringBodyConverter;

import java.lang.reflect.Type;

public class StringConverterFactory implements ConverterFactory {

    @Override
    public Converter getConverter(Type type) {
        return new StringConverter();
    }

    @Override
    public BodyConverter getBodyConverter() {
        return new StringBodyConverter();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy