public boolean isSameIgnoringKey(AcDomesticCandidateRouteOffer e) {
   if (!JwUtility.isEqual(getDomesticCandidateRouteId(), e.getDomesticCandidateRouteId()))
     return false;
   if (!JwUtility.isEqual(getLastModifiedUtcTs(), e.getLastModifiedUtcTs())) return false;
   if (!JwUtility.isEqual(getSerialNumber(), e.getSerialNumber())) return false;
   if (!JwUtility.isEqual(getStatus(), e.getStatus())) return false;
   if (!JwUtility.isEqual(getType(), e.getType())) return false;
   if (!JwUtility.isEqual(getAcknowledge(), e.getAcknowledge())) return false;
   if (!JwUtility.isEqual(getFrequency(), e.getFrequency())) return false;
   if (!JwUtility.isEqual(getCapacity(), e.getCapacity())) return false;
   if (!JwUtility.isEqual(
       getParentDomesticCandidateRouteOfferId(), e.getParentDomesticCandidateRouteOfferId()))
     return false;
   if (!JwUtility.isEqual(
       getChildDomesticCandidateRouteOfferId(), e.getChildDomesticCandidateRouteOfferId()))
     return false;
   if (!JwUtility.isEqual(getError(), e.getError())) return false;
   return true;
 }