Browse Source

Fix typo 'properites' in documentation

Fixes gh-8095
pull/8721/head
Markus Engelbrecht 6 years ago committed by Josh Cummings
parent
commit
475a53233d
No known key found for this signature in database
GPG Key ID: 49EF60DD7FF83443
  1. 2
      cas/src/main/java/org/springframework/security/cas/web/authentication/ServiceAuthenticationDetailsSource.java
  2. 2
      config/src/main/java/org/springframework/security/config/annotation/web/configurers/AbstractAuthenticationFilterConfigurer.java
  3. 2
      core/src/main/java/org/springframework/security/authentication/jaas/JaasAuthenticationProvider.java
  4. 2
      test/src/main/java/org/springframework/security/test/context/support/WithMockUserSecurityContextFactory.java

2
cas/src/main/java/org/springframework/security/cas/web/authentication/ServiceAuthenticationDetailsSource.java

@ -47,7 +47,7 @@ public class ServiceAuthenticationDetailsSource implements @@ -47,7 +47,7 @@ public class ServiceAuthenticationDetailsSource implements
// ===================================================================================================
/**
* Creates an implementation that uses the specified ServiceProperites and the default
* Creates an implementation that uses the specified ServiceProperties and the default
* CAS artifactParameterName.
*
* @param serviceProperties The ServiceProperties to use to construct the serviceUrl.

2
config/src/main/java/org/springframework/security/config/annotation/web/configurers/AbstractAuthenticationFilterConfigurer.java

@ -168,7 +168,7 @@ public abstract class AbstractAuthenticationFilterConfigurer<B extends HttpSecur @@ -168,7 +168,7 @@ public abstract class AbstractAuthenticationFilterConfigurer<B extends HttpSecur
/**
* Specifies the {@link AuthenticationSuccessHandler} to be used. The default is
* {@link SavedRequestAwareAuthenticationSuccessHandler} with no additional properites
* {@link SavedRequestAwareAuthenticationSuccessHandler} with no additional properties
* set.
*
* @param successHandler the {@link AuthenticationSuccessHandler}.

2
core/src/main/java/org/springframework/security/authentication/jaas/JaasAuthenticationProvider.java

@ -129,7 +129,7 @@ import org.springframework.util.Assert; @@ -129,7 +129,7 @@ import org.springframework.util.Assert;
* &lt;/property&gt;
* </pre>
*
* A configuration note: The JaasAuthenticationProvider uses the security properites
* A configuration note: The JaasAuthenticationProvider uses the security properties
* "login.config.url.X" to configure jaas. If you would like to customize the way Jaas
* gets configured, create a subclass of this and override the
* {@link #configureJaas(Resource)} method.

2
test/src/main/java/org/springframework/security/test/context/support/WithMockUserSecurityContextFactory.java

@ -43,7 +43,7 @@ final class WithMockUserSecurityContextFactory implements @@ -43,7 +43,7 @@ final class WithMockUserSecurityContextFactory implements
.username() : withUser.value();
if (username == null) {
throw new IllegalArgumentException(withUser
+ " cannot have null username on both username and value properites");
+ " cannot have null username on both username and value properties");
}
List<GrantedAuthority> grantedAuthorities = new ArrayList<>();

Loading…
Cancel
Save