This website requires JavaScript.
Explore
Help
Sign In
Cwikius-Spring
/
spring-security
Watch
1
Star
0
Fork
0
You've already forked spring-security
mirror of
synced
2026-08-05 01:36:56 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Move oauth2 samples under boot directory
Browse Source
Issue gh-5397
...
This commit is contained in:
Joe Grandja
2018-06-06 09:37:22 -04:00
parent
7ba48e22ec
commit
81e19ad85e
29 changed files
with
3 additions
and
3 deletions
Show all changes
Ignore whitespace when comparing lines
Ignore changes in amount of whitespace
Ignore changes in whitespace at EOL
Download Patch File
Download Diff File
Expand all files
Collapse all files
samples/boot/oauth2/authcodegrant/README.adoc → samples/boot/authcodegrant/README.adoc
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/authcodegrant/spring-security-samples-boot-oauth2-authcodegrant.gradle → samples/boot/authcodegrant/spring-security-samples-boot-authcodegrant.gradle
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/authcodegrant/src/integration-test/java/org/springframework/security/samples/OAuth2AuthorizationCodeGrantApplicationTests.java → samples/boot/authcodegrant/src/integration-test/java/org/springframework/security/samples/OAuth2AuthorizationCodeGrantApplicationTests.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/authcodegrant/src/main/java/sample/OAuth2AuthorizationCodeGrantApplication.java → samples/boot/authcodegrant/src/main/java/sample/OAuth2AuthorizationCodeGrantApplication.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/authcodegrant/src/main/java/sample/config/SecurityConfig.java → samples/boot/authcodegrant/src/main/java/sample/config/SecurityConfig.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/authcodegrant/src/main/java/sample/config/WebClientConfig.java → samples/boot/authcodegrant/src/main/java/sample/config/WebClientConfig.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/authcodegrant/src/main/java/sample/web/GitHubReposController.java → samples/boot/authcodegrant/src/main/java/sample/web/GitHubReposController.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/authcodegrant/src/main/resources/application.yml → samples/boot/authcodegrant/src/main/resources/application.yml
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/authcodegrant/src/main/resources/templates/github-repos.html → samples/boot/authcodegrant/src/main/resources/templates/github-repos.html
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login-webflux/README.adoc → samples/boot/oauth2login-webflux/README.adoc
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login-webflux/spring-security-samples-boot-oauth2-oauth2login-webflux.gradle → samples/boot/oauth2login-webflux/spring-security-samples-boot-oauth2login-webflux.gradle
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login-webflux/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/client/ReactiveOAuth2ClientAutoConfiguration.java → samples/boot/oauth2login-webflux/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/client/ReactiveOAuth2ClientAutoConfiguration.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login-webflux/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/client/ReactiveOAuth2ClientRegistrationRepositoryConfiguration.java → samples/boot/oauth2login-webflux/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/client/ReactiveOAuth2ClientRegistrationRepositoryConfiguration.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login-webflux/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/client/ReactiveOAuth2WebSecurityConfiguration.java → samples/boot/oauth2login-webflux/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/client/ReactiveOAuth2WebSecurityConfiguration.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login-webflux/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/client/package-info.java → samples/boot/oauth2login-webflux/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/client/package-info.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login-webflux/src/main/java/sample/ReactiveOAuth2LoginApplication.java → samples/boot/oauth2login-webflux/src/main/java/sample/ReactiveOAuth2LoginApplication.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login-webflux/src/main/java/sample/web/OAuth2LoginController.java → samples/boot/oauth2login-webflux/src/main/java/sample/web/OAuth2LoginController.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login-webflux/src/main/resources/META-INF/spring.factories → samples/boot/oauth2login-webflux/src/main/resources/META-INF/spring.factories
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login-webflux/src/main/resources/application.yml → samples/boot/oauth2login-webflux/src/main/resources/application.yml
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login-webflux/src/main/resources/templates/index.html → samples/boot/oauth2login-webflux/src/main/resources/templates/index.html
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login/README.adoc → samples/boot/oauth2login/README.adoc
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login/spring-security-samples-boot-oauth2-oauth2login.gradle → samples/boot/oauth2login/spring-security-samples-boot-oauth2login.gradle
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login/src/integration-test/java/org/springframework/security/samples/OAuth2LoginApplicationTests.java → samples/boot/oauth2login/src/integration-test/java/org/springframework/security/samples/OAuth2LoginApplicationTests.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login/src/main/java/sample/OAuth2LoginApplication.java → samples/boot/oauth2login/src/main/java/sample/OAuth2LoginApplication.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login/src/main/java/sample/web/OAuth2LoginController.java → samples/boot/oauth2login/src/main/java/sample/web/OAuth2LoginController.java
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login/src/main/resources/application.yml → samples/boot/oauth2login/src/main/resources/application.yml
Unescape
Escape
Copy filename
View File
samples/boot/oauth2/oauth2login/src/main/resources/templates/index.html → samples/boot/oauth2login/src/main/resources/templates/index.html
Unescape
Escape
Copy filename
View File
Write
Preview
Loading…
x
Add
Cancel
Save
Reference in New Issue
Repository
Cwikius-Spring/spring-security
Title
Body
Create Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues.
Learn more about blocking a user.
User to block:
Optional note:
The note is not visible to the blocked user.
Cancel
Block