Skip to content

Commit 4d4bcbb

Browse files
committed
Use MPL 2.0
1 parent 7ce8547 commit 4d4bcbb

File tree

66 files changed

+524
-583
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+524
-583
lines changed

LICENSE

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
This package, RabbitMQ Java Client, is dual-licensed under
2-
the Apache License v2 and the Mozilla Public License v1.1.
3-
4-
For the Apache License, please see the file LICENSE-APACHE2.
2+
the Mozilla Public License v2.0 and the Apache License v2.
53

64
For the Mozilla Public License, please see the file LICENSE-MPL-RabbitMQ.
75

6+
For the Apache License, please see the file LICENSE-APACHE2.
7+
88
For attribution of copyright and other details of provenance, please
99
refer to the source code.
1010

LICENSE-MPL-RabbitMQ

+370-455
Large diffs are not rendered by default.

README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ To launch the test suite (requires a local RabbitMQ node with stream plugin enab
5555

5656
(c) 2020, VMware Inc or its affiliates.
5757

58-
Double licensed under the ASL2 and MPL1.1. See link:LICENSE[LICENSE] for details.
58+
Double licensed under the MPL2.0 and ASL2. See link:LICENSE[LICENSE] for details.

pom.xml

+26
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,32 @@
88
<artifactId>stream-client</artifactId>
99
<version>0.1.0-SNAPSHOT</version>
1010

11+
<name>RabbitMQ Stream Java Client</name>
12+
<description>The RabbitMQ Stream Java client library allows Java applications to interface with RabbitMQ Stream.</description>
13+
<url>https://www.rabbitmq.com</url>
14+
15+
<licenses>
16+
<license>
17+
<name>ASL 2.0</name>
18+
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
19+
<distribution>repo</distribution>
20+
</license>
21+
<license>
22+
<name>MPL 2.0</name>
23+
<url>https://www.mozilla.org/en-US/MPL/2.0/</url>
24+
<distribution>repo</distribution>
25+
</license>
26+
</licenses>
27+
28+
<developers>
29+
<developer>
30+
<email>[email protected]</email>
31+
<name>Team RabbitMQ</name>
32+
<organization>VMware, Inc. or its affiliates.</organization>
33+
<organizationUrl>https://rabbitmq.com</organizationUrl>
34+
</developer>
35+
</developers>
36+
1137
<scm>
1238
<url>https://github.com/rabbitmq/rabbitmq-stream-java-client</url>
1339
<connection>scm:git:git://github.com/rabbitmq/rabbitmq-stream-java-client.git</connection>

src/main/java/com/rabbitmq/stream/AuthenticationFailureException.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/ByteCapacity.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/ChannelCustomizer.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/ChunkChecksum.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/ChunkChecksumValidationException.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/Client.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/ClientException.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/ClientProperties.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/Codec.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/Codecs.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/Constants.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/JdkChunkChecksum.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/Message.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/MessageBuilder.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/OffsetSpecification.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/Properties.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/amqp/Symbol.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/amqp/UnsignedByte.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/amqp/UnsignedInteger.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/amqp/UnsignedLong.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/amqp/UnsignedShort.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/codec/QpidProtonCodec.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/codec/QpidProtonMessageBuilder.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/codec/SimpleCodec.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/codec/SwiftMqCodec.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/codec/SwiftMqMessageBuilder.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/codec/WrapperMessageBuilder.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/perf/ShutdownService.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/perf/StreamPerfTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/perf/Utils.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/perf/Version.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/sasl/CredentialsProvider.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/sasl/DefaultSaslConfiguration.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

src/main/java/com/rabbitmq/stream/sasl/DefaultUsernamePasswordCredentialsProvider.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
22
//
3-
// This software, the RabbitMQ Java client library, is dual-licensed under the
4-
// Mozilla Public License 1.1 ("MPL"), and the Apache License version 2 ("ASL").
3+
// This software, the RabbitMQ Stream Java client library, is dual-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), and the Apache License version 2 ("ASL").
55
// For the MPL, please see LICENSE-MPL-RabbitMQ. For the ASL,
66
// please see LICENSE-APACHE2.
77
//

0 commit comments

Comments
 (0)