forked from jooby-project/jooby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessageEncoder.java
More file actions
40 lines (34 loc) · 1.08 KB
/
MessageEncoder.java
File metadata and controls
40 lines (34 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* Jooby https://jooby.io
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
* Copyright 2014 Edgar Espina
*/
package io.jooby;
import io.jooby.exception.NotAcceptableException;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.nio.charset.StandardCharsets;
/**
* Render a route output as byte array.
*
* @author edgar
* @since 2.0.0
*/
public interface MessageEncoder {
/** To string renderer. */
MessageEncoder TO_STRING = (ctx, value) -> {
if (ctx.accept(ctx.getResponseType())) {
return value.toString().getBytes(StandardCharsets.UTF_8);
}
throw new NotAcceptableException(ctx.header("Accept").valueOrNull());
};
/**
* MessageEncoder a value into a byte array or <code>null</code> if given object isn't supported it.
*
* @param ctx Web context.
* @param value Value to render.
* @return Value as byte array or <code>null</code> if given object isn't supported it.
* @throws Exception If something goes wrong.
*/
@Nullable byte[] encode(@Nonnull Context ctx, @Nonnull Object value) throws Exception;
}