de.datexis.encoder.serialization.SerializationProvider 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.OutputStream;
public interface SerializationProvider {
void serialize(I input, OutputStream outputStream) throws IOException;
String getContentType();
}