It would be good if Pippo can render binary type using byte[]. I'm intend to use for rendering Protobuf. Currently is impossible because ContentTypeEngine.toString(Object object) only allow String type.
public interface ContentTypeEngine {
void init(Application application);
String getContentType();
String toString(Object object);
<T> T fromString(String content, Class<T> classOfT);
}
It would be good if Pippo can render binary type using
byte[]. I'm intend to use for rendering Protobuf. Currently is impossible becauseContentTypeEngine.toString(Object object)only allow String type.