Package org.cyclos.services.access
Class CallbackResult
- java.lang.Object
-
- org.cyclos.services.access.CallbackResult
-
- All Implemented Interfaces:
Serializable
public class CallbackResult extends Object implements Serializable
Actual result from an identity provider callback- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CallbackResult()CallbackResult(IdentityProviderCallbackResult result)CallbackResult(IdentityProviderCallbackResult result, boolean destroyed)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCallbackFunction()StringgetRedirectUrl()IdentityProviderCallbackResultgetResult()booleanisDestroyed()voidsetCallbackFunction(String callbackFunction)voidsetDestroyed(boolean destroyed)voidsetRedirectUrl(String redirectUrl)voidsetResult(IdentityProviderCallbackResult result)
-
-
-
Constructor Detail
-
CallbackResult
public CallbackResult()
-
CallbackResult
public CallbackResult(IdentityProviderCallbackResult result)
-
CallbackResult
public CallbackResult(IdentityProviderCallbackResult result, boolean destroyed)
-
-
Method Detail
-
getCallbackFunction
public String getCallbackFunction()
-
getRedirectUrl
public String getRedirectUrl()
-
getResult
public IdentityProviderCallbackResult getResult()
-
isDestroyed
public boolean isDestroyed()
-
setCallbackFunction
public void setCallbackFunction(String callbackFunction)
-
setDestroyed
public void setDestroyed(boolean destroyed)
-
setRedirectUrl
public void setRedirectUrl(String redirectUrl)
-
setResult
public void setResult(IdentityProviderCallbackResult result)
-
-