keycloak-scim/adapters
Valeran86 2899375614 KeycloakRole equals only with itself
I use Keycloak Spring Adapter (KSA) to secure existing application. Today I realized that some functions didn't work anymore because of security checking like this:
```
GrantedAuthority adminRole = new MySpecialGrantedAuthority( "superadmin" );
for ( GrantedAuthority role : userRoles ) {
        if ( role.equals( adminRole ) ) {
          return true;
        }
      }
```
In this example, when I use KSA authorization fails.
I believe, that more preferable in `KeycloakRole` use this implementation of `equals` method.
2019-07-08 14:33:03 -03:00
..
oidc KeycloakRole equals only with itself 2019-07-08 14:33:03 -03:00
saml KEYCLOAK-7852 Use original NameId value in logout requests 2019-07-04 19:30:21 +02:00
spi KEYCLOAK-9596 Remove Apache Tomcat 6.0.x adapter 2019-05-28 12:00:19 +02:00
pom.xml Set version to 7.0.0-SNAPSHOT 2019-04-17 09:48:07 +01:00