Set to implement Serializable.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@372479 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Frederick G. Oconer 2006-01-26 08:20:39 +00:00
parent a9d3883dc8
commit b2b1e80b86
1 changed files with 11 additions and 10 deletions

View File

@ -19,6 +19,7 @@ package org.apache.activemq.ra;
import java.net.URI; import java.net.URI;
import java.net.URISyntaxException; import java.net.URISyntaxException;
import java.util.HashMap; import java.util.HashMap;
import java.io.Serializable;
import javax.jms.Connection; import javax.jms.Connection;
import javax.jms.JMSException; import javax.jms.JMSException;
@ -49,7 +50,7 @@ import org.apache.activemq.util.ServiceSupport;
* *
* @version $Revision$ * @version $Revision$
*/ */
public class ActiveMQResourceAdapter implements ResourceAdapter { public class ActiveMQResourceAdapter implements ResourceAdapter, Serializable {
private final HashMap endpointWorkers = new HashMap(); private final HashMap endpointWorkers = new HashMap();
private final ActiveMQConnectionRequestInfo info = new ActiveMQConnectionRequestInfo(); private final ActiveMQConnectionRequestInfo info = new ActiveMQConnectionRequestInfo();