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

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

package com.scarabsoft.jrest.converter;

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

import java.lang.reflect.Type;

public class LazyConverterFactory implements ConverterFactory {

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

	@Override
	public BodyConverter getBodyConverter() {
		return null;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy