assertNotNull(content);
ByteArrayInputStream bais = new ByteArrayInputStream(content.getContent());
ObjectInputStream ois = new ObjectInputStream(bais);
Map<String, Object> deserializedContent = (Map<String, Object>) ois.readObject();
Call retrivedCall = (Call) deserializedContent.get("call");
//I shoudl call the tracking component here and register the new emerency
Emergency emergency = new Emergency();
// String emergencyId = ContextTrackingServiceImpl.getInstance().newEmergencyId();