@Override public boolean equals(final Object x) { if (!(x instanceof ApplicationKey)) { return false; } final ApplicationKey that = (ApplicationKey) x; return this.getComparableKey().equals(that.getComparableKey()); }
@Override public int hashCode() { return this.getComparableKey().hashCode(); }