Add Equals to JWKSet

Issue #495 invalid
Victor Herraiz created an issue

This is really useful in some tests

Comments (2)

  1. Vladimir Dzhuvinov

    Already present:

        @Override
        public boolean equals(Object o) {
            if (this == o) return true;
            if (!(o instanceof JWKSet)) return false;
            JWKSet jwkSet = (JWKSet) o;
            return getKeys().equals(jwkSet.getKeys()) && customMembers.equals(jwkSet.customMembers);
        }
    
  2. Log in to comment