Merge pull request #1033 from mposolda/master
Minor fixes in kerberos example
This commit is contained in:
commit
81f88539ff
3 changed files with 3 additions and 3 deletions
|
@ -33,7 +33,7 @@
|
||||||
"config" : {
|
"config" : {
|
||||||
"Claim JSON Type" : "String",
|
"Claim JSON Type" : "String",
|
||||||
"user.attribute" : "username",
|
"user.attribute" : "username",
|
||||||
"Token Claim Name" : "preferred_username",
|
"claim.name" : "preferred_username",
|
||||||
"id.token.claim" : "true",
|
"id.token.claim" : "true",
|
||||||
"access.token.claim" : "true"
|
"access.token.claim" : "true"
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
"consentRequired" : true,
|
"consentRequired" : true,
|
||||||
"config" : {
|
"config" : {
|
||||||
"user.session.note" : "gss_delegation_credential",
|
"user.session.note" : "gss_delegation_credential",
|
||||||
"Token Claim Name" : "gss_delegation_credential",
|
"claim.name" : "gss_delegation_credential",
|
||||||
"id.token.claim" : "false",
|
"id.token.claim" : "false",
|
||||||
"access.token.claim" : "true"
|
"access.token.claim" : "true"
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
"realm-public-key" : "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrVrCuTtArbgaZzL1hvh0xtL5mc7o0NqPVnYXkLvgcwiC3BjLGw1tGEGoJaXDuSaRllobm53JBhjx33UNv+5z/UMG4kytBWxheNVKnL6GgqlNabMaFfPLPCF8kAgKnsi79NMo+n6KnSY8YeUmec/p2vjO2NjsSAVcWEQMVhJ31LwIDAQAB",
|
"realm-public-key" : "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrVrCuTtArbgaZzL1hvh0xtL5mc7o0NqPVnYXkLvgcwiC3BjLGw1tGEGoJaXDuSaRllobm53JBhjx33UNv+5z/UMG4kytBWxheNVKnL6GgqlNabMaFfPLPCF8kAgKnsi79NMo+n6KnSY8YeUmec/p2vjO2NjsSAVcWEQMVhJ31LwIDAQAB",
|
||||||
"auth-server-url": "/auth",
|
"auth-server-url": "/auth",
|
||||||
"ssl-required" : "external",
|
"ssl-required" : "external",
|
||||||
"enable-basic-auth" : "true",
|
|
||||||
"credentials": {
|
"credentials": {
|
||||||
"secret": "password"
|
"secret": "password"
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
<module name="org.codehaus.jackson.jackson-core-asl"/>
|
<module name="org.codehaus.jackson.jackson-core-asl"/>
|
||||||
<module name="org.codehaus.jackson.jackson-mapper-asl"/>
|
<module name="org.codehaus.jackson.jackson-mapper-asl"/>
|
||||||
<module name="org.infinispan"/>
|
<module name="org.infinispan"/>
|
||||||
|
<module name="sun.jdk.jgss"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<module name="org.jboss.resteasy.resteasy-jackson2-provider"/>
|
<module name="org.jboss.resteasy.resteasy-jackson2-provider"/>
|
||||||
|
|
Loading…
Reference in a new issue