├── .gitignore ├── .idea └── libraries │ └── Maven__com_allanditzel_spring_security_csrf_token_filter_1_1.xml ├── README.md ├── pom.xml ├── restsecurity.iml ├── src └── main │ ├── java │ └── codesandnotes │ │ └── restsecurity │ │ ├── Application.java │ │ ├── ApplicationSecurity.java │ │ ├── HelloweenWebService.java │ │ ├── RESTAuthenticationEntryPoint.java │ │ ├── RESTAuthenticationFailureHandler.java │ │ └── RESTAuthenticationSuccessHandler.java │ └── webapp │ ├── index.html │ ├── index.js │ ├── lib │ ├── jquery.cookie.js │ └── jquery.min.js │ ├── login.html │ ├── login.js │ └── utils.js └── target ├── MANIFEST.MF └── classes └── codesandnotes └── restsecurity ├── Application.class ├── ApplicationSecurity.class ├── HelloweenWebService$HelloweenResponse.class ├── HelloweenWebService.class ├── RESTAuthenticationEntryPoint.class ├── RESTAuthenticationFailureHandler.class └── RESTAuthenticationSuccessHandler.class /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_allanditzel_spring_security_csrf_token_filter_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/.idea/libraries/Maven__com_allanditzel_spring_security_csrf_token_filter_1_1.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/pom.xml -------------------------------------------------------------------------------- /restsecurity.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/restsecurity.iml -------------------------------------------------------------------------------- /src/main/java/codesandnotes/restsecurity/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/java/codesandnotes/restsecurity/Application.java -------------------------------------------------------------------------------- /src/main/java/codesandnotes/restsecurity/ApplicationSecurity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/java/codesandnotes/restsecurity/ApplicationSecurity.java -------------------------------------------------------------------------------- /src/main/java/codesandnotes/restsecurity/HelloweenWebService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/java/codesandnotes/restsecurity/HelloweenWebService.java -------------------------------------------------------------------------------- /src/main/java/codesandnotes/restsecurity/RESTAuthenticationEntryPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/java/codesandnotes/restsecurity/RESTAuthenticationEntryPoint.java -------------------------------------------------------------------------------- /src/main/java/codesandnotes/restsecurity/RESTAuthenticationFailureHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/java/codesandnotes/restsecurity/RESTAuthenticationFailureHandler.java -------------------------------------------------------------------------------- /src/main/java/codesandnotes/restsecurity/RESTAuthenticationSuccessHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/java/codesandnotes/restsecurity/RESTAuthenticationSuccessHandler.java -------------------------------------------------------------------------------- /src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/webapp/index.html -------------------------------------------------------------------------------- /src/main/webapp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/webapp/index.js -------------------------------------------------------------------------------- /src/main/webapp/lib/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/webapp/lib/jquery.cookie.js -------------------------------------------------------------------------------- /src/main/webapp/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/webapp/lib/jquery.min.js -------------------------------------------------------------------------------- /src/main/webapp/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/webapp/login.html -------------------------------------------------------------------------------- /src/main/webapp/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/webapp/login.js -------------------------------------------------------------------------------- /src/main/webapp/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/src/main/webapp/utils.js -------------------------------------------------------------------------------- /target/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/target/MANIFEST.MF -------------------------------------------------------------------------------- /target/classes/codesandnotes/restsecurity/Application.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/target/classes/codesandnotes/restsecurity/Application.class -------------------------------------------------------------------------------- /target/classes/codesandnotes/restsecurity/ApplicationSecurity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/target/classes/codesandnotes/restsecurity/ApplicationSecurity.class -------------------------------------------------------------------------------- /target/classes/codesandnotes/restsecurity/HelloweenWebService$HelloweenResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/target/classes/codesandnotes/restsecurity/HelloweenWebService$HelloweenResponse.class -------------------------------------------------------------------------------- /target/classes/codesandnotes/restsecurity/HelloweenWebService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/target/classes/codesandnotes/restsecurity/HelloweenWebService.class -------------------------------------------------------------------------------- /target/classes/codesandnotes/restsecurity/RESTAuthenticationEntryPoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/target/classes/codesandnotes/restsecurity/RESTAuthenticationEntryPoint.class -------------------------------------------------------------------------------- /target/classes/codesandnotes/restsecurity/RESTAuthenticationFailureHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/target/classes/codesandnotes/restsecurity/RESTAuthenticationFailureHandler.class -------------------------------------------------------------------------------- /target/classes/codesandnotes/restsecurity/RESTAuthenticationSuccessHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codesandnotes/restsecurity/HEAD/target/classes/codesandnotes/restsecurity/RESTAuthenticationSuccessHandler.class --------------------------------------------------------------------------------