[java-oidc-common] branch main updated: Fix javadoc
Phil Smart
philip.smart at jisc.ac.uk
Thu Sep 25 13:11:17 UTC 2025
This is an automated email from the git hooks/post-receive script.
philsmart pushed a commit to branch main
in repository java-oidc-common.
View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=29a8623b15fadcdd8108402ec132bc0e95949ee9
The following commit(s) were added to refs/heads/main by this push:
new 29a8623 Fix javadoc
29a8623 is described below
commit 29a8623b15fadcdd8108402ec132bc0e95949ee9
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Thu Sep 25 14:11:14 2025 +0100
Fix javadoc
---
.../oidc/metadata/context/OIDCProviderMetadataContext.java | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/oidc-common-metadata-api/src/main/java/net/shibboleth/oidc/metadata/context/OIDCProviderMetadataContext.java b/oidc-common-metadata-api/src/main/java/net/shibboleth/oidc/metadata/context/OIDCProviderMetadataContext.java
index 4abdd32..f1dce14 100644
--- a/oidc-common-metadata-api/src/main/java/net/shibboleth/oidc/metadata/context/OIDCProviderMetadataContext.java
+++ b/oidc-common-metadata-api/src/main/java/net/shibboleth/oidc/metadata/context/OIDCProviderMetadataContext.java
@@ -21,26 +21,26 @@ import org.opensaml.messaging.context.BaseContext;
import com.nimbusds.openid.connect.sdk.op.OIDCProviderMetadata;
/**
- * Subcontext carrying information on metadata of the OpenID Connect Provider.
+ * Subcontext carrying OpenID Provider metadata.
*/
public class OIDCProviderMetadataContext extends BaseContext {
- /** The client information. */
+ /** The OpenID Provider metadata. */
@Nullable private OIDCProviderMetadata providerInformation;
/**
- * Set the provider information.
+ * Set the OpenID Provider metadata.
*
- * @param information the information.
+ * @param information the metadata.
*/
public void setProviderInformation(@Nullable final OIDCProviderMetadata information) {
providerInformation = information;
}
/**
- * Set the client information.
+ * Get the OpenID Provider metadata.
*
- * @return The client information.
+ * @return the metadata.
*/
@Nullable
public OIDCProviderMetadata getProviderInformation() {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list