Skip to content

Commit

Permalink
Merge pull request #1651 from pzygielo/sunmq
Browse files Browse the repository at this point in the history
  • Loading branch information
pzygielo committed Dec 25, 2022
2 parents 80815b0 + 4f5ea9e commit c44ba5d
Show file tree
Hide file tree
Showing 11 changed files with 77 additions and 77 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public class AdminConnectionFactory extends com.sun.messaging.AdministeredObject
/** The default basename for AdministeredObject initialization */
private static final String defaultsBase = "AdminConnectionFactory";

/** The default Username and Password for Sun MQ client authentication */
/** The default Username and Password for OpenMQ client authentication */
private static final String DEFAULT_IMQ_ADMIN_USERNAME_PASSWORD = "admin";

/** The default Username Label */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
import java.io.IOException;

/**
* A <code>BasicConnectionFactory</code> encapsulates Sun MQ specific configuration information for Sun MQ
* <code>ConnectionFactory</code> objects and is used to create Connections with a Sun MQ Java Message Service (JMS)
* A <code>BasicConnectionFactory</code> encapsulates OpenMQ specific configuration information for OpenMQ
* <code>ConnectionFactory</code> objects and is used to create Connections with a OpenMQ Jakarta Messaging
* provider.
*
* @see jakarta.jms.ConnectionFactory jakarta.jms.ConnectionFactory
Expand All @@ -47,7 +47,7 @@ public class BasicConnectionFactory extends com.sun.messaging.AdministeredObject
/** The default ConnectionHandler Label */
private static final String DEFAULT_IMQ_CONNECTION_HANDLER_LABEL = "Connection Handler Classname";

/** The default Username and Password for Sun MQ client authentication */
/** The default Username and Password for OpenMQ client authentication */
private static final String DEFAULT_IMQ_USERNAME_PASSWORD = "guest";

/** The default Username Label */
Expand Down Expand Up @@ -186,7 +186,7 @@ public String toString() {
}

/**
* Sets the minimum <code>BasicConnectionFactory</code> configuration defaults required to connect to the Sun MQ Message
* Sets the minimum <code>BasicConnectionFactory</code> configuration defaults required to connect to the OpenMQ
* Service.
*/
@Override
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import com.sun.messaging.jmq.jmsclient.TopicConnectionImpl;

/**
* A <code>ConnectionFactory</code> is used to create Connections with the Sun MQ Java Message Service (JMS) provider.
* A <code>ConnectionFactory</code> is used to create Connections with the OpenMQ Java Message Service (JMS) provider.
*
* @see jakarta.jms.ConnectionFactory jakarta.jms.ConnectionFactory
* @see com.sun.messaging.ConnectionConfiguration com.sun.messaging.ConnectionConfiguration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
package com.sun.messaging;

/**
* A <code>QueueConnectionFactory</code> is used to create QueueConnections with the Sun MQ Java Message Service (JMS)
* A <code>QueueConnectionFactory</code> is used to create QueueConnections with the OpenMQ Java Message Service (JMS)
* Point-to-Point (PTP) provider.
*
* @see jakarta.jms.QueueConnectionFactory jakarta.jms.QueueConnectionFactory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import com.sun.messaging.jmq.jmsclient.XATopicConnectionImpl;

/**
* An <code>XAConnectionFactory</code> is used to create XAConnections with the Sun MQ Java Message Service (JMS)
* An <code>XAConnectionFactory</code> is used to create XAConnections with the OpenMQ Java Message Service (JMS)
* provider.
*
* @see jakarta.jms.XAConnectionFactory jakarta.jms.XAConnectionFactory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import com.sun.messaging.jmq.io.JMSPacket;

/**
* The interface definition for the interaction between the Sun MQ JMS client and broker.
* The interface definition for the interaction between the OpenMQ JMS client and broker.
*/
public interface JMSService {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class DirectAck implements JMSAck {
@Getter(onMethod_ = @Override)
private final long consumerId;

/** The Sun MQ SysMessageID of the JMSAck */
/** The OpenMQ SysMessageID of the JMSAck */
@Getter(onMethod_ = @Override)
private final SysMessageID sysMessageID;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import jakarta.resource.spi.EISSystemException;

/**
* Implements the LocalTransaction interface in DIRECT mode for the Sun MQ RA
* Implements the LocalTransaction interface in DIRECT mode for the OpenMQ RA
*
* @author tharakan
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import java.util.logging.Logger;

/**
* Implements the JMS MessageListener interface for the Sun MQ JMS RA and forwards the messages to the MessageEndpoint
* Implements the JMS MessageListener interface for the OpenMQ JMS RA and forwards the messages to the MessageEndpoint
* created by the MessageEndpointFactory.
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import java.util.Set;

/**
* Util methods for the Sun MQ Resource Adapter for JMS
* Util methods for the OpenMQ Resource Adapter for JMS
*/

public class Util {
Expand Down

0 comments on commit c44ba5d

Please sign in to comment.