diff --git a/bridge/bridgecapsule/build.gradle b/bridge/bridgecapsule/build.gradle index f5c6c98669..fe86b8a7db 100644 --- a/bridge/bridgecapsule/build.gradle +++ b/bridge/bridgecapsule/build.gradle @@ -1,4 +1,12 @@ -/** +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + * * This build.gradle exists to publish our capsule (executable fat jar) to maven. It cannot be placed in the * bridges project because the bintray plugin cannot publish two modules from one project. */ diff --git a/bridge/build.gradle b/bridge/build.gradle index 0d0e8616cb..33a052b493 100644 --- a/bridge/build.gradle +++ b/bridge/build.gradle @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + apply plugin: 'kotlin' apply plugin: 'java' apply plugin: 'net.corda.plugins.publish-utils' diff --git a/bridge/src/integration-test/kotlin/net/corda/bridge/BridgeIntegrationTest.kt b/bridge/src/integration-test/kotlin/net/corda/bridge/BridgeIntegrationTest.kt index 0fea30482b..600f182221 100644 --- a/bridge/src/integration-test/kotlin/net/corda/bridge/BridgeIntegrationTest.kt +++ b/bridge/src/integration-test/kotlin/net/corda/bridge/BridgeIntegrationTest.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge import com.nhaarman.mockito_kotlin.doReturn diff --git a/bridge/src/integration-test/kotlin/net/corda/bridge/services/AMQPListenerTest.kt b/bridge/src/integration-test/kotlin/net/corda/bridge/services/AMQPListenerTest.kt index cf4ad93bec..510b16c6cb 100644 --- a/bridge/src/integration-test/kotlin/net/corda/bridge/services/AMQPListenerTest.kt +++ b/bridge/src/integration-test/kotlin/net/corda/bridge/services/AMQPListenerTest.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services import net.corda.bridge.createAndLoadConfigFromResource diff --git a/bridge/src/integration-test/kotlin/net/corda/bridge/services/ArtemisConnectionTest.kt b/bridge/src/integration-test/kotlin/net/corda/bridge/services/ArtemisConnectionTest.kt index 810788ded4..ace5ab167a 100644 --- a/bridge/src/integration-test/kotlin/net/corda/bridge/services/ArtemisConnectionTest.kt +++ b/bridge/src/integration-test/kotlin/net/corda/bridge/services/ArtemisConnectionTest.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services import com.nhaarman.mockito_kotlin.doReturn diff --git a/bridge/src/integration-test/kotlin/net/corda/bridge/services/TunnelControlTest.kt b/bridge/src/integration-test/kotlin/net/corda/bridge/services/TunnelControlTest.kt index 357a99e3fd..3a10554463 100644 --- a/bridge/src/integration-test/kotlin/net/corda/bridge/services/TunnelControlTest.kt +++ b/bridge/src/integration-test/kotlin/net/corda/bridge/services/TunnelControlTest.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services import com.nhaarman.mockito_kotlin.* diff --git a/bridge/src/main/kotlin/net/corda/bridge/Bridge.kt b/bridge/src/main/kotlin/net/corda/bridge/Bridge.kt index a9cb0632b5..0a11132d5b 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/Bridge.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/Bridge.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + @file:JvmName("Bridge") package net.corda.bridge diff --git a/bridge/src/main/kotlin/net/corda/bridge/BridgeArgsParser.kt b/bridge/src/main/kotlin/net/corda/bridge/BridgeArgsParser.kt index 20049eded8..81256566be 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/BridgeArgsParser.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/BridgeArgsParser.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge import joptsimple.OptionParser diff --git a/bridge/src/main/kotlin/net/corda/bridge/BridgeVersionInfo.kt b/bridge/src/main/kotlin/net/corda/bridge/BridgeVersionInfo.kt index 5150183c8a..5ac7307e05 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/BridgeVersionInfo.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/BridgeVersionInfo.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge diff --git a/bridge/src/main/kotlin/net/corda/bridge/internal/BridgeInstance.kt b/bridge/src/main/kotlin/net/corda/bridge/internal/BridgeInstance.kt index 28c9df9eb7..95511f8fbe 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/internal/BridgeInstance.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/internal/BridgeInstance.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.internal import net.corda.bridge.BridgeVersionInfo diff --git a/bridge/src/main/kotlin/net/corda/bridge/internal/BridgeStartup.kt b/bridge/src/main/kotlin/net/corda/bridge/internal/BridgeStartup.kt index 78c88e0156..b18c931881 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/internal/BridgeStartup.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/internal/BridgeStartup.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.internal import com.jcabi.manifests.Manifests diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeAMQPListenerService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeAMQPListenerService.kt index 961e1bd79a..b4eed37354 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeAMQPListenerService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeAMQPListenerService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api import net.corda.nodeapi.internal.protonwrapper.messages.ReceivedMessage diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeArtemisConnectionService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeArtemisConnectionService.kt index cc75cc873f..7adc5f6f6f 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeArtemisConnectionService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeArtemisConnectionService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api import net.corda.nodeapi.internal.ArtemisMessagingClient diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeAuditService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeAuditService.kt index 67dbd13e8a..198677c8d0 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeAuditService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeAuditService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api import net.corda.nodeapi.internal.protonwrapper.messages.ReceivedMessage diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeConfiguration.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeConfiguration.kt index 5238db8528..efdf08dbe3 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeConfiguration.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeConfiguration.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api import net.corda.core.identity.CordaX500Name diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeMasterService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeMasterService.kt index efe6df9e88..5f6b672621 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeMasterService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeMasterService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api /** diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeReceiverService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeReceiverService.kt index 88c03f3797..3bcba4b9fe 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeReceiverService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeReceiverService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api /** diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeSenderService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeSenderService.kt index a06cf16e2c..59131e367d 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeSenderService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeSenderService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api import net.corda.core.identity.CordaX500Name diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeSupervisorService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeSupervisorService.kt index f661907e71..756f2a5052 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeSupervisorService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/BridgeSupervisorService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api /** diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/FloatControlService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/FloatControlService.kt index 8706495930..6542b6674b 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/FloatControlService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/FloatControlService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api /** diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/FloatSupervisorService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/FloatSupervisorService.kt index ff45bf0908..6ecf04b654 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/FloatSupervisorService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/FloatSupervisorService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api /** diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/IncomingMessageFilterService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/IncomingMessageFilterService.kt index a515bb52bc..b26866bb07 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/IncomingMessageFilterService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/IncomingMessageFilterService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api import net.corda.nodeapi.internal.protonwrapper.messages.ReceivedMessage diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/api/ServiceLifecycleSupport.kt b/bridge/src/main/kotlin/net/corda/bridge/services/api/ServiceLifecycleSupport.kt index 3cfc730b13..b098f5b0c8 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/api/ServiceLifecycleSupport.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/api/ServiceLifecycleSupport.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.api import rx.Observable diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/artemis/BridgeArtemisConnectionServiceImpl.kt b/bridge/src/main/kotlin/net/corda/bridge/services/artemis/BridgeArtemisConnectionServiceImpl.kt index 97fde6f656..139595f5e0 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/artemis/BridgeArtemisConnectionServiceImpl.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/artemis/BridgeArtemisConnectionServiceImpl.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.artemis import net.corda.bridge.services.api.BridgeArtemisConnectionService diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/audit/LoggingBridgeAuditService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/audit/LoggingBridgeAuditService.kt index 829d4605f0..0746b711cf 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/audit/LoggingBridgeAuditService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/audit/LoggingBridgeAuditService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.audit import net.corda.bridge.services.api.BridgeAuditService diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/config/BridgeConfigHelper.kt b/bridge/src/main/kotlin/net/corda/bridge/services/config/BridgeConfigHelper.kt index 080d6423ee..a5c452a05a 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/config/BridgeConfigHelper.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/config/BridgeConfigHelper.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.config import com.typesafe.config.Config diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/config/BridgeConfigurationImpl.kt b/bridge/src/main/kotlin/net/corda/bridge/services/config/BridgeConfigurationImpl.kt index 61ff070d35..d6d9c5f16c 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/config/BridgeConfigurationImpl.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/config/BridgeConfigurationImpl.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.config import com.typesafe.config.Config diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/filter/SimpleMessageFilterService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/filter/SimpleMessageFilterService.kt index ed55c1f179..7dd606ddd2 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/filter/SimpleMessageFilterService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/filter/SimpleMessageFilterService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.filter import net.corda.bridge.services.api.* diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/ha/SingleInstanceMasterService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/ha/SingleInstanceMasterService.kt index fc9429c9fa..3f978e6122 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/ha/SingleInstanceMasterService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/ha/SingleInstanceMasterService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.ha import net.corda.bridge.services.api.BridgeAuditService diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/receiver/BridgeAMQPListenerServiceImpl.kt b/bridge/src/main/kotlin/net/corda/bridge/services/receiver/BridgeAMQPListenerServiceImpl.kt index 4aeea5bd4a..21a5d63f76 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/receiver/BridgeAMQPListenerServiceImpl.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/receiver/BridgeAMQPListenerServiceImpl.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.receiver import net.corda.bridge.services.api.BridgeAMQPListenerService diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/receiver/FloatControlListenerService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/receiver/FloatControlListenerService.kt index 3fa4901857..ea48f7066d 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/receiver/FloatControlListenerService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/receiver/FloatControlListenerService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.receiver import net.corda.bridge.services.api.* diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/receiver/InProcessBridgeReceiverService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/receiver/InProcessBridgeReceiverService.kt index 3ec949ad25..622e102e2b 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/receiver/InProcessBridgeReceiverService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/receiver/InProcessBridgeReceiverService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.receiver import net.corda.bridge.services.api.* diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/receiver/TunnelControlMessages.kt b/bridge/src/main/kotlin/net/corda/bridge/services/receiver/TunnelControlMessages.kt index 62b8e64bcb..0ce63443da 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/receiver/TunnelControlMessages.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/receiver/TunnelControlMessages.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.receiver import net.corda.bridge.services.receiver.FloatControlTopics.FLOAT_CONTROL_TOPIC diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/receiver/TunnelingBridgeReceiverService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/receiver/TunnelingBridgeReceiverService.kt index 2dbc82155c..442bd6829f 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/receiver/TunnelingBridgeReceiverService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/receiver/TunnelingBridgeReceiverService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.receiver import net.corda.bridge.services.api.* diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/sender/DirectBridgeSenderService.kt b/bridge/src/main/kotlin/net/corda/bridge/services/sender/DirectBridgeSenderService.kt index 7efd9fa481..8e291fccc2 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/sender/DirectBridgeSenderService.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/sender/DirectBridgeSenderService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.sender import net.corda.bridge.services.api.* diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/supervisors/BridgeSupervisorServiceImpl.kt b/bridge/src/main/kotlin/net/corda/bridge/services/supervisors/BridgeSupervisorServiceImpl.kt index e70542227b..6962270e6a 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/supervisors/BridgeSupervisorServiceImpl.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/supervisors/BridgeSupervisorServiceImpl.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.supervisors import net.corda.bridge.services.api.* diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/supervisors/FloatSupervisorServiceImpl.kt b/bridge/src/main/kotlin/net/corda/bridge/services/supervisors/FloatSupervisorServiceImpl.kt index e588ecc0ab..eba2c16193 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/supervisors/FloatSupervisorServiceImpl.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/supervisors/FloatSupervisorServiceImpl.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.supervisors import net.corda.bridge.services.api.* diff --git a/bridge/src/main/kotlin/net/corda/bridge/services/util/ServiceStateHelper.kt b/bridge/src/main/kotlin/net/corda/bridge/services/util/ServiceStateHelper.kt index 28f4429910..19d40bf775 100644 --- a/bridge/src/main/kotlin/net/corda/bridge/services/util/ServiceStateHelper.kt +++ b/bridge/src/main/kotlin/net/corda/bridge/services/util/ServiceStateHelper.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services.util import net.corda.bridge.services.api.ServiceStateSupport diff --git a/bridge/src/main/resources/bridgedefault.conf b/bridge/src/main/resources/bridgedefault.conf index 508a5b47ed..5c477033f0 100644 --- a/bridge/src/main/resources/bridgedefault.conf +++ b/bridge/src/main/resources/bridgedefault.conf @@ -1,3 +1,12 @@ +// +// R3 Proprietary and Confidential +// +// Copyright (c) 2018 R3 Limited. All rights reserved. +// +// The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. +// +// Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + keyStorePassword = "cordacadevpass" trustStorePassword = "trustpass" enableAMQPPacketTrace = false diff --git a/bridge/src/test/kotlin/net/corda/bridge/BridgeTestHelper.kt b/bridge/src/test/kotlin/net/corda/bridge/BridgeTestHelper.kt index f6e4ee46e2..2dd0359c03 100644 --- a/bridge/src/test/kotlin/net/corda/bridge/BridgeTestHelper.kt +++ b/bridge/src/test/kotlin/net/corda/bridge/BridgeTestHelper.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge import net.corda.bridge.services.api.BridgeConfiguration diff --git a/bridge/src/test/kotlin/net/corda/bridge/ConfigTest.kt b/bridge/src/test/kotlin/net/corda/bridge/ConfigTest.kt index 1956424064..0d6a6e5769 100644 --- a/bridge/src/test/kotlin/net/corda/bridge/ConfigTest.kt +++ b/bridge/src/test/kotlin/net/corda/bridge/ConfigTest.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge import net.corda.bridge.services.api.BridgeMode diff --git a/bridge/src/test/kotlin/net/corda/bridge/ServiceStateTest.kt b/bridge/src/test/kotlin/net/corda/bridge/ServiceStateTest.kt index 599c542291..e2c8cad95d 100644 --- a/bridge/src/test/kotlin/net/corda/bridge/ServiceStateTest.kt +++ b/bridge/src/test/kotlin/net/corda/bridge/ServiceStateTest.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge import net.corda.bridge.services.api.ServiceStateSupport diff --git a/bridge/src/test/kotlin/net/corda/bridge/services/FilterServiceTest.kt b/bridge/src/test/kotlin/net/corda/bridge/services/FilterServiceTest.kt index e95dd08e5d..61b9eb52b0 100644 --- a/bridge/src/test/kotlin/net/corda/bridge/services/FilterServiceTest.kt +++ b/bridge/src/test/kotlin/net/corda/bridge/services/FilterServiceTest.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services import com.nhaarman.mockito_kotlin.* diff --git a/bridge/src/test/kotlin/net/corda/bridge/services/TestAuditService.kt b/bridge/src/test/kotlin/net/corda/bridge/services/TestAuditService.kt index f355519e34..12c3b91b69 100644 --- a/bridge/src/test/kotlin/net/corda/bridge/services/TestAuditService.kt +++ b/bridge/src/test/kotlin/net/corda/bridge/services/TestAuditService.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services import net.corda.bridge.services.api.BridgeAuditService diff --git a/bridge/src/test/kotlin/net/corda/bridge/services/TestServiceBase.kt b/bridge/src/test/kotlin/net/corda/bridge/services/TestServiceBase.kt index afb2372f9c..6b9c3b3bf5 100644 --- a/bridge/src/test/kotlin/net/corda/bridge/services/TestServiceBase.kt +++ b/bridge/src/test/kotlin/net/corda/bridge/services/TestServiceBase.kt @@ -1,3 +1,13 @@ +/* + * R3 Proprietary and Confidential + * + * Copyright (c) 2018 R3 Limited. All rights reserved. + * + * The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. + * + * Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + */ + package net.corda.bridge.services import net.corda.bridge.services.api.ServiceLifecycleSupport diff --git a/bridge/src/test/resources/net/corda/bridge/singleprocess/bridge.conf b/bridge/src/test/resources/net/corda/bridge/singleprocess/bridge.conf index 48034c1f7e..eaefae519e 100644 --- a/bridge/src/test/resources/net/corda/bridge/singleprocess/bridge.conf +++ b/bridge/src/test/resources/net/corda/bridge/singleprocess/bridge.conf @@ -1,3 +1,12 @@ +// +// R3 Proprietary and Confidential +// +// Copyright (c) 2018 R3 Limited. All rights reserved. +// +// The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. +// +// Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + bridgeMode = SenderReceiver outboundConfig : { artemisBrokerAddress = "localhost:11005" diff --git a/bridge/src/test/resources/net/corda/bridge/withfloat/bridge/bridge.conf b/bridge/src/test/resources/net/corda/bridge/withfloat/bridge/bridge.conf index e3764fcc32..2f51f89c38 100644 --- a/bridge/src/test/resources/net/corda/bridge/withfloat/bridge/bridge.conf +++ b/bridge/src/test/resources/net/corda/bridge/withfloat/bridge/bridge.conf @@ -1,3 +1,12 @@ +// +// R3 Proprietary and Confidential +// +// Copyright (c) 2018 R3 Limited. All rights reserved. +// +// The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. +// +// Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + bridgeMode = FloatInner outboundConfig : { artemisBrokerAddress = "localhost:11005" diff --git a/bridge/src/test/resources/net/corda/bridge/withfloat/float/bridge.conf b/bridge/src/test/resources/net/corda/bridge/withfloat/float/bridge.conf index c7bd5f67aa..661580c02b 100644 --- a/bridge/src/test/resources/net/corda/bridge/withfloat/float/bridge.conf +++ b/bridge/src/test/resources/net/corda/bridge/withfloat/float/bridge.conf @@ -1,3 +1,12 @@ +// +// R3 Proprietary and Confidential +// +// Copyright (c) 2018 R3 Limited. All rights reserved. +// +// The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. +// +// Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + bridgeMode = FloatOuter inboundConfig : { listeningAddress = "0.0.0.0:10005" diff --git a/node/src/main/resources/reference.conf b/node/src/main/resources/reference.conf index d460aa1eba..4acee29bd0 100644 --- a/node/src/main/resources/reference.conf +++ b/node/src/main/resources/reference.conf @@ -1,3 +1,12 @@ +// +// R3 Proprietary and Confidential +// +// Copyright (c) 2018 R3 Limited. All rights reserved. +// +// The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law. +// +// Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited. + myLegalName = "Vast Global MegaCorp, Ltd" emailAddress = "admin@company.com" keyStorePassword = "cordacadevpass"