[java-idp-plugin-oidc-rp] branch main updated: Harmonise maven module name with OP
Phil Smart
philip.smart at jisc.ac.uk
Tue May 2 15:13:55 UTC 2023
This is an automated email from the git hooks/post-receive script.
philsmart pushed a commit to branch main
in repository java-idp-plugin-oidc-rp.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-oidc-rp.git;a=commit;h=a14a5bd56025d2e2dfbbf81cfe00b50f0409fb22
The following commit(s) were added to refs/heads/main by this push:
new a14a5bd Harmonise maven module name with OP
a14a5bd is described below
commit a14a5bd56025d2e2dfbbf81cfe00b50f0409fb22
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Tue May 2 16:13:53 2023 +0100
Harmonise maven module name with OP
---
idp-oidc-rp-api/pom.xml | 2 +-
idp-oidc-rp-dist/pom.xml | 2 +-
idp-oidc-rp-impl/pom.xml | 2 +-
.../idp/plugin/authn/oidc/rp/conf/authn/oidc-rp.properties | 10 +++++-----
pom.xml | 2 +-
5 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/idp-oidc-rp-api/pom.xml b/idp-oidc-rp-api/pom.xml
index b910ad3..0de5c7a 100644
--- a/idp-oidc-rp-api/pom.xml
+++ b/idp-oidc-rp-api/pom.xml
@@ -11,7 +11,7 @@
<artifactId>idp-plugin-oidc-rp-api</artifactId>
<packaging>jar</packaging>
- <name>Shibboleth IdP :: Plugins :: OIDC RP Login Flow API</name>
+ <name>Shibboleth IdP :: Plugins :: OpenID Connect Relying Party Login Flow API</name>
<description>IdP OIDC RelyingParty Proxy API.</description>
<properties>
diff --git a/idp-oidc-rp-dist/pom.xml b/idp-oidc-rp-dist/pom.xml
index 1676d4e..5341835 100644
--- a/idp-oidc-rp-dist/pom.xml
+++ b/idp-oidc-rp-dist/pom.xml
@@ -9,7 +9,7 @@
</parent>
<artifactId>idp-plugin-oidc-rp-dist</artifactId>
- <name>Shibboleth IdP :: Plugins :: OIDC RP Login Flow Distribution</name>
+ <name>Shibboleth IdP :: Plugins :: OpenID Connect Relying Party Login Flow Distribution</name>
<description>IdP java-idp-oidc-rp plugin packaging.</description>
<packaging>pom</packaging>
diff --git a/idp-oidc-rp-impl/pom.xml b/idp-oidc-rp-impl/pom.xml
index c0b043a..4a221be 100644
--- a/idp-oidc-rp-impl/pom.xml
+++ b/idp-oidc-rp-impl/pom.xml
@@ -10,7 +10,7 @@
<artifactId>idp-plugin-oidc-rp-impl</artifactId>
<packaging>jar</packaging>
- <name>Shibboleth IdP :: Plugins :: OIDC RP Login Flow Impl</name>
+ <name>Shibboleth IdP :: Plugins :: OpenID Connect Relying Party Login Flow Impl</name>
<description>IdP OIDC RelyingParty Proxy implementation.</description>
<properties>
diff --git a/idp-oidc-rp-impl/src/main/resources/net/shibboleth/idp/plugin/authn/oidc/rp/conf/authn/oidc-rp.properties b/idp-oidc-rp-impl/src/main/resources/net/shibboleth/idp/plugin/authn/oidc/rp/conf/authn/oidc-rp.properties
index b92197b..f6b0bf8 100644
--- a/idp-oidc-rp-impl/src/main/resources/net/shibboleth/idp/plugin/authn/oidc/rp/conf/authn/oidc-rp.properties
+++ b/idp-oidc-rp-impl/src/main/resources/net/shibboleth/idp/plugin/authn/oidc/rp/conf/authn/oidc-rp.properties
@@ -2,19 +2,15 @@ idp.oidc.rp.provider.proxyIssuer=https://issuer.com
## If discovery is required, these default properties will not be set, you must manage per OP using overrides
idp.oidc.rp.client.clientId = client_id
idp.oidc.rp.client.clientSecret= client_secret
-#idp.oidc.rp.client.clientSecretExpiresAt = PT0S
idp.oidc.rp.client.redirecturl.allowedOrigins = https://localhost:8443
## If true and the token was retrieved using TLS with server validation, JWS signature checking will be skipped.
#idp.oidc.rp.client.idtoken.tlsServerValidationOnly = false
+## Should a further lookup to the UserInfo endpoint be made, to retrieve additional claims about the end-user
#idp.oidc.rp.client.userinfo.enabled = true
#idp.oidc.rp.client.userinfo.httpRequestMethod = GET
-## Should validation be skipped if the at_hash is not present in the id_token response. Defaults to 'true' as
-## access token at_hash validation is optional in the Authorization Code Flow.
-#idp.oidc.rp.client.tokenresponse.allowMissingAtHash = true
-
## Override the default response_mode for the given response_type
#idp.oidc.rp.client.responseMode = query
#idp.oidc.rp.client.authenticationMethod = client_secret_basic
@@ -31,6 +27,10 @@ idp.oidc.rp.client.redirecturl.allowedOrigins = https://localhost:8443
#idp.oidc.rp.client.idtoken.jwt.verifier.clockSkew = PT60S
#idp.oidc.rp.client.idtoken.jwt.verifier.authnLifetime = PT60S
+## Should validation be skipped if the at_hash is not present in the id_token response. Defaults to 'true' as
+## access token at_hash validation is optional in the Authorization Code Flow.
+#idp.oidc.rp.client.tokenresponse.allowMissingAtHash = true
+
## External controller path. Should not need changing.
#idp.oidc.rp.externalAuthnPath = /Authn/OIDC/RP
diff --git a/pom.xml b/pom.xml
index 3daa14c..2c78961 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,7 +10,7 @@
<groupId>net.shibboleth.idp.plugin.authn</groupId>
<artifactId>idp-plugin-oidc-rp-parent</artifactId>
<version>0.10.1-SNAPSHOT</version>
- <name>Shibboleth IdP :: Plugins :: OIDC RP Login Flow</name>
+ <name>Shibboleth IdP :: Plugins :: OpenID Connect Relying Party Login Flow</name>
<packaging>pom</packaging>
<description>Java OIDC ReylingParty Proxy authentication plugin for the Shibboleth IdP.</description>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list