Skip to content
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
1 change: 1 addition & 0 deletions kerberos/kerberos-web/spring-security-kerberos-web.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id 'io.spring.convention.spring-module'
id 'javadoc-warnings-error'
}

description = 'Spring Security Kerberos Web'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

/**
* Parses the SPNEGO authentication Header, which was generated by the browser and creates
* a {@link KerberosServiceRequestToken} out if it. It will then call the
* a {@link KerberosServiceRequestToken} out of it. It will then call the
* {@link AuthenticationManager}.
*
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ public SpnegoEntryPoint(String forwardUrl) {

/**
* Instantiates a new spnego entry point. This constructor enables security
* configuration to use SPNEGO in combination a fallback page (login form, custom 401
* page ...). The forward URL will be accessed via provided HTTP method.
* configuration to use SPNEGO in combination with a fallback page (login form, custom
* 401 page ...). The forward URL will be accessed via provided HTTP method.
* @param forwardUrl URL where the login page can be found. Should be relative to the
* web-app context path (include a leading {@code /}) and can't be absolute URL.
* @param forwardMethod HTTP method to use when accessing the forward URL
Expand Down
Loading