Package org.keycloak
Class AbstractOAuthClient
- java.lang.Object
- 
- org.keycloak.AbstractOAuthClient
 
- 
 public class AbstractOAuthClient extends Object - Version:
- $Revision: 1 $
- Author:
- Bill Burke
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected StringauthUrlprotected StringclientIdprotected Map<String,Object>credentialsprotected booleanisSecureprotected booleanpublicClientprotected RelativeUrlsUsedrelativeUrlsUsedprotected Stringscopeprotected StringstateCookieNameprotected StringstateCookiePathprotected StringtokenUrl
 - 
Constructor SummaryConstructors Constructor Description AbstractOAuthClient()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthUrl()StringgetClientId()Map<String,Object>getCredentials()RelativeUrlsUsedgetRelativeUrlsUsed()StringgetScope()protected StringgetStateCode()StringgetStateCookieName()StringgetStateCookiePath()StringgetTokenUrl()booleanisPublicClient()booleanisSecure()voidsetAuthUrl(String authUrl)voidsetClientId(String clientId)voidsetCredentials(Map<String,Object> credentials)voidsetPublicClient(boolean publicClient)voidsetRelativeUrlsUsed(RelativeUrlsUsed relativeUrlsUsed)voidsetScope(String scope)voidsetSecure(boolean secure)voidsetStateCookieName(String stateCookieName)voidsetStateCookiePath(String stateCookiePath)voidsetTokenUrl(String tokenUrl)protected StringstripOauthParametersFromRedirect(String uri)
 
- 
- 
- 
Field Detail- 
clientIdprotected String clientId 
 - 
authUrlprotected String authUrl 
 - 
tokenUrlprotected String tokenUrl 
 - 
relativeUrlsUsedprotected RelativeUrlsUsed relativeUrlsUsed 
 - 
scopeprotected String scope 
 - 
stateCookieNameprotected String stateCookieName 
 - 
stateCookiePathprotected String stateCookiePath 
 - 
isSecureprotected boolean isSecure 
 - 
publicClientprotected boolean publicClient 
 
- 
 - 
Method Detail- 
getStateCodeprotected String getStateCode() 
 - 
getClientIdpublic String getClientId() 
 - 
setClientIdpublic void setClientId(String clientId) 
 - 
getAuthUrlpublic String getAuthUrl() 
 - 
setAuthUrlpublic void setAuthUrl(String authUrl) 
 - 
getTokenUrlpublic String getTokenUrl() 
 - 
setTokenUrlpublic void setTokenUrl(String tokenUrl) 
 - 
getScopepublic String getScope() 
 - 
setScopepublic void setScope(String scope) 
 - 
getStateCookieNamepublic String getStateCookieName() 
 - 
setStateCookieNamepublic void setStateCookieName(String stateCookieName) 
 - 
getStateCookiePathpublic String getStateCookiePath() 
 - 
setStateCookiePathpublic void setStateCookiePath(String stateCookiePath) 
 - 
isPublicClientpublic boolean isPublicClient() 
 - 
setPublicClientpublic void setPublicClient(boolean publicClient) 
 - 
isSecurepublic boolean isSecure() 
 - 
setSecurepublic void setSecure(boolean secure) 
 - 
getRelativeUrlsUsedpublic RelativeUrlsUsed getRelativeUrlsUsed() 
 - 
setRelativeUrlsUsedpublic void setRelativeUrlsUsed(RelativeUrlsUsed relativeUrlsUsed) 
 
- 
 
-