de.datexis.encoder.serialization.DeserializationProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of texoo-encoder-api Show documentation
Show all versions of texoo-encoder-api Show documentation
TeXoo REST encoder interface
package de.datexis.encoder.serialization;
import java.io.IOException;
import java.io.InputStream;
public interface DeserializationProvider {
O deserialize(InputStream inputStream, Class classOfO) throws IOException;
String getAcceptType();
}