Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo javadoc some classes #16022

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ protected void successfulAuthentication(HttpServletRequest request, HttpServletR
* <ol>
* <li>Clears the {@link SecurityContextHolder}</li>
* <li>Stores the exception in the session (if it exists or
* <tt>allowSesssionCreation</tt> is set to <tt>true</tt>)</li>
* <tt>allowSessionCreation</tt> is set to <tt>true</tt>)</li>
* <li>Informs the configured <tt>RememberMeServices</tt> of the failed login</li>
* <li>Delegates additional behaviour to the
* {@link AuthenticationFailureHandler}.</li>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2020 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -174,7 +174,7 @@ public void setExceptionIfMaximumExceeded(boolean exceptionIfMaximumExceeded) {
/**
* Sets the <tt>maxSessions</tt> property. The default value is 1. Use -1 for
* unlimited sessions.
* @param maximumSessions the maximimum number of permitted sessions a user can have
* @param maximumSessions the maximum number of permitted sessions a user can have
* open simultaneously.
*/
public void setMaximumSessions(int maximumSessions) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2022 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -285,9 +285,9 @@ protected EnumSet<DispatcherType> getSecurityDispatcherTypes() {
}

/**
* Determine if the springSecurityFilterChain should be marked as supporting asynch.
* Determine if the springSecurityFilterChain should be marked as supporting async.
* Default is true.
* @return true if springSecurityFilterChain should be marked as supporting asynch
* @return true if springSecurityFilterChain should be marked as supporting async
*/
protected boolean isAsyncSecuritySupported() {
return true;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2019 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -27,7 +27,7 @@
* </p>
*
* <p>
* For further details pleaes consult <a href="https://www.w3.org/TR/clear-site-data/">W3C
* For further details please consult <a href="https://www.w3.org/TR/clear-site-data/">W3C
* Documentation</a>.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2018 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -23,7 +23,7 @@
import org.springframework.web.server.ServerWebExchange;

/**
* Writes the {@code Contet-Security-Policy} response header with configured policy
* Writes the {@code Content-Security-Policy} response header with configured policy
* directives.
*
* @author Vedran Pavic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* There is no <a href=
* "https://www.w3.org/TR/webauthn-3/#dom-authenticatorselectioncriteria-requireresidentkey">requireResidentKey</a>
* property because it is only for backwards compatability with WebAuthn Level 1.
* property because it is only for backwards compatibility with WebAuthn Level 1.
*
* @author Rob Winch
* @since 6.4
Expand All @@ -40,7 +40,7 @@ public final class AuthenticatorSelectionCriteria {
private final UserVerificationRequirement userVerification;

// NOTE: There is no requireResidentKey property because it is only for backward
// compatability with WebAuthn Level 1
// compatibility with WebAuthn Level 1

/**
* Creates a new instance
Expand Down Expand Up @@ -79,7 +79,7 @@ public AuthenticatorAttachment getAuthenticatorAttachment() {
* to create a <a href=
* "https://www.w3.org/TR/webauthn-3/#client-side-discoverable-credential">client-side
* discoverable credential</a>.
* @return the residenty key requirement
* @return the resident key requirement
*/
public ResidentKeyRequirement getResidentKey() {
return this.residentKey;
Expand Down