ca.ibodrov.mica.server.oidc.OidcToken Maven / Gradle / Ivy
The newest version!
package ca.ibodrov.mica.server.oidc;
import org.apache.shiro.authc.AuthenticationToken;
public record OidcToken(String token) implements AuthenticationToken {
@Override
public Object getPrincipal() {
return this;
}
@Override
public Object getCredentials() {
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy