Author: boisvert
Date: Wed Dec 17 11:26:33 2008
New Revision: 727478

URL: http://svn.apache.org/viewvc?rev=727478&view=rev
Log:
ODE-463: Forgot to commit some files

Added:
    
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ODEConfigDirAware.java
    ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/
    ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/
    
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessInstanceProfileDAO.java
    
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessProfileDAO.java

Added: 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ODEConfigDirAware.java
URL: 
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ODEConfigDirAware.java?rev=727478&view=auto
==============================================================================
--- 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ODEConfigDirAware.java
 (added)
+++ 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/axis2/ODEConfigDirAware.java
 Wed Dec 17 11:26:33 2008
@@ -0,0 +1,5 @@
+package org.apache.ode.axis2;
+
+public interface ODEConfigDirAware {
+       String getODEConfigDir();
+}
\ No newline at end of file

Added: 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessInstanceProfileDAO.java
URL: 
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessInstanceProfileDAO.java?rev=727478&view=auto
==============================================================================
--- 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessInstanceProfileDAO.java
 (added)
+++ 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessInstanceProfileDAO.java
 Wed Dec 17 11:26:33 2008
@@ -0,0 +1,46 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.bpel.dao;
+
+import java.util.List;
+
+public interface ProcessInstanceProfileDAO extends ProcessProfileDAO {
+       ProcessDAO getProcess();
+       
+       List<ActivityRecoveryDAO> findActivityRecoveriesByInstance();
+
+       List<CorrelationSetDAO> findCorrelationSetsByInstance();
+
+       List<FaultDAO> findFaultsByInstance();
+
+       List<MessageDAO> findMessagesByInstance();
+
+       List<MessageExchangeDAO> findMessageExchangesByInstance();
+
+       List<MessageRouteDAO> findMessageRoutesByInstance();
+
+       List<PartnerLinkDAO> findPartnerLinksByInstance();
+
+       List<ScopeDAO> findScopesByInstance();
+
+       List<XmlDataDAO> findXmlDataByInstance();
+       
+       int countEventsByInstance();
+}
\ No newline at end of file

Added: 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessProfileDAO.java
URL: 
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessProfileDAO.java?rev=727478&view=auto
==============================================================================
--- 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessProfileDAO.java
 (added)
+++ 
ode/branches/APACHE_ODE_1.X/axis2-war/src/test/java/org/apache/ode/bpel/dao/ProcessProfileDAO.java
 Wed Dec 17 11:26:33 2008
@@ -0,0 +1,50 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.ode.bpel.dao;
+
+import java.util.List;
+
+public interface ProcessProfileDAO {
+       boolean doesProcessExist();
+       
+       List<ProcessInstanceDAO> findInstancesByProcess();
+
+       List<ActivityRecoveryDAO> findActivityRecoveriesByProcess();
+
+       List<CorrelationSetDAO> findCorrelationSetsByProcess();
+
+       List<CorrelatorDAO> findCorrelatorsByProcess();
+
+       List<FaultDAO> findFaultsByProcess();
+
+       List<MessageDAO> findMessagesByProcess();
+
+       List<MessageExchangeDAO> findMessageExchangesByProcess();
+
+       List<MessageRouteDAO> findMessageRoutesByProcess();
+
+       List<PartnerLinkDAO> findPartnerLinksByProcess();
+
+       List<ScopeDAO> findScopesByProcess();
+
+       List<XmlDataDAO> findXmlDataByProcess();
+
+       int countEventsByProcess();
+}
\ No newline at end of file


Reply via email to