118119120121122123124125126127128129
InputStream is = event.getInputStream(); is.mark(0); int bodyType = is.read(); if (bodyType == BODY_TYPE_OBJECT) { ModelInputStream mis = new ModelInputStream(is); object = mis.readModel(); } is.reset(); return object; } catch (Exception ex) {