com.c4_soft.springaddons.security.oauth2.oidc.OidcIdAuthenticationToken Maven / Gradle / Ivy
/*
* Copyright 2020 Jérôme Wacongne
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package com.c4_soft.springaddons.security.oauth2.oidc;
import java.util.Collection;
import org.springframework.security.authentication.AbstractAuthenticationToken;
import org.springframework.security.core.GrantedAuthority;
public class OidcIdAuthenticationToken extends AbstractAuthenticationToken {
private static final long serialVersionUID = -2827891205034221389L;
private final OidcId token;
public OidcIdAuthenticationToken(OidcId token, Collection extends GrantedAuthority> authorities) {
super(authorities);
this.token = token;
this.setAuthenticated(true);
setDetails(token);
}
public OidcId getToken() {
return token;
}
@Override
public Object getCredentials() {
return token;
}
@Override
public Object getPrincipal() {
return token;
}
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = prime * result + ((token == null) ? 0 : token.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!super.equals(obj)) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final OidcIdAuthenticationToken other = (OidcIdAuthenticationToken) obj;
if (token == null) {
if (other.token != null) {
return false;
}
} else if (!token.equals(other.token)) {
return false;
}
return true;
}
}