Description
When a non-admin user attempts to update a security-zone with null description, the API fails with NPE due to the following line in SecurityZoneREST.java:
} else if (!securityZone.getDescription().equals(existingSecurityZone.getDescription())) {
This should be updated to use Objects.equals() to avoid NPE.