in src/main/java/com/amazonaws/eclipse/simpleworkflow/asynchrony/common/PrimitiveTypeHelper.java [46:52]
public static String getWrapper(String primitive) {
String result = primitiveToWrapper.get(primitive);
if (result == null) {
throw new IllegalArgumentException(primitive);
}
return result;
}