You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by ja...@apache.org on 2016/01/29 14:22:05 UTC

svn commit: r1727577 - in /ace/sandbox/jawi/ace-extra/org.apache.ace.log.server.store.mongo: bnd.bnd src/org/apache/ace/log/server/store/mongo/MongoLogStore.java

Author: jawi
Date: Fri Jan 29 13:22:05 2016
New Revision: 1727577

URL: http://svn.apache.org/viewvc?rev=1727577&view=rev
Log:
Use proper API versions.

Modified:
    ace/sandbox/jawi/ace-extra/org.apache.ace.log.server.store.mongo/bnd.bnd
    ace/sandbox/jawi/ace-extra/org.apache.ace.log.server.store.mongo/src/org/apache/ace/log/server/store/mongo/MongoLogStore.java

Modified: ace/sandbox/jawi/ace-extra/org.apache.ace.log.server.store.mongo/bnd.bnd
URL: http://svn.apache.org/viewvc/ace/sandbox/jawi/ace-extra/org.apache.ace.log.server.store.mongo/bnd.bnd?rev=1727577&r1=1727576&r2=1727577&view=diff
==============================================================================
--- ace/sandbox/jawi/ace-extra/org.apache.ace.log.server.store.mongo/bnd.bnd (original)
+++ ace/sandbox/jawi/ace-extra/org.apache.ace.log.server.store.mongo/bnd.bnd Fri Jan 29 13:22:05 2016
@@ -13,6 +13,7 @@
 	org.apache.ace.scheduler.api;version=latest,\
 	org.apache.ace.connectionfactory;version=latest,\
 	org.apache.ace.authentication.api;version=latest,\
+	org.apache.ace.log.server.store.api;version=latest,\
 	org.amdatu.mongo,\
 	org.mongodb.mongo-java-driver,\
 	org.apache.ace.feedback.common;version=latest

Modified: ace/sandbox/jawi/ace-extra/org.apache.ace.log.server.store.mongo/src/org/apache/ace/log/server/store/mongo/MongoLogStore.java
URL: http://svn.apache.org/viewvc/ace/sandbox/jawi/ace-extra/org.apache.ace.log.server.store.mongo/src/org/apache/ace/log/server/store/mongo/MongoLogStore.java?rev=1727577&r1=1727576&r2=1727577&view=diff
==============================================================================
--- ace/sandbox/jawi/ace-extra/org.apache.ace.log.server.store.mongo/src/org/apache/ace/log/server/store/mongo/MongoLogStore.java (original)
+++ ace/sandbox/jawi/ace-extra/org.apache.ace.log.server.store.mongo/src/org/apache/ace/log/server/store/mongo/MongoLogStore.java Fri Jan 29 13:22:05 2016
@@ -187,22 +187,4 @@ public class MongoLogStore implements Lo
     public void clean() throws IOException {
         // TODO if m_max_events > 0 then remove all events from the mongo store where there are more than m_maxEvents
     }
-    
-    @Override
-    public Event put(String targetID, int type, Dictionary props) throws IOException {
-    	// TODO add an event to the appropriate store
-    	return null;
-    }
-
-	@Override
-	public void setLowestID(String targetID, long logID, long lowestID) throws IOException {
-		// TODO Auto-generated method stub
-		
-	}
-	
-	@Override
-	public long getLowestID(String targetID, long logID) throws IOException {
-		// TODO Auto-generated method stub
-		return 0;
-	}
 }