}
}
this.type = configs.getString(config, "type", "byte[]");
if (type.equals("byte[]")) { // pass through byte[] to downstream morphline commands without conversion
this.byteArrayMapper = new ByteArrayValueMapper() {
@Override
public Collection map(byte[] input) {
return Collections.singletonList(input);
}
};