From 712b1116247eea3e5e97d8883ce62b78b0a63dfc Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Thu, 21 Mar 2019 15:27:16 -0500 Subject: [PATCH] URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * [ ] http://www.apache.org/licenses/ with 1 occurrences migrated to: https://www.apache.org/licenses/ ([https](https://www.apache.org/licenses/) result 200). * [ ] http://www.apache.org/licenses/LICENSE-2.0 with 53 occurrences migrated to: https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200). --- src/dist/license.txt | 4 ++-- .../splunk/config/xml/SplunkInboundChannelAdapterParser.java | 2 +- .../integration/splunk/config/xml/SplunkNamespaceHandler.java | 2 +- .../splunk/config/xml/SplunkOutboundChannelAdapterParser.java | 2 +- .../integration/splunk/config/xml/SplunkParserUtils.java | 2 +- .../integration/splunk/config/xml/SplunkServerParser.java | 2 +- .../springframework/integration/splunk/core/DataReader.java | 2 +- .../springframework/integration/splunk/core/DataWriter.java | 2 +- .../integration/splunk/core/ServiceFactory.java | 2 +- .../integration/splunk/event/AcManagementEvent.java | 2 +- .../springframework/integration/splunk/event/AuthEvent.java | 2 +- .../springframework/integration/splunk/event/DnsEvent.java | 2 +- .../springframework/integration/splunk/event/EmailEvent.java | 2 +- .../integration/splunk/event/EndpointProtectionEvent.java | 2 +- .../springframework/integration/splunk/event/FileEvent.java | 2 +- .../integration/splunk/event/IntrusionDetectionEvent.java | 2 +- .../splunk/event/MalwareEndpointProtectionEvent.java | 2 +- .../splunk/event/MalwareNetworkProtectionEvent.java | 2 +- .../integration/splunk/event/NetworkProtectionEvent.java | 2 +- .../integration/splunk/event/NetworkTrafficEssEvent.java | 2 +- .../integration/splunk/event/NetworkTrafficGenericEvent.java | 2 +- .../integration/splunk/event/PacketFilterEvent.java | 2 +- .../springframework/integration/splunk/event/ProxyEvent.java | 2 +- .../springframework/integration/splunk/event/SplunkEvent.java | 2 +- .../integration/splunk/event/SystemCenterEvent.java | 2 +- .../integration/splunk/event/TrafficEvent.java | 2 +- .../integration/splunk/event/UserInfoUpdateEvent.java | 2 +- .../integration/splunk/event/VulnerabilityEvent.java | 2 +- .../integration/splunk/event/WindowsAdminEvent.java | 2 +- .../splunk/inbound/SplunkPollingChannelAdapter.java | 2 +- .../splunk/outbound/SplunkOutboundChannelAdapter.java | 2 +- .../integration/splunk/support/AbstractSplunkDataWriter.java | 2 +- .../integration/splunk/support/ArgsBuilder.java | 2 +- .../integration/splunk/support/SearchMode.java | 2 +- .../integration/splunk/support/SplunkArgsFactoryBean.java | 2 +- .../integration/splunk/support/SplunkDataReader.java | 2 +- .../integration/splunk/support/SplunkExecutor.java | 2 +- .../integration/splunk/support/SplunkIndexWriter.java | 2 +- .../integration/splunk/support/SplunkServer.java | 2 +- .../integration/splunk/support/SplunkServiceFactory.java | 2 +- .../integration/splunk/support/SplunkSubmitWriter.java | 2 +- .../integration/splunk/support/SplunkTcpWriter.java | 2 +- .../SplunkInboundChannelAdapterParserSavedSearchTests.java | 2 +- .../config/xml/SplunkInboundChannelAdapterParserTests.java | 2 +- .../xml/SplunkOutboundChannelAdapterParserStreamTests.java | 2 +- .../config/xml/SplunkOutboundChannelAdapterParserTests.java | 2 +- .../splunk/config/xml/SplunkServerParserTests.java | 2 +- .../integration/splunk/event/SplunkEventTests.java | 2 +- .../splunk/inbound/SplunkPollingChannelAdapterTests.java | 2 +- .../splunk/outbound/SplunkOutboundChannelAdapterTests.java | 2 +- .../integration/splunk/support/SplunkDataReaderTests.java | 2 +- .../integration/splunk/support/SplunkDataWriterTests.java | 2 +- .../integration/splunk/support/SplunkExecutorTests.java | 2 +- 53 files changed, 54 insertions(+), 54 deletions(-) diff --git a/src/dist/license.txt b/src/dist/license.txt index 261eeb9..20e4bd8 100644 --- a/src/dist/license.txt +++ b/src/dist/license.txt @@ -1,6 +1,6 @@ Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -192,7 +192,7 @@ you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParser.java b/src/main/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParser.java index b9ccad9..41ebe53 100644 --- a/src/main/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParser.java +++ b/src/main/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParser.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/config/xml/SplunkNamespaceHandler.java b/src/main/java/org/springframework/integration/splunk/config/xml/SplunkNamespaceHandler.java index c9789e9..6051866 100644 --- a/src/main/java/org/springframework/integration/splunk/config/xml/SplunkNamespaceHandler.java +++ b/src/main/java/org/springframework/integration/splunk/config/xml/SplunkNamespaceHandler.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParser.java b/src/main/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParser.java index 5194a73..9e76901 100644 --- a/src/main/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParser.java +++ b/src/main/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParser.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/config/xml/SplunkParserUtils.java b/src/main/java/org/springframework/integration/splunk/config/xml/SplunkParserUtils.java index 53cdc7e..05a76ee 100644 --- a/src/main/java/org/springframework/integration/splunk/config/xml/SplunkParserUtils.java +++ b/src/main/java/org/springframework/integration/splunk/config/xml/SplunkParserUtils.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/config/xml/SplunkServerParser.java b/src/main/java/org/springframework/integration/splunk/config/xml/SplunkServerParser.java index e4d4baf..39b417e 100644 --- a/src/main/java/org/springframework/integration/splunk/config/xml/SplunkServerParser.java +++ b/src/main/java/org/springframework/integration/splunk/config/xml/SplunkServerParser.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/core/DataReader.java b/src/main/java/org/springframework/integration/splunk/core/DataReader.java index 2bbdd2e..10d3132 100644 --- a/src/main/java/org/springframework/integration/splunk/core/DataReader.java +++ b/src/main/java/org/springframework/integration/splunk/core/DataReader.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/core/DataWriter.java b/src/main/java/org/springframework/integration/splunk/core/DataWriter.java index 607aa14..0a15900 100644 --- a/src/main/java/org/springframework/integration/splunk/core/DataWriter.java +++ b/src/main/java/org/springframework/integration/splunk/core/DataWriter.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/core/ServiceFactory.java b/src/main/java/org/springframework/integration/splunk/core/ServiceFactory.java index e6f7c41..c03a2a8 100644 --- a/src/main/java/org/springframework/integration/splunk/core/ServiceFactory.java +++ b/src/main/java/org/springframework/integration/splunk/core/ServiceFactory.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/AcManagementEvent.java b/src/main/java/org/springframework/integration/splunk/event/AcManagementEvent.java index 4a88cd4..50c9cf1 100644 --- a/src/main/java/org/springframework/integration/splunk/event/AcManagementEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/AcManagementEvent.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/event/AuthEvent.java b/src/main/java/org/springframework/integration/splunk/event/AuthEvent.java index 790452f..86c0a09 100644 --- a/src/main/java/org/springframework/integration/splunk/event/AuthEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/AuthEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/DnsEvent.java b/src/main/java/org/springframework/integration/splunk/event/DnsEvent.java index b066360..b605220 100644 --- a/src/main/java/org/springframework/integration/splunk/event/DnsEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/DnsEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/EmailEvent.java b/src/main/java/org/springframework/integration/splunk/event/EmailEvent.java index 17127cb..b0908c5 100644 --- a/src/main/java/org/springframework/integration/splunk/event/EmailEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/EmailEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/EndpointProtectionEvent.java b/src/main/java/org/springframework/integration/splunk/event/EndpointProtectionEvent.java index 2049d31..b6ba0da 100644 --- a/src/main/java/org/springframework/integration/splunk/event/EndpointProtectionEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/EndpointProtectionEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/FileEvent.java b/src/main/java/org/springframework/integration/splunk/event/FileEvent.java index 6d93864..d3ddd6b 100644 --- a/src/main/java/org/springframework/integration/splunk/event/FileEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/FileEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/IntrusionDetectionEvent.java b/src/main/java/org/springframework/integration/splunk/event/IntrusionDetectionEvent.java index 167d274..d9fbe4e 100644 --- a/src/main/java/org/springframework/integration/splunk/event/IntrusionDetectionEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/IntrusionDetectionEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/MalwareEndpointProtectionEvent.java b/src/main/java/org/springframework/integration/splunk/event/MalwareEndpointProtectionEvent.java index 789c18c..2bef4fb 100644 --- a/src/main/java/org/springframework/integration/splunk/event/MalwareEndpointProtectionEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/MalwareEndpointProtectionEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/MalwareNetworkProtectionEvent.java b/src/main/java/org/springframework/integration/splunk/event/MalwareNetworkProtectionEvent.java index 8dd4302..8a90ec4 100644 --- a/src/main/java/org/springframework/integration/splunk/event/MalwareNetworkProtectionEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/MalwareNetworkProtectionEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/NetworkProtectionEvent.java b/src/main/java/org/springframework/integration/splunk/event/NetworkProtectionEvent.java index 88556ec..f91f6a7 100644 --- a/src/main/java/org/springframework/integration/splunk/event/NetworkProtectionEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/NetworkProtectionEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/NetworkTrafficEssEvent.java b/src/main/java/org/springframework/integration/splunk/event/NetworkTrafficEssEvent.java index 97048b6..1f325c0 100644 --- a/src/main/java/org/springframework/integration/splunk/event/NetworkTrafficEssEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/NetworkTrafficEssEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/NetworkTrafficGenericEvent.java b/src/main/java/org/springframework/integration/splunk/event/NetworkTrafficGenericEvent.java index 72e9d9a..e9432b8 100644 --- a/src/main/java/org/springframework/integration/splunk/event/NetworkTrafficGenericEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/NetworkTrafficGenericEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/PacketFilterEvent.java b/src/main/java/org/springframework/integration/splunk/event/PacketFilterEvent.java index 56d2fcb..7823426 100644 --- a/src/main/java/org/springframework/integration/splunk/event/PacketFilterEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/PacketFilterEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/ProxyEvent.java b/src/main/java/org/springframework/integration/splunk/event/ProxyEvent.java index 24e06e3..b613c2a 100644 --- a/src/main/java/org/springframework/integration/splunk/event/ProxyEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/ProxyEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/SplunkEvent.java b/src/main/java/org/springframework/integration/splunk/event/SplunkEvent.java index e3725f6..a4563a8 100644 --- a/src/main/java/org/springframework/integration/splunk/event/SplunkEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/SplunkEvent.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/event/SystemCenterEvent.java b/src/main/java/org/springframework/integration/splunk/event/SystemCenterEvent.java index 7ead93c..3b030df 100644 --- a/src/main/java/org/springframework/integration/splunk/event/SystemCenterEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/SystemCenterEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/TrafficEvent.java b/src/main/java/org/springframework/integration/splunk/event/TrafficEvent.java index 14c9207..1e7b49a 100644 --- a/src/main/java/org/springframework/integration/splunk/event/TrafficEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/TrafficEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/UserInfoUpdateEvent.java b/src/main/java/org/springframework/integration/splunk/event/UserInfoUpdateEvent.java index 45325cc..9cf7f8c 100644 --- a/src/main/java/org/springframework/integration/splunk/event/UserInfoUpdateEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/UserInfoUpdateEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/VulnerabilityEvent.java b/src/main/java/org/springframework/integration/splunk/event/VulnerabilityEvent.java index 18d32fc..7fef37e 100644 --- a/src/main/java/org/springframework/integration/splunk/event/VulnerabilityEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/VulnerabilityEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/event/WindowsAdminEvent.java b/src/main/java/org/springframework/integration/splunk/event/WindowsAdminEvent.java index 5f5ecd3..e3b5f48 100644 --- a/src/main/java/org/springframework/integration/splunk/event/WindowsAdminEvent.java +++ b/src/main/java/org/springframework/integration/splunk/event/WindowsAdminEvent.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/inbound/SplunkPollingChannelAdapter.java b/src/main/java/org/springframework/integration/splunk/inbound/SplunkPollingChannelAdapter.java index 01f4cfd..0fabb0e 100644 --- a/src/main/java/org/springframework/integration/splunk/inbound/SplunkPollingChannelAdapter.java +++ b/src/main/java/org/springframework/integration/splunk/inbound/SplunkPollingChannelAdapter.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/outbound/SplunkOutboundChannelAdapter.java b/src/main/java/org/springframework/integration/splunk/outbound/SplunkOutboundChannelAdapter.java index ca5925c..a559667 100644 --- a/src/main/java/org/springframework/integration/splunk/outbound/SplunkOutboundChannelAdapter.java +++ b/src/main/java/org/springframework/integration/splunk/outbound/SplunkOutboundChannelAdapter.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/support/AbstractSplunkDataWriter.java b/src/main/java/org/springframework/integration/splunk/support/AbstractSplunkDataWriter.java index 1d480b9..25425ab 100644 --- a/src/main/java/org/springframework/integration/splunk/support/AbstractSplunkDataWriter.java +++ b/src/main/java/org/springframework/integration/splunk/support/AbstractSplunkDataWriter.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/support/ArgsBuilder.java b/src/main/java/org/springframework/integration/splunk/support/ArgsBuilder.java index 84d445a..12ae163 100644 --- a/src/main/java/org/springframework/integration/splunk/support/ArgsBuilder.java +++ b/src/main/java/org/springframework/integration/splunk/support/ArgsBuilder.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/support/SearchMode.java b/src/main/java/org/springframework/integration/splunk/support/SearchMode.java index 641c77d..5a7cc05 100644 --- a/src/main/java/org/springframework/integration/splunk/support/SearchMode.java +++ b/src/main/java/org/springframework/integration/splunk/support/SearchMode.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/support/SplunkArgsFactoryBean.java b/src/main/java/org/springframework/integration/splunk/support/SplunkArgsFactoryBean.java index 2e786d6..017e154 100644 --- a/src/main/java/org/springframework/integration/splunk/support/SplunkArgsFactoryBean.java +++ b/src/main/java/org/springframework/integration/splunk/support/SplunkArgsFactoryBean.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/support/SplunkDataReader.java b/src/main/java/org/springframework/integration/splunk/support/SplunkDataReader.java index 0eb626f..668366b 100644 --- a/src/main/java/org/springframework/integration/splunk/support/SplunkDataReader.java +++ b/src/main/java/org/springframework/integration/splunk/support/SplunkDataReader.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/support/SplunkExecutor.java b/src/main/java/org/springframework/integration/splunk/support/SplunkExecutor.java index c638dee..d1d7d89 100644 --- a/src/main/java/org/springframework/integration/splunk/support/SplunkExecutor.java +++ b/src/main/java/org/springframework/integration/splunk/support/SplunkExecutor.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/support/SplunkIndexWriter.java b/src/main/java/org/springframework/integration/splunk/support/SplunkIndexWriter.java index d0328d3..126915a 100644 --- a/src/main/java/org/springframework/integration/splunk/support/SplunkIndexWriter.java +++ b/src/main/java/org/springframework/integration/splunk/support/SplunkIndexWriter.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on diff --git a/src/main/java/org/springframework/integration/splunk/support/SplunkServer.java b/src/main/java/org/springframework/integration/splunk/support/SplunkServer.java index af77494..4a977d6 100644 --- a/src/main/java/org/springframework/integration/splunk/support/SplunkServer.java +++ b/src/main/java/org/springframework/integration/splunk/support/SplunkServer.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/main/java/org/springframework/integration/splunk/support/SplunkServiceFactory.java b/src/main/java/org/springframework/integration/splunk/support/SplunkServiceFactory.java index 936cac9..a097666 100644 --- a/src/main/java/org/springframework/integration/splunk/support/SplunkServiceFactory.java +++ b/src/main/java/org/springframework/integration/splunk/support/SplunkServiceFactory.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/support/SplunkSubmitWriter.java b/src/main/java/org/springframework/integration/splunk/support/SplunkSubmitWriter.java index c5e7369..7b5d7b1 100644 --- a/src/main/java/org/springframework/integration/splunk/support/SplunkSubmitWriter.java +++ b/src/main/java/org/springframework/integration/splunk/support/SplunkSubmitWriter.java @@ -5,7 +5,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/main/java/org/springframework/integration/splunk/support/SplunkTcpWriter.java b/src/main/java/org/springframework/integration/splunk/support/SplunkTcpWriter.java index 0e10542..da0e081 100644 --- a/src/main/java/org/springframework/integration/splunk/support/SplunkTcpWriter.java +++ b/src/main/java/org/springframework/integration/splunk/support/SplunkTcpWriter.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/test/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParserSavedSearchTests.java b/src/test/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParserSavedSearchTests.java index c3f7844..300a935 100644 --- a/src/test/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParserSavedSearchTests.java +++ b/src/test/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParserSavedSearchTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParserTests.java b/src/test/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParserTests.java index f10daf3..f582306 100644 --- a/src/test/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParserTests.java +++ b/src/test/java/org/springframework/integration/splunk/config/xml/SplunkInboundChannelAdapterParserTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParserStreamTests.java b/src/test/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParserStreamTests.java index 9e10243..ace5e43 100644 --- a/src/test/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParserStreamTests.java +++ b/src/test/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParserStreamTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParserTests.java b/src/test/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParserTests.java index b31fba0..feb7509 100644 --- a/src/test/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParserTests.java +++ b/src/test/java/org/springframework/integration/splunk/config/xml/SplunkOutboundChannelAdapterParserTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/org/springframework/integration/splunk/config/xml/SplunkServerParserTests.java b/src/test/java/org/springframework/integration/splunk/config/xml/SplunkServerParserTests.java index 79b0a5a..98a302e 100644 --- a/src/test/java/org/springframework/integration/splunk/config/xml/SplunkServerParserTests.java +++ b/src/test/java/org/springframework/integration/splunk/config/xml/SplunkServerParserTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/org/springframework/integration/splunk/event/SplunkEventTests.java b/src/test/java/org/springframework/integration/splunk/event/SplunkEventTests.java index bb45fec..a75b176 100644 --- a/src/test/java/org/springframework/integration/splunk/event/SplunkEventTests.java +++ b/src/test/java/org/springframework/integration/splunk/event/SplunkEventTests.java @@ -4,7 +4,7 @@ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the diff --git a/src/test/java/org/springframework/integration/splunk/inbound/SplunkPollingChannelAdapterTests.java b/src/test/java/org/springframework/integration/splunk/inbound/SplunkPollingChannelAdapterTests.java index 9b6ecfa..9a89ed4 100644 --- a/src/test/java/org/springframework/integration/splunk/inbound/SplunkPollingChannelAdapterTests.java +++ b/src/test/java/org/springframework/integration/splunk/inbound/SplunkPollingChannelAdapterTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/org/springframework/integration/splunk/outbound/SplunkOutboundChannelAdapterTests.java b/src/test/java/org/springframework/integration/splunk/outbound/SplunkOutboundChannelAdapterTests.java index cf4fb5b..224e51e 100644 --- a/src/test/java/org/springframework/integration/splunk/outbound/SplunkOutboundChannelAdapterTests.java +++ b/src/test/java/org/springframework/integration/splunk/outbound/SplunkOutboundChannelAdapterTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/org/springframework/integration/splunk/support/SplunkDataReaderTests.java b/src/test/java/org/springframework/integration/splunk/support/SplunkDataReaderTests.java index 666f9e3..3d419e4 100644 --- a/src/test/java/org/springframework/integration/splunk/support/SplunkDataReaderTests.java +++ b/src/test/java/org/springframework/integration/splunk/support/SplunkDataReaderTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/org/springframework/integration/splunk/support/SplunkDataWriterTests.java b/src/test/java/org/springframework/integration/splunk/support/SplunkDataWriterTests.java index 0e6e63f..3955091 100644 --- a/src/test/java/org/springframework/integration/splunk/support/SplunkDataWriterTests.java +++ b/src/test/java/org/springframework/integration/splunk/support/SplunkDataWriterTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/test/java/org/springframework/integration/splunk/support/SplunkExecutorTests.java b/src/test/java/org/springframework/integration/splunk/support/SplunkExecutorTests.java index 3434b2f..7886564 100644 --- a/src/test/java/org/springframework/integration/splunk/support/SplunkExecutorTests.java +++ b/src/test/java/org/springframework/integration/splunk/support/SplunkExecutorTests.java @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,