added more model hard limits

This commit is contained in:
Claudio Atzori 2024-03-22 10:22:23 +01:00
parent 1f2b70aa95
commit 4488c3eb60
1 changed files with 2 additions and 0 deletions

View File

@ -14,7 +14,9 @@ public class ModelHardLimits {
public static final int MAX_AUTHOR_FULLNAME_LENGTH = 1000;
public static final int MAX_TITLE_LENGTH = 5000;
public static final int MAX_TITLES = 10;
public static final int MAX_ABSTRACTS = 10;
public static final int MAX_ABSTRACT_LENGTH = 150000;
public static final int MAX_RELATED_ABSTRACT_LENGTH = 500;
public static final int MAX_INSTANCES = 10;
public static String getCollectionName(String format) {