All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.edu.icm.unity.oauth.client.OAuthContext Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2014 ICM Uniwersytet Warszawski All rights reserved.
 * See LICENCE.txt file for licensing information.
 */
package pl.edu.icm.unity.oauth.client;

import java.net.URI;

import com.nimbusds.oauth2.sdk.AuthorizationRequest;

import pl.edu.icm.unity.base.authn.ExpectedIdentity;
import pl.edu.icm.unity.engine.api.authn.remote.RedirectedAuthnState;


/**
 * OAuth specific state associated with one remote login pipeline.
 * 

* This class is thread safe. * @author K. Benedyczak */ public class OAuthContext extends RedirectedAuthnState { private AuthorizationRequest request; private URI requestURI; private String authzCode; private String errorCode; private String errorDescription; private String returnUrl; private String providerConfigKey; private ExpectedIdentity expectedIdentity; public OAuthContext(RedirectedAuthnState base) { super(base); } public synchronized void setRequest(AuthorizationRequest request, URI requestURI, String providerConfigKey) { this.request = request; this.requestURI = requestURI; this.providerConfigKey = providerConfigKey; } public synchronized boolean isAnswerPresent() { return errorCode != null || authzCode != null; } public synchronized String getProviderConfigKey() { return providerConfigKey; } public synchronized AuthorizationRequest getRequest() { return request; } public synchronized URI getRequestURI() { return requestURI; } public synchronized String getAuthzCode() { return authzCode; } public synchronized void setAuthzCode(String authzCode) { this.authzCode = authzCode; } public synchronized String getReturnUrl() { return returnUrl; } public synchronized void setReturnUrl(String returnUrl) { this.returnUrl = returnUrl; } public synchronized String getErrorCode() { return errorCode; } public synchronized void setErrorCode(String errorCode) { this.errorCode = errorCode; } public synchronized String getErrorDescription() { return errorDescription; } public synchronized void setErrorDescription(String errorDescription) { this.errorDescription = errorDescription; } public ExpectedIdentity getExpectedIdentity() { return expectedIdentity; } public void setExpectedIdentity(ExpectedIdentity expectedIdentity) { this.expectedIdentity = expectedIdentity; } @Override public String toString() { return String.format("OAuthContext [requestURI=%s, providerConfigKey=%s, getRelayState()=%s]", requestURI, providerConfigKey, getRelayState()); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy