Skip to content

Commit 5d74d9d

Browse files
tabish121clebertsuconic
authored andcommitted
ARTEMIS-5818 Update project name in code comments
Updates various code comments to replace the ActiveMQ Artemis name with the new TLP project name. A few loggers in unit tests were also changed as they won't affect existing users output.
1 parent 569714b commit 5d74d9d

File tree

110 files changed

+185
-185
lines changed

Some content is hidden

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

110 files changed

+185
-185
lines changed

artemis-boot/src/main/java/org/apache/activemq/artemis/boot/Artemis.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import java.util.List;
2929

3030
/**
31-
* A main class which setups up a classpath and then passes execution off to the ActiveMQ Artemis cli main.
31+
* A main class which setups up a classpath and then passes execution off to the Apache Artemis cli main.
3232
*/
3333
public class Artemis {
3434

artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQBuffer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import io.netty.buffer.ByteBuf;
2323

2424
/**
25-
* An ActiveMQBuffer wraps a Netty's ChannelBuffer and is used throughout ActiveMQ Artemis code base.
25+
* An ActiveMQBuffer wraps a Netty's ChannelBuffer and is used throughout Apache Artemis code base.
2626
* <p>
2727
* Instances of it can be obtained from {@link ActiveMQBuffers} factory.
2828
* <p>

artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQConnectionTimedOutException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.activemq.artemis.api.core;
1818

1919
/**
20-
* A client timed out will connecting to ActiveMQ Artemis server.
20+
* A client timed out will connecting to Apache Artemis server.
2121
*/
2222
public final class ActiveMQConnectionTimedOutException extends ActiveMQException {
2323

artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQDisconnectedException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.activemq.artemis.api.core;
1818

1919
/**
20-
* A client was disconnected from ActiveMQ Artemis server when the server has shut down.
20+
* A client was disconnected from Apache Artemis server when the server has shut down.
2121
*/
2222
public final class ActiveMQDisconnectedException extends ActiveMQException {
2323

artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.activemq.artemis.api.core;
1818

1919
/**
20-
* ActiveMQException is the root exception for the ActiveMQ Artemis API.
20+
* ActiveMQException is the root exception for the Apache Artemis API.
2121
*/
2222
public class ActiveMQException extends Exception {
2323

artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQIllegalStateException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.activemq.artemis.api.core;
1818

1919
/**
20-
* An ActiveMQ Artemis resource is not in a legal state (e.g. calling ClientConsumer.receive() if a MessageHandler is
20+
* An Apache Artemis resource is not in a legal state (e.g. calling ClientConsumer.receive() if a MessageHandler is
2121
* set).
2222
*/
2323
public final class ActiveMQIllegalStateException extends ActiveMQException {

artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQInternalErrorException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.activemq.artemis.api.core;
1818

1919
/**
20-
* Internal error which prevented ActiveMQ Artemis from performing an important operation.
20+
* Internal error which prevented Apache Artemis from performing an important operation.
2121
*/
2222
public final class ActiveMQInternalErrorException extends ActiveMQException {
2323

artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQNativeIOError.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.activemq.artemis.api.core;
1818

1919
/**
20-
* An error has happened at ActiveMQ's native (non-Java) code used in reading and writing data.
20+
* An error has happened in Apache Artemis native (non-Java) code used in reading and writing data.
2121
*/
2222
public final class ActiveMQNativeIOError extends ActiveMQException {
2323

artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQNotConnectedException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.activemq.artemis.api.core;
1818

1919
/**
20-
* A client is not able to connect to ActiveMQ Artemis server.
20+
* A client is not able to connect to the Apache Artemis server.
2121
*/
2222
public final class ActiveMQNotConnectedException extends ActiveMQException {
2323

artemis-commons/src/main/java/org/apache/activemq/artemis/api/core/ActiveMQUnsupportedPacketException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.activemq.artemis.api.core;
1818

1919
/**
20-
* A packet of unsupported type was received by ActiveMQ Artemis PacketHandler.
20+
* A packet of unsupported type was received by Apache Artemis PacketHandler.
2121
*/
2222
public final class ActiveMQUnsupportedPacketException extends ActiveMQException {
2323

0 commit comments

Comments
 (0)