Author: fmui
Date: Mon May 5 15:11:14 2014
New Revision: 1592548
URL: http://svn.apache.org/r1592548
Log:
server archetype: increased default values
Modified:
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-archetype/src/main/resources/archetype-resources/src/main/java/__projectPrefix__CmisServiceFactory.java
Modified:
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-archetype/src/main/resources/archetype-resources/src/main/java/__projectPrefix__CmisServiceFactory.java
URL:
http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-archetype/src/main/resources/archetype-resources/src/main/java/__projectPrefix__CmisServiceFactory.java?rev=1592548&r1=1592547&r2=1592548&view=diff
==============================================================================
---
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-archetype/src/main/resources/archetype-resources/src/main/java/__projectPrefix__CmisServiceFactory.java
(original)
+++
chemistry/opencmis/trunk/chemistry-opencmis-server/chemistry-opencmis-server-archetype/src/main/resources/archetype-resources/src/main/java/__projectPrefix__CmisServiceFactory.java
Mon May 5 15:11:14 2014
@@ -17,7 +17,7 @@ import org.apache.chemistry.opencmis.ser
public class ${projectPrefix}CmisServiceFactory extends AbstractServiceFactory
{
/** Default maxItems value for getTypeChildren()}. */
- private static final BigInteger DEFAULT_MAX_ITEMS_TYPES =
BigInteger.valueOf(50);
+ private static final BigInteger DEFAULT_MAX_ITEMS_TYPES =
BigInteger.valueOf(1000);
/** Default depth value for getTypeDescendants(). */
private static final BigInteger DEFAULT_DEPTH_TYPES =
BigInteger.valueOf(-1);
@@ -26,7 +26,7 @@ public class ${projectPrefix}CmisService
* Default maxItems value for getChildren() and other methods returning
* lists of objects.
*/
- private static final BigInteger DEFAULT_MAX_ITEMS_OBJECTS =
BigInteger.valueOf(200);
+ private static final BigInteger DEFAULT_MAX_ITEMS_OBJECTS =
BigInteger.valueOf(100000);
/** Default depth value for getDescendants(). */
private static final BigInteger DEFAULT_DEPTH_OBJECTS =
BigInteger.valueOf(10);