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 2015/10/31 06:25:31 UTC

svn commit: r1711576 - in /manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint: build.xml connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointRESTAuthority.java

Author: kwright
Date: Sat Oct 31 05:25:31 2015
New Revision: 1711576

URL: http://svn.apache.org/viewvc?rev=1711576&view=rev
Log:
Add a stub SharePoint REST authority class.

Added:
    manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointRESTAuthority.java
      - copied, changed from r1711575, manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointAuthority.java
Modified:
    manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/build.xml

Modified: manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/build.xml
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/build.xml?rev=1711576&r1=1711575&r2=1711576&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/build.xml Sat Oct 31 05:25:31 2015
@@ -120,6 +120,10 @@
             <param name="connector-label" value="SharePoint/Native"/>
             <param name="connector-class" value="org.apache.manifoldcf.authorities.authorities.sharepoint.SharePointAuthority"/>
         </antcall>
+        <antcall target="general-add-authority-connector">
+            <param name="connector-label" value="SharePoint/Native-REST"/>
+            <param name="connector-class" value="org.apache.manifoldcf.authorities.authorities.sharepoint.SharePointRESTAuthority"/>
+        </antcall>
     </target>
 
 </project>

Copied: manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointRESTAuthority.java (from r1711575, manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointAuthority.java)
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointRESTAuthority.java?p2=manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointRESTAuthority.java&p1=manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointAuthority.java&r1=1711575&r2=1711576&rev=1711576&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointAuthority.java (original)
+++ manifoldcf/branches/CONNECTORS-1247/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointRESTAuthority.java Sat Oct 31 05:25:31 2015
@@ -64,7 +64,7 @@ import org.apache.http.HttpHost;
 
 /** This is the native SharePoint implementation of the IAuthorityConnector interface.
 */
-public class SharePointAuthority extends org.apache.manifoldcf.authorities.authorities.BaseAuthorityConnector
+public class SharePointRESTAuthority extends org.apache.manifoldcf.authorities.authorities.BaseAuthorityConnector
 {
   public static final String _rcsid = "@(#)$Id$";
 
@@ -136,7 +136,7 @@ public class SharePointAuthority extends
 
   /** Constructor.
   */
-  public SharePointAuthority()
+  public SharePointRESTAuthority()
   {
   }