You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/saas/sources/migration/src/main/java/tools/dynamia/modules/saas/migration/api/AccountCloneOptions.java
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -19,10 +19,14 @@
19
19
*/
20
20
publicclassAccountCloneOptions {
21
21
22
-
/** ID of the account to clone data from. Required. */
22
+
/**
23
+
* ID of the account to clone data from. Required.
24
+
*/
23
25
privateSerializablesourceAccountId;
24
26
25
-
/** ID of the (already existing) target account. Required. */
27
+
/**
28
+
* ID of the (already existing) target account. Required.
29
+
*/
26
30
privateSerializabletargetAccountId;
27
31
28
32
/**
@@ -32,8 +36,10 @@ public class AccountCloneOptions {
Copy file name to clipboardExpand all lines: extensions/saas/sources/migration/src/main/java/tools/dynamia/modules/saas/migration/api/AccountExportOptions.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@
19
19
*/
20
20
publicclassAccountExportOptions {
21
21
22
-
publicstaticfinalintDEFAULT_CHUNK_SIZE = 5000;
22
+
publicstaticfinalintDEFAULT_CHUNK_SIZE = 1000;
23
23
24
24
/**
25
25
* Number of records to read from DB per pagination page. Default: 5000.
Copy file name to clipboardExpand all lines: extensions/saas/sources/migration/src/main/java/tools/dynamia/modules/saas/migration/api/AccountImportOptions.java
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -26,11 +26,15 @@ public class AccountImportOptions {
26
26
*/
27
27
privateSerializabletargetAccountId;
28
28
29
-
/** How to handle primary keys when persisting imported entities. */
29
+
/**
30
+
* How to handle primary keys when persisting imported entities.
0 commit comments