From 91a5a6c266756c94fe44df4d889bd75521baf0f7 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Sat, 29 Mar 2008 14:49:40 +0000 Subject: [PATCH] SEC-737: sandboxed captcha --- {captcha => sandbox/captcha}/pom.xml | 0 .../AlwaysTestAfterMaxRequestsCaptchaChannelProcessor.java | 0 .../AlwaysTestAfterTimeInMillisCaptchaChannelProcessor.java | 0 ...stBelowAverageTimeInMillisBetweenRequestsChannelProcessor.java | 0 .../security/captcha/CaptchaChannelProcessorTemplate.java | 0 .../org/springframework/security/captcha/CaptchaEntryPoint.java | 0 .../springframework/security/captcha/CaptchaSecurityContext.java | 0 .../security/captcha/CaptchaSecurityContextImpl.java | 0 .../org/springframework/security/captcha/CaptchaServiceProxy.java | 0 .../security/captcha/CaptchaValidationProcessingFilter.java | 0 .../captcha/TestOnceAfterMaxRequestsCaptchaChannelProcessor.java | 0 .../main/java/org/springframework/security/captcha/package.html | 0 .../AlwaysTestAfterMaxRequestsCaptchaChannelProcessorTests.java | 0 .../AlwaysTestAfterTimeInMillisCaptchaChannelProcessorTests.java | 0 ...owAverageTimeInMillisBetweenRequestsChannelProcessorTests.java | 0 .../security/captcha/CaptchaChannelProcessorTemplateTests.java | 0 .../springframework/security/captcha/CaptchaEntryPointTests.java | 0 .../security/captcha/CaptchaSecurityContextImplTests.java | 0 .../security/captcha/CaptchaValidationProcessingFilterTests.java | 0 .../springframework/security/captcha/MockCaptchaServiceProxy.java | 0 .../TestOnceAfterMaxRequestsCaptchaChannelProcessorTests.java | 0 21 files changed, 0 insertions(+), 0 deletions(-) rename {captcha => sandbox/captcha}/pom.xml (100%) rename {captcha => sandbox/captcha}/src/main/java/org/springframework/security/captcha/AlwaysTestAfterMaxRequestsCaptchaChannelProcessor.java (100%) rename {captcha => sandbox/captcha}/src/main/java/org/springframework/security/captcha/AlwaysTestAfterTimeInMillisCaptchaChannelProcessor.java (100%) rename {captcha => sandbox/captcha}/src/main/java/org/springframework/security/captcha/AlwaysTestBelowAverageTimeInMillisBetweenRequestsChannelProcessor.java (100%) rename {captcha => sandbox/captcha}/src/main/java/org/springframework/security/captcha/CaptchaChannelProcessorTemplate.java (100%) rename {captcha => sandbox/captcha}/src/main/java/org/springframework/security/captcha/CaptchaEntryPoint.java (100%) rename {captcha => sandbox/captcha}/src/main/java/org/springframework/security/captcha/CaptchaSecurityContext.java (100%) rename {captcha => sandbox/captcha}/src/main/java/org/springframework/security/captcha/CaptchaSecurityContextImpl.java (100%) rename {captcha => sandbox/captcha}/src/main/java/org/springframework/security/captcha/CaptchaServiceProxy.java (100%) rename {captcha => sandbox/captcha}/src/main/java/org/springframework/security/captcha/CaptchaValidationProcessingFilter.java (100%) rename {captcha => sandbox/captcha}/src/main/java/org/springframework/security/captcha/TestOnceAfterMaxRequestsCaptchaChannelProcessor.java (100%) rename {captcha => sandbox/captcha}/src/main/java/org/springframework/security/captcha/package.html (100%) rename {captcha => sandbox/captcha}/src/test/java/org/springframework/security/captcha/AlwaysTestAfterMaxRequestsCaptchaChannelProcessorTests.java (100%) rename {captcha => sandbox/captcha}/src/test/java/org/springframework/security/captcha/AlwaysTestAfterTimeInMillisCaptchaChannelProcessorTests.java (100%) rename {captcha => sandbox/captcha}/src/test/java/org/springframework/security/captcha/AlwaysTestBelowAverageTimeInMillisBetweenRequestsChannelProcessorTests.java (100%) rename {captcha => sandbox/captcha}/src/test/java/org/springframework/security/captcha/CaptchaChannelProcessorTemplateTests.java (100%) rename {captcha => sandbox/captcha}/src/test/java/org/springframework/security/captcha/CaptchaEntryPointTests.java (100%) rename {captcha => sandbox/captcha}/src/test/java/org/springframework/security/captcha/CaptchaSecurityContextImplTests.java (100%) rename {captcha => sandbox/captcha}/src/test/java/org/springframework/security/captcha/CaptchaValidationProcessingFilterTests.java (100%) rename {captcha => sandbox/captcha}/src/test/java/org/springframework/security/captcha/MockCaptchaServiceProxy.java (100%) rename {captcha => sandbox/captcha}/src/test/java/org/springframework/security/captcha/TestOnceAfterMaxRequestsCaptchaChannelProcessorTests.java (100%) diff --git a/captcha/pom.xml b/sandbox/captcha/pom.xml similarity index 100% rename from captcha/pom.xml rename to sandbox/captcha/pom.xml diff --git a/captcha/src/main/java/org/springframework/security/captcha/AlwaysTestAfterMaxRequestsCaptchaChannelProcessor.java b/sandbox/captcha/src/main/java/org/springframework/security/captcha/AlwaysTestAfterMaxRequestsCaptchaChannelProcessor.java similarity index 100% rename from captcha/src/main/java/org/springframework/security/captcha/AlwaysTestAfterMaxRequestsCaptchaChannelProcessor.java rename to sandbox/captcha/src/main/java/org/springframework/security/captcha/AlwaysTestAfterMaxRequestsCaptchaChannelProcessor.java diff --git a/captcha/src/main/java/org/springframework/security/captcha/AlwaysTestAfterTimeInMillisCaptchaChannelProcessor.java b/sandbox/captcha/src/main/java/org/springframework/security/captcha/AlwaysTestAfterTimeInMillisCaptchaChannelProcessor.java similarity index 100% rename from captcha/src/main/java/org/springframework/security/captcha/AlwaysTestAfterTimeInMillisCaptchaChannelProcessor.java rename to sandbox/captcha/src/main/java/org/springframework/security/captcha/AlwaysTestAfterTimeInMillisCaptchaChannelProcessor.java diff --git a/captcha/src/main/java/org/springframework/security/captcha/AlwaysTestBelowAverageTimeInMillisBetweenRequestsChannelProcessor.java b/sandbox/captcha/src/main/java/org/springframework/security/captcha/AlwaysTestBelowAverageTimeInMillisBetweenRequestsChannelProcessor.java similarity index 100% rename from captcha/src/main/java/org/springframework/security/captcha/AlwaysTestBelowAverageTimeInMillisBetweenRequestsChannelProcessor.java rename to sandbox/captcha/src/main/java/org/springframework/security/captcha/AlwaysTestBelowAverageTimeInMillisBetweenRequestsChannelProcessor.java diff --git a/captcha/src/main/java/org/springframework/security/captcha/CaptchaChannelProcessorTemplate.java b/sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaChannelProcessorTemplate.java similarity index 100% rename from captcha/src/main/java/org/springframework/security/captcha/CaptchaChannelProcessorTemplate.java rename to sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaChannelProcessorTemplate.java diff --git a/captcha/src/main/java/org/springframework/security/captcha/CaptchaEntryPoint.java b/sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaEntryPoint.java similarity index 100% rename from captcha/src/main/java/org/springframework/security/captcha/CaptchaEntryPoint.java rename to sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaEntryPoint.java diff --git a/captcha/src/main/java/org/springframework/security/captcha/CaptchaSecurityContext.java b/sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaSecurityContext.java similarity index 100% rename from captcha/src/main/java/org/springframework/security/captcha/CaptchaSecurityContext.java rename to sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaSecurityContext.java diff --git a/captcha/src/main/java/org/springframework/security/captcha/CaptchaSecurityContextImpl.java b/sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaSecurityContextImpl.java similarity index 100% rename from captcha/src/main/java/org/springframework/security/captcha/CaptchaSecurityContextImpl.java rename to sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaSecurityContextImpl.java diff --git a/captcha/src/main/java/org/springframework/security/captcha/CaptchaServiceProxy.java b/sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaServiceProxy.java similarity index 100% rename from captcha/src/main/java/org/springframework/security/captcha/CaptchaServiceProxy.java rename to sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaServiceProxy.java diff --git a/captcha/src/main/java/org/springframework/security/captcha/CaptchaValidationProcessingFilter.java b/sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaValidationProcessingFilter.java similarity index 100% rename from captcha/src/main/java/org/springframework/security/captcha/CaptchaValidationProcessingFilter.java rename to sandbox/captcha/src/main/java/org/springframework/security/captcha/CaptchaValidationProcessingFilter.java diff --git a/captcha/src/main/java/org/springframework/security/captcha/TestOnceAfterMaxRequestsCaptchaChannelProcessor.java b/sandbox/captcha/src/main/java/org/springframework/security/captcha/TestOnceAfterMaxRequestsCaptchaChannelProcessor.java similarity index 100% rename from captcha/src/main/java/org/springframework/security/captcha/TestOnceAfterMaxRequestsCaptchaChannelProcessor.java rename to sandbox/captcha/src/main/java/org/springframework/security/captcha/TestOnceAfterMaxRequestsCaptchaChannelProcessor.java diff --git a/captcha/src/main/java/org/springframework/security/captcha/package.html b/sandbox/captcha/src/main/java/org/springframework/security/captcha/package.html similarity index 100% rename from captcha/src/main/java/org/springframework/security/captcha/package.html rename to sandbox/captcha/src/main/java/org/springframework/security/captcha/package.html diff --git a/captcha/src/test/java/org/springframework/security/captcha/AlwaysTestAfterMaxRequestsCaptchaChannelProcessorTests.java b/sandbox/captcha/src/test/java/org/springframework/security/captcha/AlwaysTestAfterMaxRequestsCaptchaChannelProcessorTests.java similarity index 100% rename from captcha/src/test/java/org/springframework/security/captcha/AlwaysTestAfterMaxRequestsCaptchaChannelProcessorTests.java rename to sandbox/captcha/src/test/java/org/springframework/security/captcha/AlwaysTestAfterMaxRequestsCaptchaChannelProcessorTests.java diff --git a/captcha/src/test/java/org/springframework/security/captcha/AlwaysTestAfterTimeInMillisCaptchaChannelProcessorTests.java b/sandbox/captcha/src/test/java/org/springframework/security/captcha/AlwaysTestAfterTimeInMillisCaptchaChannelProcessorTests.java similarity index 100% rename from captcha/src/test/java/org/springframework/security/captcha/AlwaysTestAfterTimeInMillisCaptchaChannelProcessorTests.java rename to sandbox/captcha/src/test/java/org/springframework/security/captcha/AlwaysTestAfterTimeInMillisCaptchaChannelProcessorTests.java diff --git a/captcha/src/test/java/org/springframework/security/captcha/AlwaysTestBelowAverageTimeInMillisBetweenRequestsChannelProcessorTests.java b/sandbox/captcha/src/test/java/org/springframework/security/captcha/AlwaysTestBelowAverageTimeInMillisBetweenRequestsChannelProcessorTests.java similarity index 100% rename from captcha/src/test/java/org/springframework/security/captcha/AlwaysTestBelowAverageTimeInMillisBetweenRequestsChannelProcessorTests.java rename to sandbox/captcha/src/test/java/org/springframework/security/captcha/AlwaysTestBelowAverageTimeInMillisBetweenRequestsChannelProcessorTests.java diff --git a/captcha/src/test/java/org/springframework/security/captcha/CaptchaChannelProcessorTemplateTests.java b/sandbox/captcha/src/test/java/org/springframework/security/captcha/CaptchaChannelProcessorTemplateTests.java similarity index 100% rename from captcha/src/test/java/org/springframework/security/captcha/CaptchaChannelProcessorTemplateTests.java rename to sandbox/captcha/src/test/java/org/springframework/security/captcha/CaptchaChannelProcessorTemplateTests.java diff --git a/captcha/src/test/java/org/springframework/security/captcha/CaptchaEntryPointTests.java b/sandbox/captcha/src/test/java/org/springframework/security/captcha/CaptchaEntryPointTests.java similarity index 100% rename from captcha/src/test/java/org/springframework/security/captcha/CaptchaEntryPointTests.java rename to sandbox/captcha/src/test/java/org/springframework/security/captcha/CaptchaEntryPointTests.java diff --git a/captcha/src/test/java/org/springframework/security/captcha/CaptchaSecurityContextImplTests.java b/sandbox/captcha/src/test/java/org/springframework/security/captcha/CaptchaSecurityContextImplTests.java similarity index 100% rename from captcha/src/test/java/org/springframework/security/captcha/CaptchaSecurityContextImplTests.java rename to sandbox/captcha/src/test/java/org/springframework/security/captcha/CaptchaSecurityContextImplTests.java diff --git a/captcha/src/test/java/org/springframework/security/captcha/CaptchaValidationProcessingFilterTests.java b/sandbox/captcha/src/test/java/org/springframework/security/captcha/CaptchaValidationProcessingFilterTests.java similarity index 100% rename from captcha/src/test/java/org/springframework/security/captcha/CaptchaValidationProcessingFilterTests.java rename to sandbox/captcha/src/test/java/org/springframework/security/captcha/CaptchaValidationProcessingFilterTests.java diff --git a/captcha/src/test/java/org/springframework/security/captcha/MockCaptchaServiceProxy.java b/sandbox/captcha/src/test/java/org/springframework/security/captcha/MockCaptchaServiceProxy.java similarity index 100% rename from captcha/src/test/java/org/springframework/security/captcha/MockCaptchaServiceProxy.java rename to sandbox/captcha/src/test/java/org/springframework/security/captcha/MockCaptchaServiceProxy.java diff --git a/captcha/src/test/java/org/springframework/security/captcha/TestOnceAfterMaxRequestsCaptchaChannelProcessorTests.java b/sandbox/captcha/src/test/java/org/springframework/security/captcha/TestOnceAfterMaxRequestsCaptchaChannelProcessorTests.java similarity index 100% rename from captcha/src/test/java/org/springframework/security/captcha/TestOnceAfterMaxRequestsCaptchaChannelProcessorTests.java rename to sandbox/captcha/src/test/java/org/springframework/security/captcha/TestOnceAfterMaxRequestsCaptchaChannelProcessorTests.java