You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2014/12/22 22:10:12 UTC

svn commit: r1647405 - /manifoldcf/branches/CONNECTORS-1119/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/ManifoldCF.java

Author: kwright
Date: Mon Dec 22 21:10:11 2014
New Revision: 1647405

URL: http://svn.apache.org/r1647405
Log:
Hook up status and info for notification connections

Modified:
    manifoldcf/branches/CONNECTORS-1119/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/ManifoldCF.java

Modified: manifoldcf/branches/CONNECTORS-1119/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/ManifoldCF.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1119/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/ManifoldCF.java?rev=1647405&r1=1647404&r2=1647405&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1119/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/ManifoldCF.java (original)
+++ manifoldcf/branches/CONNECTORS-1119/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/system/ManifoldCF.java Mon Dec 22 21:10:11 2014
@@ -3229,6 +3229,10 @@ public class ManifoldCF extends org.apac
       {
         return apiReadRepositoryConnectionStatus(tc,output,connectionName);
       }
+      else if (connectionType.equals("notificationconnections"))
+      {
+        return apiReadNotificationConnectionStatus(tc,output,connectionName);
+      }
       else
       {
         createErrorNode(output,"Unknown connection type '"+connectionType+"'.");
@@ -3268,6 +3272,10 @@ public class ManifoldCF extends org.apac
       {
         return apiReadRepositoryConnectionInfo(tc,output,connectionName,command);
       }
+      else if (connectionType.equals("notificationconnections"))
+      {
+        return apiReadNotificationConnectionInfo(tc,output,connectionName,command);
+      }
       else
       {
         createErrorNode(output,"Unknown connection type '"+connectionType+"'.");