[java-identity-provider] branch main updated: Fix more Javadoc issues.
Scott Cantor
cantor.2 at osu.edu
Mon Mar 31 16:12:41 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=22bcc452d173613f160831cff91e2f821054c160
The following commit(s) were added to refs/heads/main by this push:
new 22bcc452d Fix more Javadoc issues.
22bcc452d is described below
commit 22bcc452d173613f160831cff91e2f821054c160
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Mar 31 12:12:38 2025 -0400
Fix more Javadoc issues.
---
.../src/main/java/net/shibboleth/idp/admin/impl/OutputConfig.java | 4 ++++
.../net/shibboleth/idp/authn/AuthenticationFlowDescriptor.java | 4 ++--
.../net/shibboleth/idp/installer/impl/InstallerPropertiesImpl.java | 7 +++----
3 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/idp-admin-impl/src/main/java/net/shibboleth/idp/admin/impl/OutputConfig.java b/idp-admin-impl/src/main/java/net/shibboleth/idp/admin/impl/OutputConfig.java
index caf0f85c5..ee72546f8 100644
--- a/idp-admin-impl/src/main/java/net/shibboleth/idp/admin/impl/OutputConfig.java
+++ b/idp-admin-impl/src/main/java/net/shibboleth/idp/admin/impl/OutputConfig.java
@@ -318,6 +318,7 @@ public class OutputConfig extends AbstractProfileAction {
*/
private static class PrincipalSerializer extends StdSerializer<Principal> {
+ /** Serialization ID. */
private static final long serialVersionUID = 8948390099419865058L;
/**
@@ -344,6 +345,9 @@ public class OutputConfig extends AbstractProfileAction {
*/
private static class RequestedAttributeSerializer extends StdSerializer<RequestedAttribute> {
+ /** Serialization ID. */
+ private static final long serialVersionUID = 253237036437497897L;
+
/**
* Constructor.
*/
diff --git a/idp-authn-api/src/main/java/net/shibboleth/idp/authn/AuthenticationFlowDescriptor.java b/idp-authn-api/src/main/java/net/shibboleth/idp/authn/AuthenticationFlowDescriptor.java
index dc496ea3e..36fd122fd 100644
--- a/idp-authn-api/src/main/java/net/shibboleth/idp/authn/AuthenticationFlowDescriptor.java
+++ b/idp-authn-api/src/main/java/net/shibboleth/idp/authn/AuthenticationFlowDescriptor.java
@@ -172,12 +172,12 @@ public class AuthenticationFlowDescriptor extends AbstractIdentifiableInitializa
}
/**
- * Sets the flow ID for this descriptor.
+ * Sets the webflow ID for this descriptor.
*
* <p>This defaults to the component ID, but can be overridden to allow multiple
* components to be defined for a given webflow.</p>
*
- * @param id
+ * @param id webflow ID
*
* @since 5.2.0
*/
diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstallerPropertiesImpl.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstallerPropertiesImpl.java
index 47fd7540c..89719a423 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstallerPropertiesImpl.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstallerPropertiesImpl.java
@@ -551,8 +551,7 @@ public class InstallerPropertiesImpl {
final Integer result;
try {
result = Integer.valueOf(val);
- }
- catch (final NumberFormatException e) {
+ } catch (final NumberFormatException e) {
log.error("Provided value for property {} ({}') was not an integer", InstallerProperties.SEALER_ALIAS, val);
throw new BuildException(e);
}
@@ -576,9 +575,9 @@ public class InstallerPropertiesImpl {
}
/**
- * Get the key size for signing, encryption and backchannel
+ * Get the key size for signing, encryption and backchannel.
*
- * @return the keysize, default is {@value #DEFAULT_KEY_SIZE}.
+ * @return the keysize, default is {link #DEFAULT_KEY_SIZE}.
*/
public int getKeySize() {
return keySize;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list