Package org.wildfly.security.http.oidc
Class OidcJsonConfiguration
- java.lang.Object
- 
- org.wildfly.security.http.oidc.OidcJsonConfiguration
 
- 
 public class OidcJsonConfiguration extends Object Configuration for Java based adapters- Author:
- Bill Burke, Brad Culley, John D. Ament, Farah Juma
 
- 
- 
Field Summary
 - 
Constructor SummaryConstructors Constructor Description OidcJsonConfiguration()
 - 
Method Summary
 
- 
- 
- 
Field Detail- 
allowAnyHostnameprotected boolean allowAnyHostname 
 - 
disableTrustManagerprotected boolean disableTrustManager 
 - 
truststoreprotected String truststore 
 - 
truststorePasswordprotected String truststorePassword 
 - 
clientKeystoreprotected String clientKeystore 
 - 
clientKeystorePasswordprotected String clientKeystorePassword 
 - 
clientKeyPasswordprotected String clientKeyPassword 
 - 
connectionPoolSizeprotected int connectionPoolSize 
 - 
alwaysRefreshTokenprotected boolean alwaysRefreshToken 
 - 
registerNodeAtStartupprotected boolean registerNodeAtStartup 
 - 
registerNodePeriodprotected int registerNodePeriod 
 - 
tokenStoreprotected String tokenStore 
 - 
tokenCookiePathprotected String tokenCookiePath 
 - 
principalAttributeprotected String principalAttribute 
 - 
turnOffChangeSessionIdOnLoginprotected Boolean turnOffChangeSessionIdOnLogin 
 - 
tokenMinimumTimeToLiveprotected int tokenMinimumTimeToLive 
 - 
minTimeBetweenJwksRequestsprotected int minTimeBetweenJwksRequests 
 - 
publicKeyCacheTtlprotected int publicKeyCacheTtl 
 - 
pkceprotected boolean pkce 
 - 
ignoreOAuthQueryParameterprotected boolean ignoreOAuthQueryParameter 
 - 
verifyTokenAudienceprotected boolean verifyTokenAudience 
 - 
confidentialPortprotected int confidentialPort 
 - 
resourceprotected String resource 
 - 
useResourceRoleMappingsprotected boolean useResourceRoleMappings 
 - 
useRealmRoleMappingsprotected boolean useRealmRoleMappings 
 - 
corsprotected boolean cors 
 - 
corsMaxAgeprotected int corsMaxAge 
 - 
corsAllowedHeadersprotected String corsAllowedHeaders 
 - 
corsAllowedMethodsprotected String corsAllowedMethods 
 - 
corsExposedHeadersprotected String corsExposedHeaders 
 - 
exposeTokenprotected boolean exposeToken 
 - 
bearerOnlyprotected boolean bearerOnly 
 - 
autodetectBearerOnlyprotected boolean autodetectBearerOnly 
 - 
enableBasicAuthprotected boolean enableBasicAuth 
 - 
publicClientprotected boolean publicClient 
 - 
realmprotected String realm 
 - 
realmKeyprotected String realmKey 
 - 
authServerUrlprotected String authServerUrl 
 - 
sslRequiredprotected String sslRequired 
 - 
providerUrlprotected String providerUrl 
 - 
clientIdprotected String clientId 
 - 
tokenSignatureAlgorithmprotected String tokenSignatureAlgorithm 
 - 
proxyUrlprotected String proxyUrl The Proxy url to use for requests to the auth-server, configurable via the adapter config propertyproxy-url.
 
- 
 - 
Method Detail- 
isAllowAnyHostnamepublic boolean isAllowAnyHostname() 
 - 
setAllowAnyHostnamepublic void setAllowAnyHostname(boolean allowAnyHostname) 
 - 
isDisableTrustManagerpublic boolean isDisableTrustManager() 
 - 
setDisableTrustManagerpublic void setDisableTrustManager(boolean disableTrustManager) 
 - 
getTruststorepublic String getTruststore() 
 - 
setTruststorepublic void setTruststore(String truststore) 
 - 
getTruststorePasswordpublic String getTruststorePassword() 
 - 
setTruststorePasswordpublic void setTruststorePassword(String truststorePassword) 
 - 
getClientKeystorepublic String getClientKeystore() 
 - 
setClientKeystorepublic void setClientKeystore(String clientKeystore) 
 - 
getClientKeystorePasswordpublic String getClientKeystorePassword() 
 - 
setClientKeystorePasswordpublic void setClientKeystorePassword(String clientKeystorePassword) 
 - 
getClientKeyPasswordpublic String getClientKeyPassword() 
 - 
setClientKeyPasswordpublic void setClientKeyPassword(String clientKeyPassword) 
 - 
getConnectionPoolSizepublic int getConnectionPoolSize() 
 - 
setConnectionPoolSizepublic void setConnectionPoolSize(int connectionPoolSize) 
 - 
isAlwaysRefreshTokenpublic boolean isAlwaysRefreshToken() 
 - 
setAlwaysRefreshTokenpublic void setAlwaysRefreshToken(boolean alwaysRefreshToken) 
 - 
isRegisterNodeAtStartuppublic boolean isRegisterNodeAtStartup() 
 - 
setRegisterNodeAtStartuppublic void setRegisterNodeAtStartup(boolean registerNodeAtStartup) 
 - 
getRegisterNodePeriodpublic int getRegisterNodePeriod() 
 - 
setRegisterNodePeriodpublic void setRegisterNodePeriod(int registerNodePeriod) 
 - 
getTokenStorepublic String getTokenStore() 
 - 
setTokenStorepublic void setTokenStore(String tokenStore) 
 - 
getTokenCookiePathpublic String getTokenCookiePath() 
 - 
setTokenCookiePathpublic void setTokenCookiePath(String tokenCookiePath) 
 - 
getPrincipalAttributepublic String getPrincipalAttribute() 
 - 
setPrincipalAttributepublic void setPrincipalAttribute(String principalAttribute) 
 - 
getTurnOffChangeSessionIdOnLoginpublic Boolean getTurnOffChangeSessionIdOnLogin() 
 - 
setTurnOffChangeSessionIdOnLoginpublic void setTurnOffChangeSessionIdOnLogin(Boolean turnOffChangeSessionIdOnLogin) 
 - 
getProxyUrlpublic String getProxyUrl() 
 - 
setProxyUrlpublic void setProxyUrl(String proxyUrl) 
 - 
getTokenMinimumTimeToLivepublic int getTokenMinimumTimeToLive() 
 - 
setTokenMinimumTimeToLivepublic void setTokenMinimumTimeToLive(int tokenMinimumTimeToLive) 
 - 
getMinTimeBetweenJwksRequestspublic int getMinTimeBetweenJwksRequests() 
 - 
setMinTimeBetweenJwksRequestspublic void setMinTimeBetweenJwksRequests(int minTimeBetweenJwksRequests) 
 - 
getPublicKeyCacheTtlpublic int getPublicKeyCacheTtl() 
 - 
setPublicKeyCacheTtlpublic void setPublicKeyCacheTtl(int publicKeyCacheTtl) 
 - 
isPkcepublic boolean isPkce() 
 - 
setPkcepublic void setPkce(boolean pkce) 
 - 
isIgnoreOAuthQueryParameterpublic boolean isIgnoreOAuthQueryParameter() 
 - 
setIgnoreOAuthQueryParameterpublic void setIgnoreOAuthQueryParameter(boolean ignoreOAuthQueryParameter) 
 - 
isVerifyTokenAudiencepublic boolean isVerifyTokenAudience() 
 - 
setVerifyTokenAudiencepublic void setVerifyTokenAudience(boolean verifyTokenAudience) 
 - 
getSslRequiredpublic String getSslRequired() 
 - 
setSslRequiredpublic void setSslRequired(String sslRequired) 
 - 
getRealmpublic String getRealm() 
 - 
setRealmpublic void setRealm(String realm) 
 - 
getRealmKeypublic String getRealmKey() 
 - 
setRealmKeypublic void setRealmKey(String realmKey) 
 - 
getAuthServerUrlpublic String getAuthServerUrl() 
 - 
setAuthServerUrlpublic void setAuthServerUrl(String authServerUrl) 
 - 
getProviderUrlpublic String getProviderUrl() 
 - 
setProviderUrlpublic void setProviderUrl(String providerUrl) 
 - 
getConfidentialPortpublic int getConfidentialPort() 
 - 
setConfidentialPortpublic void setConfidentialPort(int confidentialPort) 
 - 
getResourcepublic String getResource() 
 - 
setResourcepublic void setResource(String resource) 
 - 
getClientIdpublic String getClientId() 
 - 
setClientIdpublic void setClientId(String clientId) 
 - 
getResourceNamepublic String getResourceName() 
 - 
isUseResourceRoleMappingspublic boolean isUseResourceRoleMappings() 
 - 
setUseResourceRoleMappingspublic void setUseResourceRoleMappings(boolean useResourceRoleMappings) 
 - 
isUseRealmRoleMappingspublic boolean isUseRealmRoleMappings() 
 - 
setUseRealmRoleMappingspublic void setUseRealmRoleMappings(boolean useRealmRoleMappings) 
 - 
isCorspublic boolean isCors() 
 - 
setCorspublic void setCors(boolean cors) 
 - 
getCorsMaxAgepublic int getCorsMaxAge() 
 - 
setCorsMaxAgepublic void setCorsMaxAge(int corsMaxAge) 
 - 
getCorsAllowedHeaderspublic String getCorsAllowedHeaders() 
 - 
setCorsAllowedHeaderspublic void setCorsAllowedHeaders(String corsAllowedHeaders) 
 - 
getCorsAllowedMethodspublic String getCorsAllowedMethods() 
 - 
setCorsAllowedMethodspublic void setCorsAllowedMethods(String corsAllowedMethods) 
 - 
getCorsExposedHeaderspublic String getCorsExposedHeaders() 
 - 
setCorsExposedHeaderspublic void setCorsExposedHeaders(String corsExposedHeaders) 
 - 
isExposeTokenpublic boolean isExposeToken() 
 - 
setExposeTokenpublic void setExposeToken(boolean exposeToken) 
 - 
isBearerOnlypublic boolean isBearerOnly() 
 - 
setBearerOnlypublic void setBearerOnly(boolean bearerOnly) 
 - 
isAutodetectBearerOnlypublic boolean isAutodetectBearerOnly() 
 - 
setAutodetectBearerOnlypublic void setAutodetectBearerOnly(boolean autodetectBearerOnly) 
 - 
isEnableBasicAuthpublic boolean isEnableBasicAuth() 
 - 
setEnableBasicAuthpublic void setEnableBasicAuth(boolean enableBasicAuth) 
 - 
isPublicClientpublic boolean isPublicClient() 
 - 
setPublicClientpublic void setPublicClient(boolean publicClient) 
 - 
setRedirectRewriteRulespublic void setRedirectRewriteRules(Map<String,String> redirectRewriteRules) 
 - 
getTokenSignatureAlgorithmpublic String getTokenSignatureAlgorithm() 
 - 
setTokenSignatureAlgorithmpublic void setTokenSignatureAlgorithm(String tokenSignatureAlgorithm) 
 
- 
 
-