Skip to content

Commit

Permalink
Add missing serialVersionUIDs
Browse files Browse the repository at this point in the history
  • Loading branch information
pzygielo committed Nov 30, 2022
1 parent eadcb19 commit 5313a26
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Expand Up @@ -27,6 +27,7 @@
* The fields of this event include the various pieces of information needed for broker management tasks.
*/
public class BrokerCmdStatusEvent extends CommonCmdStatusEvent {
private static final long serialVersionUID = 1L;

/*******************************************************************************
* BrokerCmdStatusEvent event types use integers 0 - 1000 to avoid overlap with super class and other subclasses
Expand Down
Expand Up @@ -37,6 +37,7 @@

public class ActivationSpec
implements jakarta.resource.spi.ActivationSpec, jakarta.resource.spi.ResourceAdapterAssociation, java.io.Serializable, GenericConnectionFactoryProperties {
private static final long serialVersionUID = 1L;

/** String constants used to map standard values to JMS equivalents */
private static final String AUTOACKNOWLEDGE = "Auto-acknowledge";
Expand Down
Expand Up @@ -42,6 +42,7 @@
*/
public class DirectConnectionFactory extends ConnectionCreator implements jakarta.jms.ConnectionFactory, jakarta.jms.QueueConnectionFactory,
jakarta.jms.TopicConnectionFactory, jakarta.resource.Referenceable, java.io.Serializable {
private static final long serialVersionUID = 1L;

/**
* Configuration properties of the Direct ConnectionFactory
Expand Down
Expand Up @@ -42,6 +42,7 @@

public class ManagedConnectionFactory implements jakarta.resource.spi.ManagedConnectionFactory, jakarta.resource.spi.ResourceAdapterAssociation,
java.io.Serializable, GenericConnectionFactoryProperties {
private static final long serialVersionUID = 1L;
// Serializable instance data (includes configurable attributes) //
/** The ResourceAdapter instance associated with this ManagedConnectionFactory */
private com.sun.messaging.jms.ra.ResourceAdapter ra = null;
Expand Down

0 comments on commit 5313a26

Please sign in to comment.