Skip to content

Commit b1e0ae5

Browse files
committed
Updated license header
1 parent f8c3a9e commit b1e0ae5

File tree

701 files changed

+711
-1388
lines changed

Some content is hidden

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

701 files changed

+711
-1388
lines changed

HEADER

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2018 dc-square and the HiveMQ MQTT Client Project
1+
Copyright 2018-present HiveMQ and the HiveMQ Community
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,9 @@ allprojects {
379379

380380
license {
381381
header file("${project.rootDir}/HEADER")
382+
mapping {
383+
java = 'SLASHSTAR_STYLE'
384+
}
382385
}
383386
}
384387

examples/src/main/java/com/hivemq/client/mqtt/examples/AsyncDemo.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.mqtt.examples;

examples/src/main/java/com/hivemq/client/mqtt/examples/Mqtt5Features.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.mqtt.examples;

examples/src/main/java/com/hivemq/client/mqtt/examples/ReconnectStrategy.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.mqtt.examples;

examples/src/main/java/com/hivemq/client/mqtt/examples/RequestResponse.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.mqtt.examples;
@@ -36,7 +35,8 @@ public static void main(final String[] args) {
3635
responder.toBlocking().connect();
3736

3837
responder.toRx()
39-
.publish(responder.toRx().subscribePublishesWith()
38+
.publish(responder.toRx()
39+
.subscribePublishesWith()
4040
.topicFilter("request/topic")
4141
.applySubscribe()
4242
.map(requestPublish -> Mqtt5Publish.builder()

reactor/src/main/java/com/hivemq/client/internal/mqtt/mqtt3/reactor/Mqtt3ReactorClientView.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.internal.mqtt.mqtt3.reactor;

reactor/src/main/java/com/hivemq/client/internal/mqtt/reactor/MqttReactorClient.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.internal.mqtt.reactor;

reactor/src/main/java/com/hivemq/client/internal/rx/reactor/CoreWithSingleConditionalSubscriber.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.internal.rx.reactor;

reactor/src/main/java/com/hivemq/client/internal/rx/reactor/CoreWithSingleStrictSubscriber.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.internal.rx.reactor;

reactor/src/main/java/com/hivemq/client/internal/rx/reactor/operators/FluxWithSingleCombine.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.internal.rx.reactor.operators;

reactor/src/main/java/com/hivemq/client/internal/rx/reactor/operators/FluxWithSingleFrom.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.internal.rx.reactor.operators;

reactor/src/main/java/com/hivemq/client/internal/rx/reactor/operators/FluxWithSingleMap.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.internal.rx.reactor.operators;

reactor/src/main/java/com/hivemq/client/internal/rx/reactor/operators/FluxWithSingleOperator.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.internal.rx.reactor.operators;

reactor/src/main/java/com/hivemq/client/internal/rx/reactor/operators/FluxWithSinglePublishOn.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.internal.rx.reactor.operators;

reactor/src/main/java/com/hivemq/client/mqtt/mqtt3/reactor/Mqtt3ReactorClient.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.mqtt.mqtt3.reactor;

reactor/src/main/java/com/hivemq/client/mqtt/mqtt5/reactor/Mqtt5ReactorClient.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.mqtt.mqtt5.reactor;

reactor/src/main/java/com/hivemq/client/rx/reactor/CorePublisherWithSingle.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.rx.reactor;

reactor/src/main/java/com/hivemq/client/rx/reactor/CoreWithSingleSubscriber.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.rx.reactor;

reactor/src/main/java/com/hivemq/client/rx/reactor/FluxWithSingle.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.rx.reactor;

reactor/src/test/java/com/hivemq/client/rx/reactor/FluxWithSingleItem.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.rx.reactor;

reactor/src/test/java/com/hivemq/client/rx/reactor/FluxWithSingleSplit.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.rx.reactor;

reactor/src/test/java/com/hivemq/client/rx/reactor/FluxWithSingleTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.rx.reactor;

src/main/java/com/hivemq/client/annotations/CheckReturnValue.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.annotations;

src/main/java/com/hivemq/client/annotations/DoNotImplement.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.annotations;

src/main/java/com/hivemq/client/annotations/Immutable.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018 dc-square and the HiveMQ MQTT Client Project
2+
* Copyright 2018-present HiveMQ and the HiveMQ Community
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -12,7 +12,6 @@
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package com.hivemq.client.annotations;

0 commit comments

Comments
 (0)