Author: kwright
Date: Mon Sep 1 17:24:19 2014
New Revision: 1621855
URL: http://svn.apache.org/r1621855
Log:
More work on CONNECTORS-977. Revise base connector specification methods.
Modified:
manifoldcf/trunk/connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/alfresco/AlfrescoRepositoryConnector.java
manifoldcf/trunk/connectors/cmis/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/cmis/CmisRepositoryConnector.java
manifoldcf/trunk/connectors/documentum/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/DCTM/DCTM.java
manifoldcf/trunk/connectors/dropbox/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/dropbox/DropboxRepositoryConnector.java
manifoldcf/trunk/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/email/EmailConnector.java
manifoldcf/trunk/connectors/filenet/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filenet/FilenetConnector.java
manifoldcf/trunk/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filesystem/FileConnector.java
manifoldcf/trunk/connectors/generic/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/generic/GenericConnector.java
manifoldcf/trunk/connectors/googledrive/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/googledrive/GoogleDriveRepositoryConnector.java
manifoldcf/trunk/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/hdfs/HDFSRepositoryConnector.java
manifoldcf/trunk/connectors/jcifs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharedrive/SharedDriveConnector.java
manifoldcf/trunk/connectors/jdbc/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/jdbc/JDBCConnector.java
manifoldcf/trunk/connectors/jira/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/jira/JiraRepositoryConnector.java
manifoldcf/trunk/connectors/livelink/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/livelink/LivelinkConnector.java
manifoldcf/trunk/connectors/meridio/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/meridio/MeridioConnector.java
manifoldcf/trunk/connectors/rss/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/rss/RSSConnector.java
manifoldcf/trunk/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/sharepoint/SharePointRepository.java
manifoldcf/trunk/connectors/webcrawler/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/webcrawler/WebcrawlerConnector.java
manifoldcf/trunk/connectors/wiki/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/wiki/WikiConnector.java
manifoldcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/connectors/BaseRepositoryConnector.java
Modified:
manifoldcf/trunk/connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/alfresco/AlfrescoRepositoryConnector.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/alfresco/AlfrescoRepositoryConnector.java?rev=1621855&r1=1621854&r2=1621855&view=diff
==============================================================================
---
manifoldcf/trunk/connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/alfresco/AlfrescoRepositoryConnector.java
(original)
+++
manifoldcf/trunk/connectors/alfresco/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/alfresco/AlfrescoRepositoryConnector.java
Mon Sep 1 17:24:19 2014
@@ -701,20 +701,20 @@ public class AlfrescoRepositoryConnector
paramMap.put(AlfrescoConfig.LUCENE_QUERY_PARAM, luceneQuery);
}
- /**
- * View specification. This method is called in the body section of a job's
- * view page. Its purpose is to present the document specification
information
- * to the user. The coder can presume that the HTML that is output from this
- * configuration will be within appropriate <html> and <body> tags.
- *
- * @param out
- * is the output to which any HTML should be sent.
- * @param ds
- * is the current document specification for this job.
- */
+ /** View specification.
+ * This method is called in the body section of a job's view page. Its
purpose is to present the document
+ * specification information to the user. The coder can presume that the
HTML that is output from
+ * this configuration will be within appropriate <html> and <body> tags.
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ */
@Override
- public void viewSpecification(IHTTPOutput out, Locale locale,
DocumentSpecification ds)
- throws ManifoldCFException, IOException {
+ public void viewSpecification(IHTTPOutput out, Locale locale, Specification
ds,
+ int connectionSequenceNumber)
+ throws ManifoldCFException, IOException {
Map<String,String> paramMap = new HashMap<String,String>();
// Fill in parameters from all tabs
@@ -723,24 +723,22 @@ public class AlfrescoRepositoryConnector
outputResource(VIEW_SPEC_FORWARD, out, locale, paramMap);
}
- /**
- * Process a specification post. This method is called at the start of job's
- * edit or view page, whenever there is a possibility that form data for a
- * connection has been posted. Its purpose is to gather form information and
- * modify the document specification accordingly. The name of the posted form
- * is "editjob".
- *
- * @param variableContext
- * contains the post data, including binary file-upload information.
- * @param ds
- * is the current document specification for this job.
- * @return null if all is well, or a string error message if there is an
error
- * that should prevent saving of the job (and cause a redirection to
- * an error page).
- */
+ /** Process a specification post.
+ * This method is called at the start of job's edit or view page, whenever
there is a possibility that form
+ * data for a connection has been posted. Its purpose is to gather form
information and modify the
+ * document specification accordingly. The name of the posted form is always
"editjob".
+ * The connector will be connected before this method can be called.
+ *@param variableContext contains the post data, including binary file-upload
information.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@return null if all is well, or a string error message if there is an error
that should prevent saving of
+ * the job (and cause a redirection to an error page).
+ */
@Override
- public String processSpecificationPost(IPostParameters variableContext,
- Locale locale, DocumentSpecification ds) throws ManifoldCFException {
+ public String processSpecificationPost(IPostParameters variableContext,
Locale locale, Specification ds,
+ int connectionSequenceNumber)
+ throws ManifoldCFException {
String luceneQuery =
variableContext.getParameter(AlfrescoConfig.LUCENE_QUERY_PARAM);
if (luceneQuery != null) {
int i = 0;
@@ -760,25 +758,24 @@ public class AlfrescoRepositoryConnector
return null;
}
- /**
- * Output the specification body section. This method is called in the body
- * section of a job page which has selected a repository connection of the
- * current type. Its purpose is to present the required form elements for
- * editing. The coder can presume that the HTML that is output from this
- * configuration will be within appropriate <html>, <body>, and <form> tags.
- * The name of the form is "editjob".
- *
- * @param out
- * is the output to which any HTML should be sent.
- * @param ds
- * is the current document specification for this job.
- * @param tabName
- * is the current tab name.
- */
+ /** Output the specification body section.
+ * This method is called in the body section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to present the required form elements for
editing.
+ * The coder can presume that the HTML that is output from this configuration
will be within appropriate
+ * <html>, <body>, and <form> tags. The name of the form is always
"editjob".
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param actualSequenceNumber is the connection within the job that has
currently been selected.
+ *@param tabName is the current tab name. (actualSequenceNumber, tabName)
form a unique tuple within
+ * the job.
+ */
@Override
- public void outputSpecificationBody(IHTTPOutput out, Locale locale,
- DocumentSpecification ds, String tabName) throws ManifoldCFException,
- IOException {
+ public void outputSpecificationBody(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, int actualSequenceNumber, String tabName)
+ throws ManifoldCFException, IOException {
// Do all tabs in turn.
@@ -789,24 +786,21 @@ public class AlfrescoRepositoryConnector
outputResource(EDIT_SPEC_FORWARD_LUCENEQUERY, out, locale, paramMap);
}
- /**
- * Output the specification header section. This method is called in the head
- * section of a job page which has selected a repository connection of the
- * current type. Its purpose is to add the required tabs to the list, and to
- * output any javascript methods that might be needed by the job editing
HTML.
- *
- * @param out
- * is the output to which any HTML should be sent.
- * @param ds
- * is the current document specification for this job.
- * @param tabsArray
- * is an array of tab names. Add to this array any tab names that
are
- * specific to the connector.
- */
+ /** Output the specification header section.
+ * This method is called in the head section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to add the required tabs to the list, and to
output any javascript methods
+ * that might be needed by the job editing HTML.
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param tabsArray is an array of tab names. Add to this array any tab names
that are specific to the connector.
+ */
@Override
- public void outputSpecificationHeader(IHTTPOutput out,
- Locale locale, DocumentSpecification ds, List<String> tabsArray)
- throws ManifoldCFException, IOException {
+ public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, List<String> tabsArray)
+ throws ManifoldCFException, IOException {
// Add LuceneQuery tab
tabsArray.add(Messages.getString(locale,TAB_LABEL_LUCENE_QUERY_RESOURCE));
Modified:
manifoldcf/trunk/connectors/cmis/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/cmis/CmisRepositoryConnector.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/cmis/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/cmis/CmisRepositoryConnector.java?rev=1621855&r1=1621854&r2=1621855&view=diff
==============================================================================
---
manifoldcf/trunk/connectors/cmis/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/cmis/CmisRepositoryConnector.java
(original)
+++
manifoldcf/trunk/connectors/cmis/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/cmis/CmisRepositoryConnector.java
Mon Sep 1 17:24:19 2014
@@ -916,7 +916,7 @@ public class CmisRepositoryConnector ext
/** Fill in specification Velocity parameter map for CMISQuery tab.
*/
- private static void fillInCMISQuerySpecificationMap(Map<String,String>
newMap, DocumentSpecification ds)
+ private static void fillInCMISQuerySpecificationMap(Map<String,String>
newMap, Specification ds)
{
int i = 0;
String cmisQuery = "";
@@ -930,20 +930,20 @@ public class CmisRepositoryConnector ext
newMap.put(CmisConfig.CMIS_QUERY_PARAM, cmisQuery);
}
- /**
- * View specification. This method is called in the body section of a job's
- * view page. Its purpose is to present the document specification
information
- * to the user. The coder can presume that the HTML that is output from this
- * configuration will be within appropriate <html> and <body> tags.
- *
- * @param out
- * is the output to which any HTML should be sent.
- * @param ds
- * is the current document specification for this job.
- */
+ /** View specification.
+ * This method is called in the body section of a job's view page. Its
purpose is to present the document
+ * specification information to the user. The coder can presume that the
HTML that is output from
+ * this configuration will be within appropriate <html> and <body> tags.
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ */
@Override
- public void viewSpecification(IHTTPOutput out, Locale locale,
DocumentSpecification ds)
- throws ManifoldCFException, IOException {
+ public void viewSpecification(IHTTPOutput out, Locale locale, Specification
ds,
+ int connectionSequenceNumber)
+ throws ManifoldCFException, IOException {
Map<String,String> paramMap = new HashMap<String,String>();
@@ -953,24 +953,22 @@ public class CmisRepositoryConnector ext
outputResource(VIEW_SPEC_FORWARD, out, locale, paramMap);
}
- /**
- * Process a specification post. This method is called at the start of job's
- * edit or view page, whenever there is a possibility that form data for a
- * connection has been posted. Its purpose is to gather form information and
- * modify the document specification accordingly. The name of the posted form
- * is "editjob".
- *
- * @param variableContext
- * contains the post data, including binary file-upload information.
- * @param ds
- * is the current document specification for this job.
- * @return null if all is well, or a string error message if there is an
error
- * that should prevent saving of the job (and cause a redirection to
- * an error page).
- */
+ /** Process a specification post.
+ * This method is called at the start of job's edit or view page, whenever
there is a possibility that form
+ * data for a connection has been posted. Its purpose is to gather form
information and modify the
+ * document specification accordingly. The name of the posted form is always
"editjob".
+ * The connector will be connected before this method can be called.
+ *@param variableContext contains the post data, including binary file-upload
information.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@return null if all is well, or a string error message if there is an error
that should prevent saving of
+ * the job (and cause a redirection to an error page).
+ */
@Override
- public String processSpecificationPost(IPostParameters variableContext,
- DocumentSpecification ds) throws ManifoldCFException {
+ public String processSpecificationPost(IPostParameters variableContext,
Locale locale, Specification ds,
+ int connectionSequenceNumber)
+ throws ManifoldCFException {
String cmisQuery =
variableContext.getParameter(CmisConfig.CMIS_QUERY_PARAM);
if (cmisQuery != null) {
int i = 0;
@@ -990,25 +988,24 @@ public class CmisRepositoryConnector ext
return null;
}
- /**
- * Output the specification body section. This method is called in the body
- * section of a job page which has selected a repository connection of the
- * current type. Its purpose is to present the required form elements for
- * editing. The coder can presume that the HTML that is output from this
- * configuration will be within appropriate <html>, <body>, and <form> tags.
- * The name of the form is "editjob".
- *
- * @param out
- * is the output to which any HTML should be sent.
- * @param ds
- * is the current document specification for this job.
- * @param tabName
- * is the current tab name.
- */
+ /** Output the specification body section.
+ * This method is called in the body section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to present the required form elements for
editing.
+ * The coder can presume that the HTML that is output from this configuration
will be within appropriate
+ * <html>, <body>, and <form> tags. The name of the form is always
"editjob".
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param actualSequenceNumber is the connection within the job that has
currently been selected.
+ *@param tabName is the current tab name. (actualSequenceNumber, tabName)
form a unique tuple within
+ * the job.
+ */
@Override
- public void outputSpecificationBody(IHTTPOutput out,
- Locale locale, DocumentSpecification ds, String tabName) throws
ManifoldCFException,
- IOException {
+ public void outputSpecificationBody(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, int actualSequenceNumber, String tabName)
+ throws ManifoldCFException, IOException {
// Output CMISQuery tab
Map<String,String> paramMap = new HashMap<String,String>();
@@ -1017,24 +1014,21 @@ public class CmisRepositoryConnector ext
outputResource(EDIT_SPEC_FORWARD_CMISQUERY, out, locale, paramMap);
}
- /**
- * Output the specification header section. This method is called in the head
- * section of a job page which has selected a repository connection of the
- * current type. Its purpose is to add the required tabs to the list, and to
- * output any javascript methods that might be needed by the job editing
HTML.
- *
- * @param out
- * is the output to which any HTML should be sent.
- * @param ds
- * is the current document specification for this job.
- * @param tabsArray
- * is an array of tab names. Add to this array any tab names that
are
- * specific to the connector.
- */
+ /** Output the specification header section.
+ * This method is called in the head section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to add the required tabs to the list, and to
output any javascript methods
+ * that might be needed by the job editing HTML.
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param tabsArray is an array of tab names. Add to this array any tab names
that are specific to the connector.
+ */
@Override
- public void outputSpecificationHeader(IHTTPOutput out,
- Locale locale, DocumentSpecification ds, List<String> tabsArray)
- throws ManifoldCFException, IOException {
+ public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, List<String> tabsArray)
+ throws ManifoldCFException, IOException {
tabsArray.add(Messages.getString(locale,CMIS_QUERY_TAB_PROPERTY));
Map<String,String> paramMap = new HashMap<String,String>();
Modified:
manifoldcf/trunk/connectors/documentum/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/DCTM/DCTM.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/documentum/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/DCTM/DCTM.java?rev=1621855&r1=1621854&r2=1621855&view=diff
==============================================================================
---
manifoldcf/trunk/connectors/documentum/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/DCTM/DCTM.java
(original)
+++
manifoldcf/trunk/connectors/documentum/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/DCTM/DCTM.java
Mon Sep 1 17:24:19 2014
@@ -2213,14 +2213,19 @@ public class DCTM extends org.apache.man
}
/** Output the specification header section.
- * This method is called in the head section of a job page which has selected
a repository connection of the current type. Its purpose is to add the
required tabs
- * to the list, and to output any javascript methods that might be needed by
the job editing HTML.
+ * This method is called in the head section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to add the required tabs to the list, and to
output any javascript methods
+ * that might be needed by the job editing HTML.
+ * The connector will be connected before this method can be called.
*@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
*@param tabsArray is an array of tab names. Add to this array any tab names
that are specific to the connector.
*/
@Override
- public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
DocumentSpecification ds, List<String> tabsArray)
+ public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, List<String> tabsArray)
throws ManifoldCFException, IOException
{
tabsArray.add(Messages.getString(locale,"DCTM.Paths"));
@@ -2297,15 +2302,22 @@ public class DCTM extends org.apache.man
}
/** Output the specification body section.
- * This method is called in the body section of a job page which has selected
a repository connection of the current type. Its purpose is to present the
required form elements for editing.
- * The coder can presume that the HTML that is output from this configuration
will be within appropriate <html>, <body>, and <form> tags. The name of the
- * form is "editjob".
+ * This method is called in the body section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to present the required form elements for
editing.
+ * The coder can presume that the HTML that is output from this configuration
will be within appropriate
+ * <html>, <body>, and <form> tags. The name of the form is always
"editjob".
+ * The connector will be connected before this method can be called.
*@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
- *@param tabName is the current tab name.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param actualSequenceNumber is the connection within the job that has
currently been selected.
+ *@param tabName is the current tab name. (actualSequenceNumber, tabName)
form a unique tuple within
+ * the job.
*/
@Override
- public void outputSpecificationBody(IHTTPOutput out, Locale locale,
DocumentSpecification ds, String tabName)
+ public void outputSpecificationBody(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, int actualSequenceNumber, String tabName)
throws ManifoldCFException, IOException
{
int i;
@@ -2986,15 +2998,20 @@ public class DCTM extends org.apache.man
}
/** Process a specification post.
- * This method is called at the start of job's edit or view page, whenever
there is a possibility that form data for a connection has been
- * posted. Its purpose is to gather form information and modify the document
specification accordingly.
- * The name of the posted form is "editjob".
+ * This method is called at the start of job's edit or view page, whenever
there is a possibility that form
+ * data for a connection has been posted. Its purpose is to gather form
information and modify the
+ * document specification accordingly. The name of the posted form is always
"editjob".
+ * The connector will be connected before this method can be called.
*@param variableContext contains the post data, including binary file-upload
information.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
- *@return null if all is well, or a string error message if there is an error
that should prevent saving of the job (and cause a redirection to an error
page).
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@return null if all is well, or a string error message if there is an error
that should prevent saving of
+ * the job (and cause a redirection to an error page).
*/
@Override
- public String processSpecificationPost(IPostParameters variableContext,
Locale locale, DocumentSpecification ds)
+ public String processSpecificationPost(IPostParameters variableContext,
Locale locale, Specification ds,
+ int connectionSequenceNumber)
throws ManifoldCFException
{
String x = variableContext.getParameter("pathcount");
@@ -3297,13 +3314,18 @@ public class DCTM extends org.apache.man
}
/** View specification.
- * This method is called in the body section of a job's view page. Its
purpose is to present the document specification information to the user.
- * The coder can presume that the HTML that is output from this configuration
will be within appropriate <html> and <body> tags.
+ * This method is called in the body section of a job's view page. Its
purpose is to present the document
+ * specification information to the user. The coder can presume that the
HTML that is output from
+ * this configuration will be within appropriate <html> and <body> tags.
+ * The connector will be connected before this method can be called.
*@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
*/
@Override
- public void viewSpecification(IHTTPOutput out, Locale locale,
DocumentSpecification ds)
+ public void viewSpecification(IHTTPOutput out, Locale locale, Specification
ds,
+ int connectionSequenceNumber)
throws ManifoldCFException, IOException
{
out.print(
Modified:
manifoldcf/trunk/connectors/dropbox/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/dropbox/DropboxRepositoryConnector.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/dropbox/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/dropbox/DropboxRepositoryConnector.java?rev=1621855&r1=1621854&r2=1621855&view=diff
==============================================================================
---
manifoldcf/trunk/connectors/dropbox/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/dropbox/DropboxRepositoryConnector.java
(original)
+++
manifoldcf/trunk/connectors/dropbox/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/dropbox/DropboxRepositoryConnector.java
Mon Sep 1 17:24:19 2014
@@ -513,7 +513,7 @@ public class DropboxRepositoryConnector
/**
* Fill in specification Velocity parameter map for DROPBOXPath tab.
*/
- private static void fillInDropboxPathSpecificationMap(Map<String, Object>
newMap, DocumentSpecification ds) {
+ private static void fillInDropboxPathSpecificationMap(Map<String, Object>
newMap, Specification ds) {
int i = 0;
String DropboxPath = DropboxConfig.DROPBOX_PATH_PARAM_DEFAULT_VALUE;
while (i < ds.getChildCount()) {
@@ -529,7 +529,7 @@ public class DropboxRepositoryConnector
/**
* Fill in specification Velocity parameter map for Dropbox Security tab.
*/
- private static void fillInDropboxSecuritySpecificationMap(Map<String,
Object> newMap, DocumentSpecification ds) {
+ private static void fillInDropboxSecuritySpecificationMap(Map<String,
Object> newMap, Specification ds) {
List<Map<String,String>> accessTokenList = new
ArrayList<Map<String,String>>();
for (int i = 0; i < ds.getChildCount(); i++) {
SpecificationNode sn = ds.getChild(i);
@@ -543,18 +543,19 @@ public class DropboxRepositoryConnector
newMap.put("ACCESSTOKENS", accessTokenList);
}
- /**
- * View specification. This method is called in the body section of a job's
- * view page. Its purpose is to present the document specification
- * information to the user. The coder can presume that the HTML that is
- * output from this configuration will be within appropriate <html> and
- * <body> tags.
- *
- * @param out is the output to which any HTML should be sent.
- * @param ds is the current document specification for this job.
- */
+ /** View specification.
+ * This method is called in the body section of a job's view page. Its
purpose is to present the document
+ * specification information to the user. The coder can presume that the
HTML that is output from
+ * this configuration will be within appropriate <html> and <body> tags.
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ */
@Override
- public void viewSpecification(IHTTPOutput out, Locale locale,
DocumentSpecification ds)
+ public void viewSpecification(IHTTPOutput out, Locale locale, Specification
ds,
+ int connectionSequenceNumber)
throws ManifoldCFException, IOException {
Map<String, Object> paramMap = new HashMap<String, Object>();
@@ -566,23 +567,22 @@ public class DropboxRepositoryConnector
Messages.outputResourceWithVelocity(out,locale,VIEW_SPEC_FORWARD,paramMap);
}
- /**
- * Process a specification post. This method is called at the start of job's
- * edit or view page, whenever there is a possibility that form data for a
- * connection has been posted. Its purpose is to gather form information and
- * modify the document specification accordingly. The name of the posted
- * form is "editjob".
- *
- * @param variableContext contains the post data, including binary
- * file-upload information.
- * @param ds is the current document specification for this job.
- * @return null if all is well, or a string error message if there is an
- * error that should prevent saving of the job (and cause a redirection to
- * an error page).
- */
+ /** Process a specification post.
+ * This method is called at the start of job's edit or view page, whenever
there is a possibility that form
+ * data for a connection has been posted. Its purpose is to gather form
information and modify the
+ * document specification accordingly. The name of the posted form is always
"editjob".
+ * The connector will be connected before this method can be called.
+ *@param variableContext contains the post data, including binary file-upload
information.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@return null if all is well, or a string error message if there is an error
that should prevent saving of
+ * the job (and cause a redirection to an error page).
+ */
@Override
- public String processSpecificationPost(IPostParameters variableContext,
- DocumentSpecification ds) throws ManifoldCFException {
+ public String processSpecificationPost(IPostParameters variableContext,
Locale locale, Specification ds,
+ int connectionSequenceNumber)
+ throws ManifoldCFException {
String dropboxPath = variableContext.getParameter("dropboxpath");
if (dropboxPath != null) {
int i = 0;
@@ -642,22 +642,24 @@ public class DropboxRepositoryConnector
return null;
}
- /**
- * Output the specification body section. This method is called in the body
- * section of a job page which has selected a repository connection of the
- * current type. Its purpose is to present the required form elements for
- * editing. The coder can presume that the HTML that is output from this
- * configuration will be within appropriate <html>, <body>, and <form> tags.
- * The name of the form is "editjob".
- *
- * @param out is the output to which any HTML should be sent.
- * @param ds is the current document specification for this job.
- * @param tabName is the current tab name.
- */
+ /** Output the specification body section.
+ * This method is called in the body section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to present the required form elements for
editing.
+ * The coder can presume that the HTML that is output from this configuration
will be within appropriate
+ * <html>, <body>, and <form> tags. The name of the form is always
"editjob".
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param actualSequenceNumber is the connection within the job that has
currently been selected.
+ *@param tabName is the current tab name. (actualSequenceNumber, tabName)
form a unique tuple within
+ * the job.
+ */
@Override
- public void outputSpecificationBody(IHTTPOutput out,
- Locale locale, DocumentSpecification ds, String tabName) throws
ManifoldCFException,
- IOException {
+ public void outputSpecificationBody(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, int actualSequenceNumber, String tabName)
+ throws ManifoldCFException, IOException {
// Output DROPBOXPath tab
Map<String, Object> paramMap = new HashMap<String, Object>();
@@ -669,21 +671,20 @@ public class DropboxRepositoryConnector
Messages.outputResourceWithVelocity(out,locale,EDIT_SPEC_FORWARD_SECURITY,paramMap);
}
- /**
- * Output the specification header section. This method is called in the
- * head section of a job page which has selected a repository connection of
- * the current type. Its purpose is to add the required tabs to the list,
- * and to output any javascript methods that might be needed by the job
- * editing HTML.
- *
- * @param out is the output to which any HTML should be sent.
- * @param ds is the current document specification for this job.
- * @param tabsArray is an array of tab names. Add to this array any tab
- * names that are specific to the connector.
- */
+ /** Output the specification header section.
+ * This method is called in the head section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to add the required tabs to the list, and to
output any javascript methods
+ * that might be needed by the job editing HTML.
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param tabsArray is an array of tab names. Add to this array any tab names
that are specific to the connector.
+ */
@Override
- public void outputSpecificationHeader(IHTTPOutput out,
- Locale locale, DocumentSpecification ds, List<String> tabsArray)
+ public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, List<String> tabsArray)
throws ManifoldCFException, IOException {
tabsArray.add(Messages.getString(locale, DROPBOX_PATH_TAB_PROPERTY));
tabsArray.add(Messages.getString(locale, DROPBOX_SECURITY_TAB_PROPERTY));
Modified:
manifoldcf/trunk/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/email/EmailConnector.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/email/EmailConnector.java?rev=1621855&r1=1621854&r2=1621855&view=diff
==============================================================================
---
manifoldcf/trunk/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/email/EmailConnector.java
(original)
+++
manifoldcf/trunk/connectors/email/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/email/EmailConnector.java
Mon Sep 1 17:24:19 2014
@@ -860,21 +860,20 @@ public class EmailConnector extends org.
/////////////////////////////////Start of Specification
UI//////////////////////////////////////////////////
- /**
- * Output the specification header section.
+ /** Output the specification header section.
* This method is called in the head section of a job page which has selected
a repository connection of the
- * current type. Its purpose is to add the required tabs to the list, and to
output any javascript methods
+ * current type. Its purpose is to add the required tabs to the list, and to
output any javascript methods
* that might be needed by the job editing HTML.
* The connector will be connected before this method can be called.
- *
- * @param out is the output to which any HTML should be sent.
- * @param locale is the desired locale.
- * @param ds is the current document specification for this job.
- * @param tabsArray is an array of tab names. Add to this array any tab names
that are specific to the connector.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param tabsArray is an array of tab names. Add to this array any tab names
that are specific to the connector.
*/
@Override
- public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
- DocumentSpecification ds, List<String> tabsArray)
+ public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, List<String> tabsArray)
throws ManifoldCFException, IOException {
// Add the tabs
tabsArray.add(Messages.getString(locale, "EmailConnector.Metadata"));
@@ -882,22 +881,23 @@ public class EmailConnector extends org.
Messages.outputResourceWithVelocity(out, locale, "SpecificationHeader.js",
null);
}
- /**
- * Output the specification body section.
+ /** Output the specification body section.
* This method is called in the body section of a job page which has selected
a repository connection of the
- * current type. Its purpose is to present the required form elements for
editing.
+ * current type. Its purpose is to present the required form elements for
editing.
* The coder can presume that the HTML that is output from this configuration
will be within appropriate
- * <html>, <body>, and <form> tags. The name of the form is always "editjob".
+ * <html>, <body>, and <form> tags. The name of the form is always
"editjob".
* The connector will be connected before this method can be called.
- *
- * @param out is the output to which any HTML should be sent.
- * @param locale is the desired locale.
- * @param ds is the current document specification for this job.
- * @param tabName is the current tab name.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param actualSequenceNumber is the connection within the job that has
currently been selected.
+ *@param tabName is the current tab name. (actualSequenceNumber, tabName)
form a unique tuple within
+ * the job.
*/
@Override
- public void outputSpecificationBody(IHTTPOutput out, Locale locale,
- DocumentSpecification ds, String tabName)
+ public void outputSpecificationBody(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, int actualSequenceNumber, String tabName)
throws ManifoldCFException, IOException {
outputFilterTab(out, locale, ds, tabName);
outputMetadataTab(out, locale, ds, tabName);
@@ -907,8 +907,8 @@ public class EmailConnector extends org.
* Take care of "Metadata" tab.
*/
protected void outputMetadataTab(IHTTPOutput out, Locale locale,
- DocumentSpecification ds, String tabName)
- throws ManifoldCFException, IOException {
+ Specification ds, String tabName)
+ throws ManifoldCFException, IOException {
Map<String, Object> paramMap = new HashMap<String, Object>();
paramMap.put("TabName", tabName);
fillInMetadataTab(paramMap, ds);
@@ -920,7 +920,7 @@ public class EmailConnector extends org.
* Fill in Velocity context for Metadata tab.
*/
protected static void fillInMetadataTab(Map<String, Object> paramMap,
- DocumentSpecification ds) {
+ Specification ds) {
Set<String> metadataSelections = new HashSet<String>();
int i = 0;
while (i < ds.getChildCount()) {
@@ -942,7 +942,7 @@ public class EmailConnector extends org.
}
protected void outputFilterTab(IHTTPOutput out, Locale locale,
- DocumentSpecification ds, String tabName)
+ Specification ds, String tabName)
throws ManifoldCFException, IOException {
Map<String, Object> paramMap = new HashMap<String, Object>();
paramMap.put("TabName", tabName);
@@ -973,7 +973,7 @@ public class EmailConnector extends org.
}
protected static void fillInFilterTab(Map<String, Object> paramMap,
- DocumentSpecification ds) {
+ Specification ds) {
List<Map<String, String>> filterList = new ArrayList<Map<String,
String>>();
Set<String> folders = new HashSet<String>();
int i = 0;
@@ -997,21 +997,22 @@ public class EmailConnector extends org.
paramMap.put("FOLDERS", folders);
}
- /**
- * Process a specification post.
+ /** Process a specification post.
* This method is called at the start of job's edit or view page, whenever
there is a possibility that form
- * data for a connection has been posted. Its purpose is to gather form
information and modify the
- * document specification accordingly. The name of the posted form is always
"editjob".
+ * data for a connection has been posted. Its purpose is to gather form
information and modify the
+ * document specification accordingly. The name of the posted form is always
"editjob".
* The connector will be connected before this method can be called.
- *
- * @param variableContext contains the post data, including binary
file-upload information.
- * @param ds is the current document specification for this job.
- * @return null if all is well, or a string error message if there is an
error that should prevent saving of
+ *@param variableContext contains the post data, including binary file-upload
information.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@return null if all is well, or a string error message if there is an error
that should prevent saving of
* the job (and cause a redirection to an error page).
*/
@Override
- public String processSpecificationPost(IPostParameters variableContext,
DocumentSpecification ds)
- throws ManifoldCFException {
+ public String processSpecificationPost(IPostParameters variableContext,
Locale locale, Specification ds,
+ int connectionSequenceNumber)
+ throws ManifoldCFException {
String result = processFilterTab(variableContext, ds);
if (result != null)
@@ -1021,7 +1022,7 @@ public class EmailConnector extends org.
}
- protected String processFilterTab(IPostParameters variableContext,
DocumentSpecification ds)
+ protected String processFilterTab(IPostParameters variableContext,
Specification ds)
throws ManifoldCFException {
String findCountString = variableContext.getParameter("findcount");
@@ -1064,7 +1065,7 @@ public class EmailConnector extends org.
}
- protected String processMetadataTab(IPostParameters variableContext,
DocumentSpecification ds)
+ protected String processMetadataTab(IPostParameters variableContext,
Specification ds)
throws ManifoldCFException {
// Remove old included metadata nodes
removeNodes(ds, EmailConfig.NODE_METADATA);
@@ -1083,20 +1084,20 @@ public class EmailConnector extends org.
return null;
}
- /**
- * View specification.
- * This method is called in the body section of a job's view page. Its
purpose is to present the document
- * specification information to the user. The coder can presume that the HTML
that is output from
+ /** View specification.
+ * This method is called in the body section of a job's view page. Its
purpose is to present the document
+ * specification information to the user. The coder can presume that the
HTML that is output from
* this configuration will be within appropriate <html> and <body> tags.
* The connector will be connected before this method can be called.
- *
- * @param out is the output to which any HTML should be sent.
- * @param locale is the desired locale.
- * @param ds is the current document specification for this job.
-*/
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ */
@Override
- public void viewSpecification(IHTTPOutput out, Locale locale,
DocumentSpecification ds)
- throws ManifoldCFException, IOException {
+ public void viewSpecification(IHTTPOutput out, Locale locale, Specification
ds,
+ int connectionSequenceNumber)
+ throws ManifoldCFException, IOException {
Map<String, Object> paramMap = new HashMap<String, Object>();
fillInFilterTab(paramMap, ds);
fillInMetadataTab(paramMap, ds);
@@ -1190,7 +1191,7 @@ public class EmailConnector extends org.
}
}
- protected static void removeNodes(DocumentSpecification ds,
+ protected static void removeNodes(Specification ds,
String nodeTypeName) {
int i = 0;
while (i < ds.getChildCount()) {
@@ -1202,7 +1203,7 @@ public class EmailConnector extends org.
}
}
- protected static void addIncludedMetadataNode(DocumentSpecification ds,
+ protected static void addIncludedMetadataNode(Specification ds,
String metadataName) {
// Build the proper node
SpecificationNode sn = new SpecificationNode(EmailConfig.NODE_METADATA);
@@ -1211,7 +1212,7 @@ public class EmailConnector extends org.
ds.addChild(ds.getChildCount(), sn);
}
- protected static void addFindParameterNode(DocumentSpecification ds, String
findParameterName, String findParameterValue) {
+ protected static void addFindParameterNode(Specification ds, String
findParameterName, String findParameterValue) {
SpecificationNode sn = new SpecificationNode(EmailConfig.NODE_FILTER);
sn.setAttribute(EmailConfig.ATTRIBUTE_NAME, findParameterName);
sn.setAttribute(EmailConfig.ATTRIBUTE_VALUE, findParameterValue);
@@ -1219,7 +1220,7 @@ public class EmailConnector extends org.
ds.addChild(ds.getChildCount(), sn);
}
- protected static void addFolderNode(DocumentSpecification ds, String
folderName)
+ protected static void addFolderNode(Specification ds, String folderName)
{
SpecificationNode sn = new SpecificationNode(EmailConfig.NODE_FOLDER);
sn.setAttribute(EmailConfig.ATTRIBUTE_NAME, folderName);
Modified:
manifoldcf/trunk/connectors/filenet/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filenet/FilenetConnector.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/filenet/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filenet/FilenetConnector.java?rev=1621855&r1=1621854&r2=1621855&view=diff
==============================================================================
---
manifoldcf/trunk/connectors/filenet/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filenet/FilenetConnector.java
(original)
+++
manifoldcf/trunk/connectors/filenet/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filenet/FilenetConnector.java
Mon Sep 1 17:24:19 2014
@@ -1893,14 +1893,19 @@ public class FilenetConnector extends or
}
/** Output the specification header section.
- * This method is called in the head section of a job page which has selected
a repository connection of the current type. Its purpose is to add the
required tabs
- * to the list, and to output any javascript methods that might be needed by
the job editing HTML.
+ * This method is called in the head section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to add the required tabs to the list, and to
output any javascript methods
+ * that might be needed by the job editing HTML.
+ * The connector will be connected before this method can be called.
*@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
*@param tabsArray is an array of tab names. Add to this array any tab names
that are specific to the connector.
*/
@Override
- public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
DocumentSpecification ds, List<String> tabsArray)
+ public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, List<String> tabsArray)
throws ManifoldCFException, IOException
{
tabsArray.add(Messages.getString(locale,"FilenetConnector.DocumentClasses"));
@@ -1969,15 +1974,22 @@ public class FilenetConnector extends or
}
/** Output the specification body section.
- * This method is called in the body section of a job page which has selected
a repository connection of the current type. Its purpose is to present the
required form elements for editing.
- * The coder can presume that the HTML that is output from this configuration
will be within appropriate <html>, <body>, and <form> tags. The name of the
- * form is "editjob".
+ * This method is called in the body section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to present the required form elements for
editing.
+ * The coder can presume that the HTML that is output from this configuration
will be within appropriate
+ * <html>, <body>, and <form> tags. The name of the form is always
"editjob".
+ * The connector will be connected before this method can be called.
*@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
- *@param tabName is the current tab name.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param actualSequenceNumber is the connection within the job that has
currently been selected.
+ *@param tabName is the current tab name. (actualSequenceNumber, tabName)
form a unique tuple within
+ * the job.
*/
@Override
- public void outputSpecificationBody(IHTTPOutput out, Locale locale,
DocumentSpecification ds, String tabName)
+ public void outputSpecificationBody(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, int actualSequenceNumber, String tabName)
throws ManifoldCFException, IOException
{
int i;
@@ -2616,15 +2628,20 @@ public class FilenetConnector extends or
}
/** Process a specification post.
- * This method is called at the start of job's edit or view page, whenever
there is a possibility that form data for a connection has been
- * posted. Its purpose is to gather form information and modify the document
specification accordingly.
- * The name of the posted form is "editjob".
+ * This method is called at the start of job's edit or view page, whenever
there is a possibility that form
+ * data for a connection has been posted. Its purpose is to gather form
information and modify the
+ * document specification accordingly. The name of the posted form is always
"editjob".
+ * The connector will be connected before this method can be called.
*@param variableContext contains the post data, including binary file-upload
information.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
- *@return null if all is well, or a string error message if there is an error
that should prevent saving of the job (and cause a redirection to an error
page).
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@return null if all is well, or a string error message if there is an error
that should prevent saving of
+ * the job (and cause a redirection to an error page).
*/
@Override
- public String processSpecificationPost(IPostParameters variableContext,
Locale locale, DocumentSpecification ds)
+ public String processSpecificationPost(IPostParameters variableContext,
Locale locale, Specification ds,
+ int connectionSequenceNumber)
throws ManifoldCFException
{
String[] x;
@@ -2882,13 +2899,18 @@ public class FilenetConnector extends or
}
/** View specification.
- * This method is called in the body section of a job's view page. Its
purpose is to present the document specification information to the user.
- * The coder can presume that the HTML that is output from this configuration
will be within appropriate <html> and <body> tags.
+ * This method is called in the body section of a job's view page. Its
purpose is to present the document
+ * specification information to the user. The coder can presume that the
HTML that is output from
+ * this configuration will be within appropriate <html> and <body> tags.
+ * The connector will be connected before this method can be called.
*@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
*/
@Override
- public void viewSpecification(IHTTPOutput out, Locale locale,
DocumentSpecification ds)
+ public void viewSpecification(IHTTPOutput out, Locale locale, Specification
ds,
+ int connectionSequenceNumber)
throws ManifoldCFException, IOException
{
int i;
Modified:
manifoldcf/trunk/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filesystem/FileConnector.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filesystem/FileConnector.java?rev=1621855&r1=1621854&r2=1621855&view=diff
==============================================================================
---
manifoldcf/trunk/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filesystem/FileConnector.java
(original)
+++
manifoldcf/trunk/connectors/filesystem/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/filesystem/FileConnector.java
Mon Sep 1 17:24:19 2014
@@ -497,83 +497,20 @@ public class FileConnector extends org.a
// receives a thread context argument for all UI methods, while the second
bunch does not need one (since it has already been applied via the connect()
// method, above).
- /** Output the configuration header section.
- * This method is called in the head section of the connector's configuration
page. Its purpose is to add the required tabs to the list, and to output any
- * javascript methods that might be needed by the configuration editing HTML.
- *@param threadContext is the local thread context.
- *@param out is the output to which any HTML should be sent.
- *@param parameters are the configuration parameters, as they currently
exist, for this connection being configured.
- *@param tabsArray is an array of tab names. Add to this array any tab names
that are specific to the connector.
- */
- @Override
- public void outputConfigurationHeader(IThreadContext threadContext,
IHTTPOutput out, ConfigParams parameters, List<String> tabsArray)
- throws ManifoldCFException, IOException
- {
- out.print(
-"<script type=\"text/javascript\">\n"+
-"<!--\n"+
-"function checkConfigForSave()\n"+
-"{\n"+
-" return true;\n"+
-"}\n"+
-"\n"+
-"//-->\n"+
-"</script>\n"
- );
- }
-
- /** Output the configuration body section.
- * This method is called in the body section of the connector's configuration
page. Its purpose is to present the required form elements for editing.
- * The coder can presume that the HTML that is output from this configuration
will be within appropriate <html>, <body>, and <form> tags. The name of the
- * form is "editconnection".
- *@param threadContext is the local thread context.
- *@param out is the output to which any HTML should be sent.
- *@param parameters are the configuration parameters, as they currently
exist, for this connection being configured.
- *@param tabName is the current tab name.
- */
- public void outputConfigurationBody(IThreadContext threadContext,
IHTTPOutput out, ConfigParams parameters, String tabName)
- throws ManifoldCFException, IOException
- {
- }
-
- /** Process a configuration post.
- * This method is called at the start of the connector's configuration page,
whenever there is a possibility that form data for a connection has been
- * posted. Its purpose is to gather form information and modify the
configuration parameters accordingly.
- * The name of the posted form is "editconnection".
- *@param threadContext is the local thread context.
- *@param variableContext is the set of variables available from the post,
including binary file post information.
- *@param parameters are the configuration parameters, as they currently
exist, for this connection being configured.
- *@return null if all is well, or a string error message if there is an error
that should prevent saving of the connection (and cause a redirection to an
error page).
- */
- @Override
- public String processConfigurationPost(IThreadContext threadContext,
IPostParameters variableContext, ConfigParams parameters)
- throws ManifoldCFException
- {
- return null;
- }
-
- /** View configuration.
- * This method is called in the body section of the connector's view
configuration page. Its purpose is to present the connection information to
the user.
- * The coder can presume that the HTML that is output from this configuration
will be within appropriate <html> and <body> tags.
- *@param threadContext is the local thread context.
- *@param out is the output to which any HTML should be sent.
- *@param parameters are the configuration parameters, as they currently
exist, for this connection being configured.
- */
- @Override
- public void viewConfiguration(IThreadContext threadContext, IHTTPOutput out,
ConfigParams parameters)
- throws ManifoldCFException, IOException
- {
- }
-
/** Output the specification header section.
- * This method is called in the head section of a job page which has selected
a repository connection of the current type. Its purpose is to add the
required tabs
- * to the list, and to output any javascript methods that might be needed by
the job editing HTML.
+ * This method is called in the head section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to add the required tabs to the list, and to
output any javascript methods
+ * that might be needed by the job editing HTML.
+ * The connector will be connected before this method can be called.
*@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
*@param tabsArray is an array of tab names. Add to this array any tab names
that are specific to the connector.
*/
@Override
- public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
DocumentSpecification ds, List<String> tabsArray)
+ public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, List<String> tabsArray)
throws ManifoldCFException, IOException
{
tabsArray.add(Messages.getString(locale,"FileConnector.Paths"));
@@ -598,15 +535,22 @@ public class FileConnector extends org.a
}
/** Output the specification body section.
- * This method is called in the body section of a job page which has selected
a repository connection of the current type. Its purpose is to present the
required form elements for editing.
- * The coder can presume that the HTML that is output from this configuration
will be within appropriate <html>, <body>, and <form> tags. The name of the
- * form is "editjob".
+ * This method is called in the body section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to present the required form elements for
editing.
+ * The coder can presume that the HTML that is output from this configuration
will be within appropriate
+ * <html>, <body>, and <form> tags. The name of the form is always
"editjob".
+ * The connector will be connected before this method can be called.
*@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
- *@param tabName is the current tab name.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param actualSequenceNumber is the connection within the job that has
currently been selected.
+ *@param tabName is the current tab name. (actualSequenceNumber, tabName)
form a unique tuple within
+ * the job.
*/
@Override
- public void outputSpecificationBody(IHTTPOutput out, Locale locale,
DocumentSpecification ds, String tabName)
+ public void outputSpecificationBody(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, int actualSequenceNumber, String tabName)
throws ManifoldCFException, IOException
{
int i;
@@ -877,15 +821,20 @@ public class FileConnector extends org.a
}
/** Process a specification post.
- * This method is called at the start of job's edit or view page, whenever
there is a possibility that form data for a connection has been
- * posted. Its purpose is to gather form information and modify the document
specification accordingly.
- * The name of the posted form is "editjob".
+ * This method is called at the start of job's edit or view page, whenever
there is a possibility that form
+ * data for a connection has been posted. Its purpose is to gather form
information and modify the
+ * document specification accordingly. The name of the posted form is always
"editjob".
+ * The connector will be connected before this method can be called.
*@param variableContext contains the post data, including binary file-upload
information.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
- *@return null if all is well, or a string error message if there is an error
that should prevent saving of the job (and cause a redirection to an error
page).
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@return null if all is well, or a string error message if there is an error
that should prevent saving of
+ * the job (and cause a redirection to an error page).
*/
@Override
- public String processSpecificationPost(IPostParameters variableContext,
Locale locale, DocumentSpecification ds)
+ public String processSpecificationPost(IPostParameters variableContext,
Locale locale, Specification ds,
+ int connectionSequenceNumber)
throws ManifoldCFException
{
String x = variableContext.getParameter("pathcount");
@@ -1003,13 +952,18 @@ public class FileConnector extends org.a
}
/** View specification.
- * This method is called in the body section of a job's view page. Its
purpose is to present the document specification information to the user.
- * The coder can presume that the HTML that is output from this configuration
will be within appropriate <html> and <body> tags.
+ * This method is called in the body section of a job's view page. Its
purpose is to present the document
+ * specification information to the user. The coder can presume that the
HTML that is output from
+ * this configuration will be within appropriate <html> and <body> tags.
+ * The connector will be connected before this method can be called.
*@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
*@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
*/
@Override
- public void viewSpecification(IHTTPOutput out, Locale locale,
DocumentSpecification ds)
+ public void viewSpecification(IHTTPOutput out, Locale locale, Specification
ds,
+ int connectionSequenceNumber)
throws ManifoldCFException, IOException
{
out.print(
Modified:
manifoldcf/trunk/connectors/generic/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/generic/GenericConnector.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/generic/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/generic/GenericConnector.java?rev=1621855&r1=1621854&r2=1621855&view=diff
==============================================================================
---
manifoldcf/trunk/connectors/generic/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/generic/GenericConnector.java
(original)
+++
manifoldcf/trunk/connectors/generic/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/generic/GenericConnector.java
Mon Sep 1 17:24:19 2014
@@ -607,7 +607,8 @@ public class GenericConnector extends Ba
}
@Override
- public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
DocumentSpecification ds, List<String> tabsArray)
+ public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, List<String> tabsArray)
throws ManifoldCFException, IOException {
tabsArray.add(Messages.getString(locale, "generic.Parameters"));
tabsArray.add(Messages.getString(locale, "generic.Security"));
@@ -647,7 +648,8 @@ public class GenericConnector extends Ba
}
@Override
- public void outputSpecificationBody(IHTTPOutput out, Locale locale,
DocumentSpecification ds, String tabName)
+ public void outputSpecificationBody(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, int actualSequenceNumber, String tabName)
throws ManifoldCFException, IOException {
int k, i;
@@ -829,7 +831,8 @@ public class GenericConnector extends Ba
}
@Override
- public String processSpecificationPost(IPostParameters variableContext,
Locale locale, DocumentSpecification ds)
+ public String processSpecificationPost(IPostParameters variableContext,
Locale locale, Specification ds,
+ int connectionSequenceNumber)
throws ManifoldCFException {
String xc = variableContext.getParameter("paramcount");
@@ -939,7 +942,8 @@ public class GenericConnector extends Ba
}
@Override
- public void viewSpecification(IHTTPOutput out, Locale locale,
DocumentSpecification ds)
+ public void viewSpecification(IHTTPOutput out, Locale locale, Specification
ds,
+ int connectionSequenceNumber)
throws ManifoldCFException, IOException {
boolean seenAny;
int i;
Modified:
manifoldcf/trunk/connectors/googledrive/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/googledrive/GoogleDriveRepositoryConnector.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/googledrive/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/googledrive/GoogleDriveRepositoryConnector.java?rev=1621855&r1=1621854&r2=1621855&view=diff
==============================================================================
---
manifoldcf/trunk/connectors/googledrive/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/googledrive/GoogleDriveRepositoryConnector.java
(original)
+++
manifoldcf/trunk/connectors/googledrive/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/googledrive/GoogleDriveRepositoryConnector.java
Mon Sep 1 17:24:19 2014
@@ -564,7 +564,7 @@ public class GoogleDriveRepositoryConnec
/**
* Fill in specification Velocity parameter map for GOOGLEDRIVEQuery tab.
*/
- private static void fillInGOOGLEDRIVEQuerySpecificationMap(Map<String,
Object> newMap, DocumentSpecification ds) {
+ private static void fillInGOOGLEDRIVEQuerySpecificationMap(Map<String,
Object> newMap, Specification ds) {
String GoogleDriveQuery = GoogleDriveConfig.GOOGLEDRIVE_QUERY_DEFAULT;
for (int i = 0; i < ds.getChildCount(); i++) {
SpecificationNode sn = ds.getChild(i);
@@ -578,7 +578,7 @@ public class GoogleDriveRepositoryConnec
/**
* Fill in specification Velocity parameter map for GOOGLEDRIVESecurity tab.
*/
- private static void fillInGOOGLEDRIVESecuritySpecificationMap(Map<String,
Object> newMap, DocumentSpecification ds) {
+ private static void fillInGOOGLEDRIVESecuritySpecificationMap(Map<String,
Object> newMap, Specification ds) {
List<Map<String,String>> accessTokenList = new
ArrayList<Map<String,String>>();
for (int i = 0; i < ds.getChildCount(); i++) {
SpecificationNode sn = ds.getChild(i);
@@ -592,19 +592,20 @@ public class GoogleDriveRepositoryConnec
newMap.put("ACCESSTOKENS", accessTokenList);
}
- /**
- * View specification. This method is called in the body section of a job's
- * view page. Its purpose is to present the document specification
- * information to the user. The coder can presume that the HTML that is
- * output from this configuration will be within appropriate <html> and
- * <body> tags.
- *
- * @param out is the output to which any HTML should be sent.
- * @param ds is the current document specification for this job.
- */
+ /** View specification.
+ * This method is called in the body section of a job's view page. Its
purpose is to present the document
+ * specification information to the user. The coder can presume that the
HTML that is output from
+ * this configuration will be within appropriate <html> and <body> tags.
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ */
@Override
- public void viewSpecification(IHTTPOutput out, Locale locale,
DocumentSpecification ds)
- throws ManifoldCFException, IOException {
+ public void viewSpecification(IHTTPOutput out, Locale locale, Specification
ds,
+ int connectionSequenceNumber)
+ throws ManifoldCFException, IOException {
Map<String, Object> paramMap = new HashMap<String, Object>();
@@ -615,23 +616,22 @@ public class GoogleDriveRepositoryConnec
Messages.outputResourceWithVelocity(out,locale,VIEW_SPEC_FORWARD,paramMap);
}
- /**
- * Process a specification post. This method is called at the start of job's
- * edit or view page, whenever there is a possibility that form data for a
- * connection has been posted. Its purpose is to gather form information and
- * modify the document specification accordingly. The name of the posted
- * form is "editjob".
- *
- * @param variableContext contains the post data, including binary
- * file-upload information.
- * @param ds is the current document specification for this job.
- * @return null if all is well, or a string error message if there is an
- * error that should prevent saving of the job (and cause a redirection to
- * an error page).
- */
+ /** Process a specification post.
+ * This method is called at the start of job's edit or view page, whenever
there is a possibility that form
+ * data for a connection has been posted. Its purpose is to gather form
information and modify the
+ * document specification accordingly. The name of the posted form is always
"editjob".
+ * The connector will be connected before this method can be called.
+ *@param variableContext contains the post data, including binary file-upload
information.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@return null if all is well, or a string error message if there is an error
that should prevent saving of
+ * the job (and cause a redirection to an error page).
+ */
@Override
- public String processSpecificationPost(IPostParameters variableContext,
- DocumentSpecification ds) throws ManifoldCFException {
+ public String processSpecificationPost(IPostParameters variableContext,
Locale locale, Specification ds,
+ int connectionSequenceNumber)
+ throws ManifoldCFException {
String googleDriveQuery = variableContext.getParameter("googledrivequery");
if (googleDriveQuery != null) {
@@ -693,22 +693,24 @@ public class GoogleDriveRepositoryConnec
return null;
}
- /**
- * Output the specification body section. This method is called in the body
- * section of a job page which has selected a repository connection of the
- * current type. Its purpose is to present the required form elements for
- * editing. The coder can presume that the HTML that is output from this
- * configuration will be within appropriate <html>, <body>, and <form> tags.
- * The name of the form is "editjob".
- *
- * @param out is the output to which any HTML should be sent.
- * @param ds is the current document specification for this job.
- * @param tabName is the current tab name.
- */
+ /** Output the specification body section.
+ * This method is called in the body section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to present the required form elements for
editing.
+ * The coder can presume that the HTML that is output from this configuration
will be within appropriate
+ * <html>, <body>, and <form> tags. The name of the form is always
"editjob".
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param actualSequenceNumber is the connection within the job that has
currently been selected.
+ *@param tabName is the current tab name. (actualSequenceNumber, tabName)
form a unique tuple within
+ * the job.
+ */
@Override
- public void outputSpecificationBody(IHTTPOutput out,
- Locale locale, DocumentSpecification ds, String tabName) throws
ManifoldCFException,
- IOException {
+ public void outputSpecificationBody(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, int actualSequenceNumber, String tabName)
+ throws ManifoldCFException, IOException {
// Output GOOGLEDRIVEQuery tab
Map<String, Object> paramMap = new HashMap<String, Object>();
@@ -719,22 +721,21 @@ public class GoogleDriveRepositoryConnec
Messages.outputResourceWithVelocity(out,locale,EDIT_SPEC_FORWARD_SECURITY,paramMap);
}
- /**
- * Output the specification header section. This method is called in the
- * head section of a job page which has selected a repository connection of
- * the current type. Its purpose is to add the required tabs to the list,
- * and to output any javascript methods that might be needed by the job
- * editing HTML.
- *
- * @param out is the output to which any HTML should be sent.
- * @param ds is the current document specification for this job.
- * @param tabsArray is an array of tab names. Add to this array any tab
- * names that are specific to the connector.
- */
+ /** Output the specification header section.
+ * This method is called in the head section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to add the required tabs to the list, and to
output any javascript methods
+ * that might be needed by the job editing HTML.
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param tabsArray is an array of tab names. Add to this array any tab names
that are specific to the connector.
+ */
@Override
- public void outputSpecificationHeader(IHTTPOutput out,
- Locale locale, DocumentSpecification ds, List<String> tabsArray)
- throws ManifoldCFException, IOException {
+ public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, List<String> tabsArray)
+ throws ManifoldCFException, IOException {
tabsArray.add(Messages.getString(locale, GOOGLEDRIVE_QUERY_TAB_PROPERTY));
tabsArray.add(Messages.getString(locale,
GOOGLEDRIVE_SECURITY_TAB_PROPERTY));
Modified:
manifoldcf/trunk/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/hdfs/HDFSRepositoryConnector.java
URL:
http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/hdfs/HDFSRepositoryConnector.java?rev=1621855&r1=1621854&r2=1621855&view=diff
==============================================================================
---
manifoldcf/trunk/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/hdfs/HDFSRepositoryConnector.java
(original)
+++
manifoldcf/trunk/connectors/hdfs/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/hdfs/HDFSRepositoryConnector.java
Mon Sep 1 17:24:19 2014
@@ -743,14 +743,19 @@ public class HDFSRepositoryConnector ext
}
/** Output the specification header section.
- * This method is called in the head section of a job page which has
selected a repository connection of the current type. Its purpose is to add
the required tabs
- * to the list, and to output any javascript methods that might be needed by
the job editing HTML.
- *@param out is the output to which any HTML should be sent.
- *@param ds is the current document specification for this job.
- *@param tabsArray is an array of tab names. Add to this array any tab
names that are specific to the connector.
- */
+ * This method is called in the head section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to add the required tabs to the list, and to
output any javascript methods
+ * that might be needed by the job editing HTML.
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param tabsArray is an array of tab names. Add to this array any tab names
that are specific to the connector.
+ */
@Override
- public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
DocumentSpecification ds, List<String> tabsArray)
+ public void outputSpecificationHeader(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, List<String> tabsArray)
throws ManifoldCFException, IOException
{
tabsArray.add(Messages.getString(locale,"HDFSRepositoryConnector.Paths"));
@@ -775,15 +780,22 @@ public class HDFSRepositoryConnector ext
}
/** Output the specification body section.
- * This method is called in the body section of a job page which has
selected a repository connection of the current type. Its purpose is to
present the required form elements for editing.
- * The coder can presume that the HTML that is output from this
configuration will be within appropriate <html>, <body>, and <form> tags. The
name of the
- * form is "editjob".
- *@param out is the output to which any HTML should be sent.
- *@param ds is the current document specification for this job.
- *@param tabName is the current tab name.
- */
+ * This method is called in the body section of a job page which has selected
a repository connection of the
+ * current type. Its purpose is to present the required form elements for
editing.
+ * The coder can presume that the HTML that is output from this configuration
will be within appropriate
+ * <html>, <body>, and <form> tags. The name of the form is always
"editjob".
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@param actualSequenceNumber is the connection within the job that has
currently been selected.
+ *@param tabName is the current tab name. (actualSequenceNumber, tabName)
form a unique tuple within
+ * the job.
+ */
@Override
- public void outputSpecificationBody(IHTTPOutput out, Locale locale,
DocumentSpecification ds, String tabName)
+ public void outputSpecificationBody(IHTTPOutput out, Locale locale,
Specification ds,
+ int connectionSequenceNumber, int actualSequenceNumber, String tabName)
throws ManifoldCFException, IOException
{
int i;
@@ -1053,15 +1065,20 @@ public class HDFSRepositoryConnector ext
}
/** Process a specification post.
- * This method is called at the start of job's edit or view page, whenever
there is a possibility that form data for a connection has been
- * posted. Its purpose is to gather form information and modify the
document specification accordingly.
- * The name of the posted form is "editjob".
- *@param variableContext contains the post data, including binary
file-upload information.
- *@param ds is the current document specification for this job.
- *@return null if all is well, or a string error message if there is an
error that should prevent saving of the job (and cause a redirection to an
error page).
- */
+ * This method is called at the start of job's edit or view page, whenever
there is a possibility that form
+ * data for a connection has been posted. Its purpose is to gather form
information and modify the
+ * document specification accordingly. The name of the posted form is always
"editjob".
+ * The connector will be connected before this method can be called.
+ *@param variableContext contains the post data, including binary file-upload
information.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ *@return null if all is well, or a string error message if there is an error
that should prevent saving of
+ * the job (and cause a redirection to an error page).
+ */
@Override
- public String processSpecificationPost(IPostParameters variableContext,
Locale locale, DocumentSpecification ds)
+ public String processSpecificationPost(IPostParameters variableContext,
Locale locale, Specification ds,
+ int connectionSequenceNumber)
throws ManifoldCFException
{
String x = variableContext.getParameter("pathcount");
@@ -1198,13 +1215,18 @@ public class HDFSRepositoryConnector ext
}
/** View specification.
- * This method is called in the body section of a job's view page. Its
purpose is to present the document specification information to the user.
- * The coder can presume that the HTML that is output from this
configuration will be within appropriate <html> and <body> tags.
- *@param out is the output to which any HTML should be sent.
- *@param ds is the current document specification for this job.
- */
+ * This method is called in the body section of a job's view page. Its
purpose is to present the document
+ * specification information to the user. The coder can presume that the
HTML that is output from
+ * this configuration will be within appropriate <html> and <body> tags.
+ * The connector will be connected before this method can be called.
+ *@param out is the output to which any HTML should be sent.
+ *@param locale is the locale the output is preferred to be in.
+ *@param ds is the current document specification for this job.
+ *@param connectionSequenceNumber is the unique number of this connection
within the job.
+ */
@Override
- public void viewSpecification(IHTTPOutput out, Locale locale,
DocumentSpecification ds)
+ public void viewSpecification(IHTTPOutput out, Locale locale, Specification
ds,
+ int connectionSequenceNumber)
throws ManifoldCFException, IOException
{
out.print(