com.netflix.discovery.converters.wrappers.DecoderWrapper Maven / Gradle / Ivy
package com.netflix.discovery.converters.wrappers;
import java.io.IOException;
import java.io.InputStream;
/**
* @author David Liu
*/
public interface DecoderWrapper extends CodecWrapperBase {
T decode(String textValue, Class type) throws IOException;
T decode(InputStream inputStream, Class type) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy