You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by ms...@apache.org on 2007/01/15 22:41:49 UTC

svn commit: r496505 - /incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/memdao/BpelDAOConnectionFactoryImpl.java

Author: mszefler
Date: Mon Jan 15 13:41:48 2007
New Revision: 496505

URL: http://svn.apache.org/viewvc?view=rev&rev=496505
Log:
Added shutdown method.

Modified:
    incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/memdao/BpelDAOConnectionFactoryImpl.java

Modified: incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/memdao/BpelDAOConnectionFactoryImpl.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/memdao/BpelDAOConnectionFactoryImpl.java?view=diff&rev=496505&r1=496504&r2=496505
==============================================================================
--- incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/memdao/BpelDAOConnectionFactoryImpl.java (original)
+++ incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/memdao/BpelDAOConnectionFactoryImpl.java Mon Jan 15 13:41:48 2007
@@ -13,22 +13,23 @@
 import java.util.Map;
 import java.util.Properties;
 
-
 /**
  * Connection factory for the in-memory state store.
  */
 public class BpelDAOConnectionFactoryImpl implements BpelDAOConnectionFactory {
-  private static final Map<QName, ProcessDaoImpl> __StateStore = new HashMap<QName, ProcessDaoImpl>();
+    private static final Map<QName, ProcessDaoImpl> __StateStore = new HashMap<QName, ProcessDaoImpl>();
 
+    public BpelDAOConnection getConnection() {
+        return new BpelDAOConnectionImpl(__StateStore);
+    }
 
-  public BpelDAOConnection getConnection() {
-    return new BpelDAOConnectionImpl(__StateStore);
-  }
+    /**
+     * @see org.apache.ode.bpel.dao.BpelDAOConnectionFactory#init(java.util.Properties)
+     */
+    public void init(Properties properties) {
+    }
 
-  /**
-   * @see org.apache.ode.bpel.dao.BpelDAOConnectionFactory#init(java.util.Properties)
-   */
-  public void init(Properties properties) {
-  }
+    public void shutdown() {
+    }
 
 }