You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pubscribe-commits@ws.apache.org by sc...@apache.org on 2005/07/15 19:57:48 UTC

svn commit: r219228 - in /webservices/pubscribe/trunk/src: examples/broker/ examples/filesystem/src/java/org/apache/ws/resource/example/filesystem/ java/org/apache/ws/eventing/ java/org/apache/ws/eventing/pubsub/ java/org/apache/ws/notification/base/v2...

Author: scamp
Date: Fri Jul 15 10:57:48 2005
New Revision: 219228

URL: http://svn.apache.org/viewcvs?rev=219228&view=rev
Log:
Updated for the NEW Abstract*Home generated artifact

Added:
    webservices/pubscribe/trunk/src/examples/broker/AbstractBrokerHome.java
    webservices/pubscribe/trunk/src/examples/filesystem/src/java/org/apache/ws/resource/example/filesystem/AbstractFilesystemHome.java
    webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/AbstractSubscriptionHome.java
    webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/pubsub/AbstractSubscriptionHome.java
    webservices/pubscribe/trunk/src/java/org/apache/ws/notification/base/v2004_06/impl/AbstractSubscriptionHome.java
    webservices/pubscribe/trunk/src/java/org/apache/ws/notification/pubsub/AbstractSubscriptionHome.java
    webservices/pubscribe/trunk/src/test/org/apache/ws/notification/base/impl/AbstractUnitExampleHome.java
Modified:
    webservices/pubscribe/trunk/src/examples/broker/BrokerHome.java
    webservices/pubscribe/trunk/src/examples/filesystem/src/java/org/apache/ws/resource/example/filesystem/FilesystemHome.java
    webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/SubscriptionHome.java
    webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/pubsub/SubscriptionHome.java
    webservices/pubscribe/trunk/src/java/org/apache/ws/notification/base/v2004_06/impl/SubscriptionHome.java
    webservices/pubscribe/trunk/src/java/org/apache/ws/notification/pubsub/SubscriptionHome.java
    webservices/pubscribe/trunk/src/test/org/apache/ws/notification/base/impl/UnitExampleHome.java

Added: webservices/pubscribe/trunk/src/examples/broker/AbstractBrokerHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/examples/broker/AbstractBrokerHome.java?rev=219228&view=auto
==============================================================================
--- webservices/pubscribe/trunk/src/examples/broker/AbstractBrokerHome.java (added)
+++ webservices/pubscribe/trunk/src/examples/broker/AbstractBrokerHome.java Fri Jul 15 10:57:48 2005
@@ -0,0 +1,50 @@
+
+import org.apache.ws.resource.impl.AbstractResourceHome;
+import org.apache.commons.collections.map.ReferenceMap;
+
+import java.util.Map;
+import java.util.HashMap;
+import java.util.Collections;
+import javax.naming.Context;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+
+/**
+ * This class should not be modified.
+ * <p/>
+ * The class acts as an extension of the AbstractResourceHome which
+ * maintains a reference to the STATIC map needed for accessing resources via JNDI.
+ * <p/>
+ * This ensures the resources will be accessible if serialized via JNDI in certain platforms.
+ */
+abstract class AbstractBrokerHome extends AbstractResourceHome
+{
+    /**
+     * The static reference which is maintained and used by the AbstractResourceHome.
+     * <p/>
+     * Do not modify.
+     */
+    private static Map m_resource;
+
+    /**
+     * Do not modify this method.
+     */
+    protected final Map initResourceMap()
+            throws NamingException
+    {
+        Context initialContext = new InitialContext();
+        if (m_resourceIsPersistent)
+        {
+            m_resources = new ReferenceMap(ReferenceMap.HARD, ReferenceMap.SOFT, true);
+            initCachePolicy(initialContext);
+        }
+        else
+        {
+            m_resources = new HashMap();
+        }
+
+        m_resources = Collections.synchronizedMap(m_resources);
+        return m_resources;
+    }
+
+}

Modified: webservices/pubscribe/trunk/src/examples/broker/BrokerHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/examples/broker/BrokerHome.java?rev=219228&r1=219227&r2=219228&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/examples/broker/BrokerHome.java (original)
+++ webservices/pubscribe/trunk/src/examples/broker/BrokerHome.java Fri Jul 15 10:57:48 2005
@@ -5,14 +5,36 @@
  */
 import org.apache.ws.resource.impl.AbstractResourceHome;
 
-public class BrokerHome extends AbstractResourceHome{
+import javax.xml.namespace.QName;
+
+public class BrokerHome extends AbstractBrokerHome{
     
     /** Creates a new instance of NotificationProducerHome */
     public BrokerHome() {
     }
-    
+
+    public QName getServiceName()
+    {
+        return null;
+    }
+
+    public QName getPortType()
+    {
+        return null;
+    }
+
+    public String getServicePortName()
+    {
+        return null;
+    }
+
+    public QName getResourceKeyNameQName()
+    {
+        return null;
+    }
+
     public org.apache.ws.resource.Resource getInstance(org.apache.ws.resource.ResourceContext resourceContext) throws org.apache.ws.resource.ResourceException, org.apache.ws.resource.ResourceContextException, org.apache.ws.resource.ResourceUnknownException {
-        return BrokerResource.getInstance(); 
+        return null;
     }
     
 }

Added: webservices/pubscribe/trunk/src/examples/filesystem/src/java/org/apache/ws/resource/example/filesystem/AbstractFilesystemHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/examples/filesystem/src/java/org/apache/ws/resource/example/filesystem/AbstractFilesystemHome.java?rev=219228&view=auto
==============================================================================
--- webservices/pubscribe/trunk/src/examples/filesystem/src/java/org/apache/ws/resource/example/filesystem/AbstractFilesystemHome.java (added)
+++ webservices/pubscribe/trunk/src/examples/filesystem/src/java/org/apache/ws/resource/example/filesystem/AbstractFilesystemHome.java Fri Jul 15 10:57:48 2005
@@ -0,0 +1,51 @@
+package org.apache.ws.resource.example.filesystem;
+
+import org.apache.ws.resource.impl.AbstractResourceHome;
+import org.apache.commons.collections.map.ReferenceMap;
+
+import java.util.Map;
+import java.util.HashMap;
+import java.util.Collections;
+import javax.naming.Context;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+
+/**
+ * This class should not be modified.
+ * <p/>
+ * The class acts as an extension of the AbstractResourceHome which
+ * maintains a reference to the STATIC map needed for accessing resources via JNDI.
+ * <p/>
+ * This ensures the resources will be accessible if serialized via JNDI in certain platforms.
+ */
+abstract class AbstractFilesystemHome extends AbstractResourceHome
+{
+    /**
+     * The static reference which is maintained and used by the AbstractResourceHome.
+     * <p/>
+     * Do not modify.
+     */
+    private static Map m_resource;
+
+    /**
+     * Do not modify this method.
+     */
+    protected final Map initResourceMap()
+            throws NamingException
+    {
+        Context initialContext = new InitialContext();
+        if (m_resourceIsPersistent)
+        {
+            m_resources = new ReferenceMap(ReferenceMap.HARD, ReferenceMap.SOFT, true);
+            initCachePolicy(initialContext);
+        }
+        else
+        {
+            m_resources = new HashMap();
+        }
+
+        m_resources = Collections.synchronizedMap(m_resources);
+        return m_resources;
+    }
+
+}

Modified: webservices/pubscribe/trunk/src/examples/filesystem/src/java/org/apache/ws/resource/example/filesystem/FilesystemHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/examples/filesystem/src/java/org/apache/ws/resource/example/filesystem/FilesystemHome.java?rev=219228&r1=219227&r2=219228&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/examples/filesystem/src/java/org/apache/ws/resource/example/filesystem/FilesystemHome.java (original)
+++ webservices/pubscribe/trunk/src/examples/filesystem/src/java/org/apache/ws/resource/example/filesystem/FilesystemHome.java Fri Jul 15 10:57:48 2005
@@ -20,7 +20,7 @@
  * Home for Filesystem WS-Resources.
  */
 public class FilesystemHome
-        extends AbstractResourceHome
+        extends AbstractFilesystemHome
         implements Serializable
 {
 

Added: webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/AbstractSubscriptionHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/AbstractSubscriptionHome.java?rev=219228&view=auto
==============================================================================
--- webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/AbstractSubscriptionHome.java (added)
+++ webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/AbstractSubscriptionHome.java Fri Jul 15 10:57:48 2005
@@ -0,0 +1,51 @@
+package org.apache.ws.eventing;
+
+import org.apache.ws.resource.impl.AbstractResourceHome;
+import org.apache.commons.collections.map.ReferenceMap;
+
+import java.util.Map;
+import java.util.HashMap;
+import java.util.Collections;
+import javax.naming.Context;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+
+/**
+ * This class should not be modified.
+ * <p/>
+ * The class acts as an extension of the AbstractResourceHome which
+ * maintains a reference to the STATIC map needed for accessing resources via JNDI.
+ * <p/>
+ * This ensures the resources will be accessible if serialized via JNDI in certain platforms.
+ */
+abstract class AbstractSubscriptionHome extends AbstractResourceHome
+{
+    /**
+     * The static reference which is maintained and used by the AbstractResourceHome.
+     * <p/>
+     * Do not modify.
+     */
+    private static Map m_resource;
+
+    /**
+     * Do not modify this method.
+     */
+    protected final Map initResourceMap()
+            throws NamingException
+    {
+        Context initialContext = new InitialContext();
+        if (m_resourceIsPersistent)
+        {
+            m_resources = new ReferenceMap(ReferenceMap.HARD, ReferenceMap.SOFT, true);
+            initCachePolicy(initialContext);
+        }
+        else
+        {
+            m_resources = new HashMap();
+        }
+
+        m_resources = Collections.synchronizedMap(m_resources);
+        return m_resources;
+    }
+
+}

Modified: webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/SubscriptionHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/SubscriptionHome.java?rev=219228&r1=219227&r2=219228&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/SubscriptionHome.java (original)
+++ webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/SubscriptionHome.java Fri Jul 15 10:57:48 2005
@@ -36,7 +36,7 @@
 import javax.xml.namespace.QName;
 import java.util.Calendar;
 
-public class SubscriptionHome extends org.apache.ws.resource.impl.AbstractResourceHome{
+public class SubscriptionHome extends AbstractSubscriptionHome{
     private static final Log LOG = LogFactory.getLog( SubscriptionHome.class.getName() );
     /**  The service endpoint name as registered with the SOAP Platform.  This is useful for building EPR's. **/
     public static final javax.xml.namespace.QName SERVICE_NAME = javax.xml.namespace.QName.valueOf("{http://ws.apache.org/notification/base/service/SubscriptionManager}SubscriptionManager");

Added: webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/pubsub/AbstractSubscriptionHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/pubsub/AbstractSubscriptionHome.java?rev=219228&view=auto
==============================================================================
--- webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/pubsub/AbstractSubscriptionHome.java (added)
+++ webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/pubsub/AbstractSubscriptionHome.java Fri Jul 15 10:57:48 2005
@@ -0,0 +1,51 @@
+package org.apache.ws.eventing.pubsub;
+
+import org.apache.ws.resource.impl.AbstractResourceHome;
+import org.apache.commons.collections.map.ReferenceMap;
+
+import java.util.Map;
+import java.util.HashMap;
+import java.util.Collections;
+import javax.naming.Context;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+
+/**
+ * This class should not be modified.
+ * <p/>
+ * The class acts as an extension of the AbstractResourceHome which
+ * maintains a reference to the STATIC map needed for accessing resources via JNDI.
+ * <p/>
+ * This ensures the resources will be accessible if serialized via JNDI in certain platforms.
+ */
+abstract class AbstractSubscriptionHome extends AbstractResourceHome
+{
+    /**
+     * The static reference which is maintained and used by the AbstractResourceHome.
+     * <p/>
+     * Do not modify.
+     */
+    private static Map m_resource;
+
+    /**
+     * Do not modify this method.
+     */
+    protected final Map initResourceMap()
+            throws NamingException
+    {
+        Context initialContext = new InitialContext();
+        if (m_resourceIsPersistent)
+        {
+            m_resources = new ReferenceMap(ReferenceMap.HARD, ReferenceMap.SOFT, true);
+            initCachePolicy(initialContext);
+        }
+        else
+        {
+            m_resources = new HashMap();
+        }
+
+        m_resources = Collections.synchronizedMap(m_resources);
+        return m_resources;
+    }
+
+}

Modified: webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/pubsub/SubscriptionHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/pubsub/SubscriptionHome.java?rev=219228&r1=219227&r2=219228&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/pubsub/SubscriptionHome.java (original)
+++ webservices/pubscribe/trunk/src/java/org/apache/ws/eventing/pubsub/SubscriptionHome.java Fri Jul 15 10:57:48 2005
@@ -26,7 +26,7 @@
  *
  * @author  Stefan Lischke
  */
-public class SubscriptionHome extends org.apache.ws.resource.impl.AbstractResourceHome /* implements org.apache.ws.resource.ResourceHome*/{
+public class SubscriptionHome extends AbstractSubscriptionHome /* implements org.apache.ws.resource.ResourceHome*/{
     /**  The service endpoint name as registered with the SOAP Platform.  This is useful for building EPR's. **/
     public static final javax.xml.namespace.QName SERVICE_NAME = javax.xml.namespace.QName.valueOf("{http://ws.apache.org/notification/base/service/SubscriptionEndPort}SubscriptionEndPort");
 

Added: webservices/pubscribe/trunk/src/java/org/apache/ws/notification/base/v2004_06/impl/AbstractSubscriptionHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/java/org/apache/ws/notification/base/v2004_06/impl/AbstractSubscriptionHome.java?rev=219228&view=auto
==============================================================================
--- webservices/pubscribe/trunk/src/java/org/apache/ws/notification/base/v2004_06/impl/AbstractSubscriptionHome.java (added)
+++ webservices/pubscribe/trunk/src/java/org/apache/ws/notification/base/v2004_06/impl/AbstractSubscriptionHome.java Fri Jul 15 10:57:48 2005
@@ -0,0 +1,51 @@
+package org.apache.ws.notification.base.v2004_06.impl;
+
+import org.apache.ws.resource.impl.AbstractResourceHome;
+import org.apache.commons.collections.map.ReferenceMap;
+
+import java.util.Map;
+import java.util.HashMap;
+import java.util.Collections;
+import javax.naming.Context;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+
+/**
+ * This class should not be modified.
+ * <p/>
+ * The class acts as an extension of the AbstractResourceHome which
+ * maintains a reference to the STATIC map needed for accessing resources via JNDI.
+ * <p/>
+ * This ensures the resources will be accessible if serialized via JNDI in certain platforms.
+ */
+abstract class AbstractSubscriptionHome extends AbstractResourceHome
+{
+    /**
+     * The static reference which is maintained and used by the AbstractResourceHome.
+     * <p/>
+     * Do not modify.
+     */
+    private static Map m_resource;
+
+    /**
+     * Do not modify this method.
+     */
+    protected final Map initResourceMap()
+            throws NamingException
+    {
+        Context initialContext = new InitialContext();
+        if (m_resourceIsPersistent)
+        {
+            m_resources = new ReferenceMap(ReferenceMap.HARD, ReferenceMap.SOFT, true);
+            initCachePolicy(initialContext);
+        }
+        else
+        {
+            m_resources = new HashMap();
+        }
+
+        m_resources = Collections.synchronizedMap(m_resources);
+        return m_resources;
+    }
+
+}

Modified: webservices/pubscribe/trunk/src/java/org/apache/ws/notification/base/v2004_06/impl/SubscriptionHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/java/org/apache/ws/notification/base/v2004_06/impl/SubscriptionHome.java?rev=219228&r1=219227&r2=219228&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/java/org/apache/ws/notification/base/v2004_06/impl/SubscriptionHome.java (original)
+++ webservices/pubscribe/trunk/src/java/org/apache/ws/notification/base/v2004_06/impl/SubscriptionHome.java Fri Jul 15 10:57:48 2005
@@ -26,7 +26,6 @@
 import org.apache.ws.resource.ResourceException;
 import org.apache.ws.resource.ResourceKey;
 import org.apache.ws.resource.ResourceUnknownException;
-import org.apache.ws.resource.impl.AbstractResourceHome;
 import org.apache.ws.resource.impl.SimpleTypeResourceKey;
 import org.apache.ws.resource.properties.query.QueryExpression;
 
@@ -37,7 +36,7 @@
 /**
  * TODO
  */
-public class SubscriptionHome extends AbstractResourceHome
+public class SubscriptionHome extends AbstractSubscriptionHome
 {
 
     /**

Added: webservices/pubscribe/trunk/src/java/org/apache/ws/notification/pubsub/AbstractSubscriptionHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/java/org/apache/ws/notification/pubsub/AbstractSubscriptionHome.java?rev=219228&view=auto
==============================================================================
--- webservices/pubscribe/trunk/src/java/org/apache/ws/notification/pubsub/AbstractSubscriptionHome.java (added)
+++ webservices/pubscribe/trunk/src/java/org/apache/ws/notification/pubsub/AbstractSubscriptionHome.java Fri Jul 15 10:57:48 2005
@@ -0,0 +1,51 @@
+package org.apache.ws.notification.pubsub;
+
+import org.apache.ws.resource.impl.AbstractResourceHome;
+import org.apache.commons.collections.map.ReferenceMap;
+
+import java.util.Map;
+import java.util.HashMap;
+import java.util.Collections;
+import javax.naming.Context;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+
+/**
+ * This class should not be modified.
+ * <p/>
+ * The class acts as an extension of the AbstractResourceHome which
+ * maintains a reference to the STATIC map needed for accessing resources via JNDI.
+ * <p/>
+ * This ensures the resources will be accessible if serialized via JNDI in certain platforms.
+ */
+abstract class AbstractSubscriptionHome extends AbstractResourceHome
+{
+    /**
+     * The static reference which is maintained and used by the AbstractResourceHome.
+     * <p/>
+     * Do not modify.
+     */
+    private static Map m_resource;
+
+    /**
+     * Do not modify this method.
+     */
+    protected final Map initResourceMap()
+            throws NamingException
+    {
+        Context initialContext = new InitialContext();
+        if (m_resourceIsPersistent)
+        {
+            m_resources = new ReferenceMap(ReferenceMap.HARD, ReferenceMap.SOFT, true);
+            initCachePolicy(initialContext);
+        }
+        else
+        {
+            m_resources = new HashMap();
+        }
+
+        m_resources = Collections.synchronizedMap(m_resources);
+        return m_resources;
+    }
+
+}

Modified: webservices/pubscribe/trunk/src/java/org/apache/ws/notification/pubsub/SubscriptionHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/java/org/apache/ws/notification/pubsub/SubscriptionHome.java?rev=219228&r1=219227&r2=219228&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/java/org/apache/ws/notification/pubsub/SubscriptionHome.java (original)
+++ webservices/pubscribe/trunk/src/java/org/apache/ws/notification/pubsub/SubscriptionHome.java Fri Jul 15 10:57:48 2005
@@ -31,7 +31,7 @@
  *
  * @author  Stefan Lischke
  */
-public class SubscriptionHome extends org.apache.ws.resource.impl.AbstractResourceHome {
+public class SubscriptionHome extends AbstractSubscriptionHome {
 
     /**  The service endpoint name as registered with the SOAP Platform.  This is useful for building EPR's. **/
     public static final javax.xml.namespace.QName SERVICE_NAME = javax.xml.namespace.QName.valueOf("{http://ws.apache.org/notification/base/service/NotificationPort}NotificationPort");

Added: webservices/pubscribe/trunk/src/test/org/apache/ws/notification/base/impl/AbstractUnitExampleHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/test/org/apache/ws/notification/base/impl/AbstractUnitExampleHome.java?rev=219228&view=auto
==============================================================================
--- webservices/pubscribe/trunk/src/test/org/apache/ws/notification/base/impl/AbstractUnitExampleHome.java (added)
+++ webservices/pubscribe/trunk/src/test/org/apache/ws/notification/base/impl/AbstractUnitExampleHome.java Fri Jul 15 10:57:48 2005
@@ -0,0 +1,51 @@
+package org.apache.ws.notification.base.impl;
+
+import org.apache.ws.resource.impl.AbstractResourceHome;
+import org.apache.commons.collections.map.ReferenceMap;
+
+import java.util.Map;
+import java.util.HashMap;
+import java.util.Collections;
+import javax.naming.Context;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+
+/**
+ * This class should not be modified.
+ * <p/>
+ * The class acts as an extension of the AbstractResourceHome which
+ * maintains a reference to the STATIC map needed for accessing resources via JNDI.
+ * <p/>
+ * This ensures the resources will be accessible if serialized via JNDI in certain platforms.
+ */
+abstract class AbstractUnitExampleHome extends AbstractResourceHome
+{
+    /**
+     * The static reference which is maintained and used by the AbstractResourceHome.
+     * <p/>
+     * Do not modify.
+     */
+    private static Map m_resource;
+
+    /**
+     * Do not modify this method.
+     */
+    protected final Map initResourceMap()
+            throws NamingException
+    {
+        Context initialContext = new InitialContext();
+        if (m_resourceIsPersistent)
+        {
+            m_resources = new ReferenceMap(ReferenceMap.HARD, ReferenceMap.SOFT, true);
+            initCachePolicy(initialContext);
+        }
+        else
+        {
+            m_resources = new HashMap();
+        }
+
+        m_resources = Collections.synchronizedMap(m_resources);
+        return m_resources;
+    }
+
+}

Modified: webservices/pubscribe/trunk/src/test/org/apache/ws/notification/base/impl/UnitExampleHome.java
URL: http://svn.apache.org/viewcvs/webservices/pubscribe/trunk/src/test/org/apache/ws/notification/base/impl/UnitExampleHome.java?rev=219228&r1=219227&r2=219228&view=diff
==============================================================================
--- webservices/pubscribe/trunk/src/test/org/apache/ws/notification/base/impl/UnitExampleHome.java (original)
+++ webservices/pubscribe/trunk/src/test/org/apache/ws/notification/base/impl/UnitExampleHome.java Fri Jul 15 10:57:48 2005
@@ -18,7 +18,7 @@
 /**
  * @author Sal Campana
  */
-public class UnitExampleHome extends AbstractResourceHome
+public class UnitExampleHome extends AbstractUnitExampleHome
 {
     public static final String SERVICE_NAME = "UnitHome";
     public static final String TARGET_NAMESPACE = "http://unittest";