/** {@inheritDoc} */
 @Override
 public int hashCode() {
   int hashCode = VERSION;
   for (ClusterStatus cs : status) {
     hashCode += cs.hashCode();
   }
   return hashCode;
 }