com.scarabsoft.jrest.converter.InputStreamConverter Maven / Gradle / Ivy
package com.scarabsoft.jrest.converter;
import java.io.IOException;
import java.io.InputStream;
import java.util.Collection;
public final class InputStreamConverter implements Converter {
@Override
public InputStream convert(InputStream stream) throws IOException { return stream; }
@Override
public Collection convertCollection(InputStream inputStream, Class extends Collection> collectionClazz) throws IOException {
throw new RuntimeException("not supported");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy