@Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; ModifySubscriptionRequest other = (ModifySubscriptionRequest) obj; if (RequestHeader == null) { if (other.RequestHeader != null) return false; } else if (!RequestHeader.equals(other.RequestHeader)) return false; if (SubscriptionId == null) { if (other.SubscriptionId != null) return false; } else if (!SubscriptionId.equals(other.SubscriptionId)) return false; if (RequestedPublishingInterval == null) { if (other.RequestedPublishingInterval != null) return false; } else if (!RequestedPublishingInterval.equals(other.RequestedPublishingInterval)) return false; if (RequestedLifetimeCount == null) { if (other.RequestedLifetimeCount != null) return false; } else if (!RequestedLifetimeCount.equals(other.RequestedLifetimeCount)) return false; if (RequestedMaxKeepAliveCount == null) { if (other.RequestedMaxKeepAliveCount != null) return false; } else if (!RequestedMaxKeepAliveCount.equals(other.RequestedMaxKeepAliveCount)) return false; if (MaxNotificationsPerPublish == null) { if (other.MaxNotificationsPerPublish != null) return false; } else if (!MaxNotificationsPerPublish.equals(other.MaxNotificationsPerPublish)) return false; if (Priority == null) { if (other.Priority != null) return false; } else if (!Priority.equals(other.Priority)) return false; return true; }
@Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((RequestHeader == null) ? 0 : RequestHeader.hashCode()); result = prime * result + ((SubscriptionId == null) ? 0 : SubscriptionId.hashCode()); result = prime * result + ((RequestedPublishingInterval == null) ? 0 : RequestedPublishingInterval.hashCode()); result = prime * result + ((RequestedLifetimeCount == null) ? 0 : RequestedLifetimeCount.hashCode()); result = prime * result + ((RequestedMaxKeepAliveCount == null) ? 0 : RequestedMaxKeepAliveCount.hashCode()); result = prime * result + ((MaxNotificationsPerPublish == null) ? 0 : MaxNotificationsPerPublish.hashCode()); result = prime * result + ((Priority == null) ? 0 : Priority.hashCode()); return result; }