I have kotlin project where I'm using Jaxb generated src files from xsd. The problem with these generated sources is that they have nullable fields but IDEA does not know about it. It can lead to bugs in production. To fix it we can add @Nullable annotation to all getters in generated srs-es.
How can we do it gracefully?