From f7914da96349bf8cc67123239fd6f023b76b7e29 Mon Sep 17 00:00:00 2001 From: elong Date: Fri, 21 Sep 2018 13:19:08 -0400 Subject: [PATCH] 0003733: Logging for authorization denied --- .../symmetric/web/ServerSymmetricEngine.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/symmetric-server/src/main/java/org/jumpmind/symmetric/web/ServerSymmetricEngine.java b/symmetric-server/src/main/java/org/jumpmind/symmetric/web/ServerSymmetricEngine.java index efe0185bc6..5846d20ffa 100644 --- a/symmetric-server/src/main/java/org/jumpmind/symmetric/web/ServerSymmetricEngine.java +++ b/symmetric-server/src/main/java/org/jumpmind/symmetric/web/ServerSymmetricEngine.java @@ -84,17 +84,17 @@ protected void init() { this.uriHandlers.add(new BandwidthSamplerUriHandler(parameterService, customInterceptors)); this.uriHandlers.add(new PullUriHandler(parameterService, nodeService, configurationService, dataExtractorService, registrationService, statisticManager, outgoingBatchService, - add(customInterceptors, concurrencyInterceptor, authInterceptor))); + add(customInterceptors, authInterceptor, concurrencyInterceptor))); this.uriHandlers.add(new PushUriHandler(parameterService, dataLoaderService, - statisticManager, nodeService, add(customInterceptors, concurrencyInterceptor, authInterceptor))); + statisticManager, nodeService, add(customInterceptors, authInterceptor, concurrencyInterceptor))); this.uriHandlers.add(new PushStatusUriHandler(parameterService, nodeCommunicationService, - add(customInterceptors, concurrencyInterceptor, authInterceptor))); + add(customInterceptors, authInterceptor, concurrencyInterceptor))); this.uriHandlers.add(new RegistrationUriHandler(parameterService, registrationService, add(customInterceptors, concurrencyInterceptor))); this.uriHandlers.add(new ConfigurationUriHandler(parameterService, dataExtractorService, - add(customInterceptors, concurrencyInterceptor, authInterceptor))); - this.uriHandlers.add(new FileSyncPullUriHandler(this, add(customInterceptors, concurrencyInterceptor, authInterceptor))); - this.uriHandlers.add(new FileSyncPushUriHandler(this, add(customInterceptors, concurrencyInterceptor, authInterceptor))); + add(customInterceptors, authInterceptor, concurrencyInterceptor))); + this.uriHandlers.add(new FileSyncPullUriHandler(this, add(customInterceptors, authInterceptor, concurrencyInterceptor))); + this.uriHandlers.add(new FileSyncPushUriHandler(this, add(customInterceptors, authInterceptor, concurrencyInterceptor))); this.uriHandlers.add(new CopyNodeUriHandler(this, add(customInterceptors, authInterceptor))); if (parameterService.is(ParameterConstants.WEB_BATCH_URI_HANDLER_ENABLE)) { this.uriHandlers.add(new BatchUriHandler(parameterService, dataExtractorService, customInterceptors));