fixed converter
This commit is contained in:
parent
7c341ef830
commit
cd1b3274a7
1 changed files with 5 additions and 5 deletions
|
@ -10,6 +10,7 @@ package ch.ethz.seb.sebserver.gbl.api;
|
|||
|
||||
import java.nio.CharBuffer;
|
||||
import java.util.Arrays;
|
||||
import java.util.Base64;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
|
@ -95,20 +96,19 @@ public class POSTMapper {
|
|||
public byte[] getBinary(final String name) {
|
||||
final String value = getString(name);
|
||||
if (value == null || value.length() <= 0) {
|
||||
return null;
|
||||
return new byte[0];
|
||||
}
|
||||
|
||||
Utils.toByteArray(value);
|
||||
return null;
|
||||
return Utils.toByteArray(value);
|
||||
}
|
||||
|
||||
public byte[] getBinaryFromBase64(final String name) {
|
||||
final String value = getString(name);
|
||||
if (value == null || value.length() <= 0) {
|
||||
return null;
|
||||
return new byte[0];
|
||||
}
|
||||
|
||||
return null;
|
||||
return Base64.getDecoder().decode(value);
|
||||
}
|
||||
|
||||
public CharSequence getCharSequence(final String name) {
|
||||
|
|
Loading…
Reference in a new issue