Merged HEAD-QA to HEAD (4.2) (including moving test classes into separate folders)

51903 to 54309 


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@54310 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Samuel Langlois
2013-08-20 17:17:31 +00:00
parent 5a8f6ee635
commit e60d57ea42
70 changed files with 7094 additions and 1988 deletions

View File

@@ -86,6 +86,7 @@ public class ClientConfigElement extends ConfigElementAdapter
private int pickerSearchMinimum = 2;
private boolean checkContextAgainstPath = false;
private boolean allowUserScriptExecute = false;
private boolean isBulkFetchEnabled = true;
/**
@@ -963,4 +964,21 @@ public class ClientConfigElement extends ConfigElementAdapter
{
this.allowUserScriptExecute = allowUserScriptExecute;
}
/**
* @return true if bulk fetch is enabled
*/
public boolean isBulkFetchEnabled()
{
return isBulkFetchEnabled;
}
/**
* @param isBulkFetchEnabled
*/
/*package*/ void setBulkFetchEnabled(boolean isBulkFetchEnabled)
{
this.isBulkFetchEnabled = isBulkFetchEnabled;
}
}