This quick fix prevent possible
NullPointerException
during chain methods or properties call. E.g.
domain?.getZone().getName()
replaces by
domain?.getZone()?.getName()