diff --git a/.openapi-generator/VERSION b/.openapi-generator/VERSION
index 93c8ddab..1985849f 100644
--- a/.openapi-generator/VERSION
+++ b/.openapi-generator/VERSION
@@ -1 +1 @@
-7.6.0
+7.7.0
diff --git a/.openapi-generator/openapi.yaml-default.sha256 b/.openapi-generator/openapi.yaml-default.sha256
index 980cebdb..6618d50f 100644
--- a/.openapi-generator/openapi.yaml-default.sha256
+++ b/.openapi-generator/openapi.yaml-default.sha256
@@ -1 +1 @@
-fb8844e490e048802f95c5d95f0865837d9b2a5a24947a4e7426d0eebfed9f2b
\ No newline at end of file
+fb25da0b01d32a744a0a48d9eb80cb1a24ea5ba4b035982ba1006dbec2cd700b
\ No newline at end of file
diff --git a/api/openapi.yaml b/api/openapi.yaml
index 5573080b..f559f710 100644
--- a/api/openapi.yaml
+++ b/api/openapi.yaml
@@ -104,7 +104,7 @@ info:
name: GPL-v2.0
url: http://www.gnu.org/licenses/gpl-2.0.txt
title: Bonita API
- version: 0.0.18
+ version: 0.0.19
x-logo:
url: images/bonitasoft-logo.svg
backgroundColor: '#19465f'
@@ -680,7 +680,7 @@ paths:
post:
deprecated: true
description: |
- Create a living applications
+ Create a living application (legacy application or application link).
Warning: as of 9.0.0, creating a living application using this API is deprecated.
operationId: createApplication
@@ -696,7 +696,7 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/LegacyApplication'
+ $ref: '#/components/schemas/Application'
description: 'Success '
"400":
content:
@@ -877,7 +877,7 @@ paths:
put:
deprecated: true
description: |
- Update a single application for the given ID
+ Update a single application for the given ID (legacy application or application link).
Warning: as of 9.0.0, updating a living application using this API is deprecated.
operationId: updateApplicationById
@@ -904,7 +904,7 @@ paths:
content:
application/json:
schema:
- $ref: '#/components/schemas/LegacyApplication'
+ $ref: '#/components/schemas/Application'
description: 'Success '
"400":
content:
@@ -17393,12 +17393,17 @@ components:
x-one-of-name: Application
CreateApplicationRequest:
example:
+ link: "false"
version: "1.0"
profileId: "2"
token: myapp
displayName: My app
description: My application description
properties:
+ link:
+ default: false
+ description: "true for an application link, false for a legacy application"
+ type: boolean
description:
description: description of the application
type: string
diff --git a/pom.xml b/pom.xml
index 5a3ddbb4..68529f0a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,7 +47,7 @@
UTF-8
UTF-8
- 0.0.18
+ 0.0.19
1.6.14
3.0.0
3.0.2
diff --git a/src/main/java/org/bonitasoft/web/client/api/ActivityApi.java b/src/main/java/org/bonitasoft/web/client/api/ActivityApi.java
index b04c1821..cfcff94e 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ActivityApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ActivityApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ActivityApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ActivityVariableApi.java b/src/main/java/org/bonitasoft/web/client/api/ActivityVariableApi.java
index cd91d47e..fb81e583 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ActivityVariableApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ActivityVariableApi.java
@@ -22,7 +22,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ActivityVariableApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ActorApi.java b/src/main/java/org/bonitasoft/web/client/api/ActorApi.java
index cc42ea3a..83c46cef 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ActorApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ActorApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ActorApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ActorMemberApi.java b/src/main/java/org/bonitasoft/web/client/api/ActorMemberApi.java
index b1dd5ee3..56080967 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ActorMemberApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ActorMemberApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ActorMemberApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ApplicationApi.java b/src/main/java/org/bonitasoft/web/client/api/ApplicationApi.java
index 1015e8d6..6524e030 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ApplicationApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ApplicationApi.java
@@ -26,19 +26,18 @@
import org.bonitasoft.web.client.model.Application;
import org.bonitasoft.web.client.model.ApplicationUpdateRequest;
import org.bonitasoft.web.client.model.CreateApplicationRequest;
-import org.bonitasoft.web.client.model.LegacyApplication;
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ApplicationApi extends ApiClient.Api {
/**
* Create a living application
- * Create a living applications Warning: as of 9.0.0, creating a living application using this API is deprecated.
+ * Create a living application (legacy application or application link). Warning: as of 9.0.0, creating a living application using this API is deprecated.
*
* @param body Partial living application description (required)
- * @return LegacyApplication
+ * @return Application
* @deprecated
*/
@Deprecated
@@ -47,12 +46,12 @@ public interface ApplicationApi extends ApiClient.Api {
"Content-Type: application/json",
"Accept: application/json",
})
- LegacyApplication createApplication(CreateApplicationRequest body);
+ Application createApplication(CreateApplicationRequest body);
/**
* Create a living application
* Similar to createApplication
but it also returns the http response headers .
- * Create a living applications Warning: as of 9.0.0, creating a living application using this API is deprecated.
+ * Create a living application (legacy application or application link). Warning: as of 9.0.0, creating a living application using this API is deprecated.
*
* @param body Partial living application description (required)
* @return A ApiResponse that wraps the response boyd and the http headers.
@@ -64,7 +63,7 @@ public interface ApplicationApi extends ApiClient.Api {
"Content-Type: application/json",
"Accept: application/json",
})
- ApiResponse createApplicationWithHttpInfo(CreateApplicationRequest body);
+ ApiResponse createApplicationWithHttpInfo(CreateApplicationRequest body);
/**
* Delete a living application by ID
@@ -292,11 +291,12 @@ public SearchApplicationsQueryParams s(final String value) {
/**
* Update a living application by ID
- * Update a single application for the given ID Warning: as of 9.0.0, updating a living application using this API is deprecated.
+ * Update a single application for the given ID (legacy application or application link). Warning: as of 9.0.0, updating a living application using this API is
+ * deprecated.
*
* @param id ID of application to return (required)
* @param applicationUpdateRequest Partial living application description (required)
- * @return LegacyApplication
+ * @return Application
* @deprecated
*/
@Deprecated
@@ -305,12 +305,13 @@ public SearchApplicationsQueryParams s(final String value) {
"Content-Type: application/json",
"Accept: application/json",
})
- LegacyApplication updateApplicationById(@Param("id") String id, ApplicationUpdateRequest applicationUpdateRequest);
+ Application updateApplicationById(@Param("id") String id, ApplicationUpdateRequest applicationUpdateRequest);
/**
* Update a living application by ID
* Similar to updateApplicationById
but it also returns the http response headers .
- * Update a single application for the given ID Warning: as of 9.0.0, updating a living application using this API is deprecated.
+ * Update a single application for the given ID (legacy application or application link). Warning: as of 9.0.0, updating a living application using this API is
+ * deprecated.
*
* @param id ID of application to return (required)
* @param applicationUpdateRequest Partial living application description (required)
@@ -323,7 +324,7 @@ public SearchApplicationsQueryParams s(final String value) {
"Content-Type: application/json",
"Accept: application/json",
})
- ApiResponse updateApplicationByIdWithHttpInfo(@Param("id") String id,
+ ApiResponse updateApplicationByIdWithHttpInfo(@Param("id") String id,
ApplicationUpdateRequest applicationUpdateRequest);
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ApplicationMenuApi.java b/src/main/java/org/bonitasoft/web/client/api/ApplicationMenuApi.java
index 0aa928e6..f1949d70 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ApplicationMenuApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ApplicationMenuApi.java
@@ -28,7 +28,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ApplicationMenuApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ApplicationPageApi.java b/src/main/java/org/bonitasoft/web/client/api/ApplicationPageApi.java
index 0810c493..55ac9734 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ApplicationPageApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ApplicationPageApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ApplicationPageApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedActivityApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedActivityApi.java
index 66e0e763..f617a60f 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedActivityApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedActivityApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedActivityApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedActivityVariableApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedActivityVariableApi.java
index f5a173d4..47fe247f 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedActivityVariableApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedActivityVariableApi.java
@@ -22,7 +22,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedActivityVariableApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedConnectorInstanceApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedConnectorInstanceApi.java
index f716ad1f..d0954a7e 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedConnectorInstanceApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedConnectorInstanceApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedConnectorInstanceApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedFlowNodeApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedFlowNodeApi.java
index 27d6290a..287750da 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedFlowNodeApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedFlowNodeApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedFlowNodeApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedHumanTaskApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedHumanTaskApi.java
index 5d089ab5..abba063b 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedHumanTaskApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedHumanTaskApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedHumanTaskApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedManualTaskApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedManualTaskApi.java
index 1f156a27..fe99bd19 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedManualTaskApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedManualTaskApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedManualTaskApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceApi.java
index 5f24eda0..bdd6e3b5 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedProcessInstanceApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceCommentApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceCommentApi.java
index 02132f6b..eb1b2a80 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceCommentApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceCommentApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedProcessInstanceCommentApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceDocumentApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceDocumentApi.java
index f7574966..2a0383f5 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceDocumentApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceDocumentApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedProcessInstanceDocumentApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceVariableApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceVariableApi.java
index 2dd8b7df..345f2e12 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceVariableApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedProcessInstanceVariableApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedProcessInstanceVariableApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedTaskApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedTaskApi.java
index 3f8b262d..cfdaa8a1 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedTaskApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedTaskApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedTaskApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ArchivedUserTaskApi.java b/src/main/java/org/bonitasoft/web/client/api/ArchivedUserTaskApi.java
index a4505e99..c0fb828d 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ArchivedUserTaskApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ArchivedUserTaskApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ArchivedUserTaskApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/AuthenticationApi.java b/src/main/java/org/bonitasoft/web/client/api/AuthenticationApi.java
index 0addde07..7fe3e9ff 100644
--- a/src/main/java/org/bonitasoft/web/client/api/AuthenticationApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/AuthenticationApi.java
@@ -24,7 +24,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface AuthenticationApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/BdmAccessControlApi.java b/src/main/java/org/bonitasoft/web/client/api/BdmAccessControlApi.java
index 3af48459..08f4809b 100644
--- a/src/main/java/org/bonitasoft/web/client/api/BdmAccessControlApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/BdmAccessControlApi.java
@@ -24,7 +24,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface BdmAccessControlApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/BdmApi.java b/src/main/java/org/bonitasoft/web/client/api/BdmApi.java
index 56d1d5c4..3ec92d7a 100644
--- a/src/main/java/org/bonitasoft/web/client/api/BdmApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/BdmApi.java
@@ -29,7 +29,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface BdmApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/BusinessDataQueryApi.java b/src/main/java/org/bonitasoft/web/client/api/BusinessDataQueryApi.java
index 12cc22ab..6b5b46b3 100644
--- a/src/main/java/org/bonitasoft/web/client/api/BusinessDataQueryApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/BusinessDataQueryApi.java
@@ -25,7 +25,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface BusinessDataQueryApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ConnectorFailureApi.java b/src/main/java/org/bonitasoft/web/client/api/ConnectorFailureApi.java
index e84308fb..6556f2ae 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ConnectorFailureApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ConnectorFailureApi.java
@@ -22,7 +22,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ConnectorFailureApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ConnectorInstanceApi.java b/src/main/java/org/bonitasoft/web/client/api/ConnectorInstanceApi.java
index 3c59e565..8c38d32e 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ConnectorInstanceApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ConnectorInstanceApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ConnectorInstanceApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/CustomUserApi.java b/src/main/java/org/bonitasoft/web/client/api/CustomUserApi.java
index 96237f9b..9cd3baa0 100644
--- a/src/main/java/org/bonitasoft/web/client/api/CustomUserApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/CustomUserApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface CustomUserApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/CustomUserDefinitionApi.java b/src/main/java/org/bonitasoft/web/client/api/CustomUserDefinitionApi.java
index d18f918d..47fe4961 100644
--- a/src/main/java/org/bonitasoft/web/client/api/CustomUserDefinitionApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/CustomUserDefinitionApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface CustomUserDefinitionApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/CustomUserValueApi.java b/src/main/java/org/bonitasoft/web/client/api/CustomUserValueApi.java
index bcadf91c..2d1c3d74 100644
--- a/src/main/java/org/bonitasoft/web/client/api/CustomUserValueApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/CustomUserValueApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface CustomUserValueApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/DiagramApi.java b/src/main/java/org/bonitasoft/web/client/api/DiagramApi.java
index f5f4919f..e7532c4b 100644
--- a/src/main/java/org/bonitasoft/web/client/api/DiagramApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/DiagramApi.java
@@ -21,7 +21,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface DiagramApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/FlowNodeApi.java b/src/main/java/org/bonitasoft/web/client/api/FlowNodeApi.java
index 31f41dae..b75bf4c5 100644
--- a/src/main/java/org/bonitasoft/web/client/api/FlowNodeApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/FlowNodeApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface FlowNodeApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/FormMappingApi.java b/src/main/java/org/bonitasoft/web/client/api/FormMappingApi.java
index ab7dbbbd..6af0c037 100644
--- a/src/main/java/org/bonitasoft/web/client/api/FormMappingApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/FormMappingApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface FormMappingApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/GroupApi.java b/src/main/java/org/bonitasoft/web/client/api/GroupApi.java
index 320b6daf..89a9d785 100644
--- a/src/main/java/org/bonitasoft/web/client/api/GroupApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/GroupApi.java
@@ -28,7 +28,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface GroupApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/HumanTaskApi.java b/src/main/java/org/bonitasoft/web/client/api/HumanTaskApi.java
index 5355b4d2..44a5b7e0 100644
--- a/src/main/java/org/bonitasoft/web/client/api/HumanTaskApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/HumanTaskApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface HumanTaskApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/I18nlocaleApi.java b/src/main/java/org/bonitasoft/web/client/api/I18nlocaleApi.java
index 841fb8c9..32e0142e 100644
--- a/src/main/java/org/bonitasoft/web/client/api/I18nlocaleApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/I18nlocaleApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface I18nlocaleApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/I18ntranslationApi.java b/src/main/java/org/bonitasoft/web/client/api/I18ntranslationApi.java
index c108eb75..5a9d7e98 100644
--- a/src/main/java/org/bonitasoft/web/client/api/I18ntranslationApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/I18ntranslationApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface I18ntranslationApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/MaintenanceApi.java b/src/main/java/org/bonitasoft/web/client/api/MaintenanceApi.java
index 5ed63300..7f7c5f68 100644
--- a/src/main/java/org/bonitasoft/web/client/api/MaintenanceApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/MaintenanceApi.java
@@ -22,7 +22,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface MaintenanceApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ManualTaskApi.java b/src/main/java/org/bonitasoft/web/client/api/ManualTaskApi.java
index 4362e723..6ad1f874 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ManualTaskApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ManualTaskApi.java
@@ -28,7 +28,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ManualTaskApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/MembershipApi.java b/src/main/java/org/bonitasoft/web/client/api/MembershipApi.java
index 9c004d90..be5d11e0 100644
--- a/src/main/java/org/bonitasoft/web/client/api/MembershipApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/MembershipApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface MembershipApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/MessageApi.java b/src/main/java/org/bonitasoft/web/client/api/MessageApi.java
index a6bc9c20..295e1ded 100644
--- a/src/main/java/org/bonitasoft/web/client/api/MessageApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/MessageApi.java
@@ -22,7 +22,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface MessageApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/OrganizationApi.java b/src/main/java/org/bonitasoft/web/client/api/OrganizationApi.java
index ea914449..7454bfec 100644
--- a/src/main/java/org/bonitasoft/web/client/api/OrganizationApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/OrganizationApi.java
@@ -23,7 +23,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface OrganizationApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/PageApi.java b/src/main/java/org/bonitasoft/web/client/api/PageApi.java
index 8b117237..7df4a5b7 100644
--- a/src/main/java/org/bonitasoft/web/client/api/PageApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/PageApi.java
@@ -29,7 +29,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface PageApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/PlatformApi.java b/src/main/java/org/bonitasoft/web/client/api/PlatformApi.java
index 81bcc039..abca0447 100644
--- a/src/main/java/org/bonitasoft/web/client/api/PlatformApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/PlatformApi.java
@@ -23,7 +23,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface PlatformApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/PlatformAuthenticationApi.java b/src/main/java/org/bonitasoft/web/client/api/PlatformAuthenticationApi.java
index e3822ac8..71b064c7 100644
--- a/src/main/java/org/bonitasoft/web/client/api/PlatformAuthenticationApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/PlatformAuthenticationApi.java
@@ -21,7 +21,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface PlatformAuthenticationApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProcessApi.java b/src/main/java/org/bonitasoft/web/client/api/ProcessApi.java
index a6ca30b1..dffd8936 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProcessApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProcessApi.java
@@ -34,7 +34,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProcessApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProcessConnectorDependencyApi.java b/src/main/java/org/bonitasoft/web/client/api/ProcessConnectorDependencyApi.java
index d0ca094d..c1915069 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProcessConnectorDependencyApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProcessConnectorDependencyApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProcessConnectorDependencyApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProcessInfoApi.java b/src/main/java/org/bonitasoft/web/client/api/ProcessInfoApi.java
index 4d9e1e0f..f031336d 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProcessInfoApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProcessInfoApi.java
@@ -22,7 +22,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProcessInfoApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceApi.java b/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceApi.java
index 06beb66b..dbf21e09 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceApi.java
@@ -28,7 +28,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProcessInstanceApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceCommentApi.java b/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceCommentApi.java
index 3ff764bb..a0e2ca75 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceCommentApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceCommentApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProcessInstanceCommentApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceDocumentApi.java b/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceDocumentApi.java
index e139d98f..02a1f4ed 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceDocumentApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceDocumentApi.java
@@ -28,7 +28,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProcessInstanceDocumentApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceInfoApi.java b/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceInfoApi.java
index 90f61200..5d48ce78 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceInfoApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceInfoApi.java
@@ -22,7 +22,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProcessInstanceInfoApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceVariableApi.java b/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceVariableApi.java
index f6dc69a5..9a3895b5 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceVariableApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProcessInstanceVariableApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProcessInstanceVariableApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProcessParameterApi.java b/src/main/java/org/bonitasoft/web/client/api/ProcessParameterApi.java
index 065fd9e7..55359f15 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProcessParameterApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProcessParameterApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProcessParameterApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProcessResolutionProblemApi.java b/src/main/java/org/bonitasoft/web/client/api/ProcessResolutionProblemApi.java
index 13a713af..f885a8d6 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProcessResolutionProblemApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProcessResolutionProblemApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProcessResolutionProblemApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProcessSupervisorApi.java b/src/main/java/org/bonitasoft/web/client/api/ProcessSupervisorApi.java
index b2dbf3a3..a957573c 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProcessSupervisorApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProcessSupervisorApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProcessSupervisorApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProfessionalContactDataApi.java b/src/main/java/org/bonitasoft/web/client/api/ProfessionalContactDataApi.java
index 5edaa9c2..b2fb70b0 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProfessionalContactDataApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProfessionalContactDataApi.java
@@ -26,7 +26,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProfessionalContactDataApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProfileApi.java b/src/main/java/org/bonitasoft/web/client/api/ProfileApi.java
index 29a0e5af..5ae0e375 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProfileApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProfileApi.java
@@ -29,7 +29,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProfileApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProfileEntryApi.java b/src/main/java/org/bonitasoft/web/client/api/ProfileEntryApi.java
index 20ed05be..7476af9a 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProfileEntryApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProfileEntryApi.java
@@ -28,7 +28,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProfileEntryApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ProfileMemberApi.java b/src/main/java/org/bonitasoft/web/client/api/ProfileMemberApi.java
index 11fe997d..17c84620 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ProfileMemberApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ProfileMemberApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ProfileMemberApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/RoleApi.java b/src/main/java/org/bonitasoft/web/client/api/RoleApi.java
index 7f4a379a..68661b66 100644
--- a/src/main/java/org/bonitasoft/web/client/api/RoleApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/RoleApi.java
@@ -28,7 +28,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface RoleApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/SignalApi.java b/src/main/java/org/bonitasoft/web/client/api/SignalApi.java
index 6cf12be8..885fc6d2 100644
--- a/src/main/java/org/bonitasoft/web/client/api/SignalApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/SignalApi.java
@@ -22,7 +22,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface SignalApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/SystemTenantApi.java b/src/main/java/org/bonitasoft/web/client/api/SystemTenantApi.java
index 558f19b7..af69f7ea 100644
--- a/src/main/java/org/bonitasoft/web/client/api/SystemTenantApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/SystemTenantApi.java
@@ -23,7 +23,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface SystemTenantApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/TaskApi.java b/src/main/java/org/bonitasoft/web/client/api/TaskApi.java
index 5b57e5b5..974c3b1f 100644
--- a/src/main/java/org/bonitasoft/web/client/api/TaskApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/TaskApi.java
@@ -27,7 +27,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface TaskApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/TenantApi.java b/src/main/java/org/bonitasoft/web/client/api/TenantApi.java
index 252220dd..c746db9c 100644
--- a/src/main/java/org/bonitasoft/web/client/api/TenantApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/TenantApi.java
@@ -28,7 +28,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface TenantApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/ThemeApi.java b/src/main/java/org/bonitasoft/web/client/api/ThemeApi.java
index db4c6a87..a9e081a7 100644
--- a/src/main/java/org/bonitasoft/web/client/api/ThemeApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/ThemeApi.java
@@ -23,7 +23,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface ThemeApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/TimerEventTriggerApi.java b/src/main/java/org/bonitasoft/web/client/api/TimerEventTriggerApi.java
index 80ddc027..91f562b4 100644
--- a/src/main/java/org/bonitasoft/web/client/api/TimerEventTriggerApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/TimerEventTriggerApi.java
@@ -28,7 +28,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface TimerEventTriggerApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/UploadApi.java b/src/main/java/org/bonitasoft/web/client/api/UploadApi.java
index 2e59726d..b9d97377 100644
--- a/src/main/java/org/bonitasoft/web/client/api/UploadApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/UploadApi.java
@@ -23,7 +23,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface UploadApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/UserApi.java b/src/main/java/org/bonitasoft/web/client/api/UserApi.java
index df194acc..111a53a7 100644
--- a/src/main/java/org/bonitasoft/web/client/api/UserApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/UserApi.java
@@ -28,7 +28,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface UserApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/api/UserTaskApi.java b/src/main/java/org/bonitasoft/web/client/api/UserTaskApi.java
index 07e4e433..192007cd 100644
--- a/src/main/java/org/bonitasoft/web/client/api/UserTaskApi.java
+++ b/src/main/java/org/bonitasoft/web/client/api/UserTaskApi.java
@@ -29,7 +29,7 @@
import feign.*;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public interface UserTaskApi extends ApiClient.Api {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/invoker/ApiClient.java b/src/main/java/org/bonitasoft/web/client/invoker/ApiClient.java
index 28cd8948..07dcac22 100644
--- a/src/main/java/org/bonitasoft/web/client/invoker/ApiClient.java
+++ b/src/main/java/org/bonitasoft/web/client/invoker/ApiClient.java
@@ -39,7 +39,7 @@
import feign.okhttp.OkHttpClient;
import feign.slf4j.Slf4jLogger;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ApiClient {
private static final Logger log = Logger.getLogger(ApiClient.class.getName());
diff --git a/src/main/java/org/bonitasoft/web/client/invoker/RFC3339DateFormat.java b/src/main/java/org/bonitasoft/web/client/invoker/RFC3339DateFormat.java
index c671a8e7..b93f82e0 100644
--- a/src/main/java/org/bonitasoft/web/client/invoker/RFC3339DateFormat.java
+++ b/src/main/java/org/bonitasoft/web/client/invoker/RFC3339DateFormat.java
@@ -26,7 +26,7 @@
import com.fasterxml.jackson.databind.util.StdDateFormat;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class RFC3339DateFormat extends DateFormat {
private static final long serialVersionUID = 1L;
diff --git a/src/main/java/org/bonitasoft/web/client/invoker/StringUtil.java b/src/main/java/org/bonitasoft/web/client/invoker/StringUtil.java
index 662e1dca..856f63d4 100644
--- a/src/main/java/org/bonitasoft/web/client/invoker/StringUtil.java
+++ b/src/main/java/org/bonitasoft/web/client/invoker/StringUtil.java
@@ -19,7 +19,7 @@
import java.util.Collection;
import java.util.Iterator;
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class StringUtil {
/**
diff --git a/src/main/java/org/bonitasoft/web/client/model/AbstractArchivedTask.java b/src/main/java/org/bonitasoft/web/client/model/AbstractArchivedTask.java
index 9674b4f0..74e5298c 100644
--- a/src/main/java/org/bonitasoft/web/client/model/AbstractArchivedTask.java
+++ b/src/main/java/org/bonitasoft/web/client/model/AbstractArchivedTask.java
@@ -52,7 +52,7 @@
AbstractArchivedTask.JSON_PROPERTY_SOURCE_OBJECT_ID,
AbstractArchivedTask.JSON_PROPERTY_ARCHIVED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class AbstractArchivedTask implements Serializable {
private static final long serialVersionUID = 1L;
@@ -142,7 +142,7 @@ public AbstractArchivedTask id(String id) {
* the task id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -167,7 +167,7 @@ public AbstractArchivedTask type(String type) {
* the task type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -192,7 +192,7 @@ public AbstractArchivedTask name(String name) {
* the task technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -217,7 +217,7 @@ public AbstractArchivedTask displayName(String displayName) {
* the human readable task name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -242,7 +242,7 @@ public AbstractArchivedTask description(String description) {
* the task description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -267,7 +267,7 @@ public AbstractArchivedTask displayDescription(String displayDescription) {
* the human readable task description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -292,7 +292,7 @@ public AbstractArchivedTask state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -317,7 +317,7 @@ public AbstractArchivedTask reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task reached the current state for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -342,7 +342,7 @@ public AbstractArchivedTask lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task was last updated for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -367,7 +367,7 @@ public AbstractArchivedTask dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task is due for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -392,7 +392,7 @@ public AbstractArchivedTask priority(String priority) {
* the priority (string) of the current task
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -417,7 +417,7 @@ public AbstractArchivedTask processId(String processId) {
* the process definition id of the process instance which define this task
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -442,7 +442,7 @@ public AbstractArchivedTask parentCaseId(String parentCaseId) {
* the immediate containing process instance id (case id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -467,7 +467,7 @@ public AbstractArchivedTask parentTaskId(String parentTaskId) {
* the parent Task id
*
* @return parentTaskId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -493,7 +493,7 @@ public AbstractArchivedTask rootCaseId(String rootCaseId) {
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -518,7 +518,7 @@ public AbstractArchivedTask rootContainerId(String rootContainerId) {
* same as rootCaseId
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -543,7 +543,7 @@ public AbstractArchivedTask executedBy(String executedBy) {
* the id of the user who performed this task. The task has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -568,7 +568,7 @@ public AbstractArchivedTask executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the task when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -593,7 +593,7 @@ public AbstractArchivedTask actorId(String actorId) {
* the id of the actor that can execute this task null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -618,7 +618,7 @@ public AbstractArchivedTask assignedId(String assignedId) {
* the user id that this task is assigned to or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -643,7 +643,7 @@ public AbstractArchivedTask assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -668,7 +668,7 @@ public AbstractArchivedTask isTerminal(Boolean isTerminal) {
* True if the task is the last one in a flow
*
* @return isTerminal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -693,7 +693,7 @@ public AbstractArchivedTask sourceObjectId(String sourceObjectId) {
* the original id of the task before it was archived
*
* @return sourceObjectId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SOURCE_OBJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -718,7 +718,7 @@ public AbstractArchivedTask archivedDate(String archivedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/AbstractTask.java b/src/main/java/org/bonitasoft/web/client/model/AbstractTask.java
index 2c73bfbc..08f3364c 100644
--- a/src/main/java/org/bonitasoft/web/client/model/AbstractTask.java
+++ b/src/main/java/org/bonitasoft/web/client/model/AbstractTask.java
@@ -50,7 +50,7 @@
AbstractTask.JSON_PROPERTY_ASSIGNED_DATE,
AbstractTask.JSON_PROPERTY_IS_TERMINAL
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class AbstractTask implements Serializable {
private static final long serialVersionUID = 1L;
@@ -134,7 +134,7 @@ public AbstractTask id(String id) {
* the task id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -159,7 +159,7 @@ public AbstractTask type(String type) {
* the task type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -184,7 +184,7 @@ public AbstractTask name(String name) {
* the task technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -209,7 +209,7 @@ public AbstractTask displayName(String displayName) {
* the human readable task name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -234,7 +234,7 @@ public AbstractTask description(String description) {
* the task description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -259,7 +259,7 @@ public AbstractTask displayDescription(String displayDescription) {
* the human readable task description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -284,7 +284,7 @@ public AbstractTask state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -309,7 +309,7 @@ public AbstractTask reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task reached the current state for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -334,7 +334,7 @@ public AbstractTask lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task was last updated for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -359,7 +359,7 @@ public AbstractTask dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task is due for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -384,7 +384,7 @@ public AbstractTask priority(String priority) {
* the priority (string) of the current task
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -409,7 +409,7 @@ public AbstractTask processId(String processId) {
* the process definition id of the process instance which define this task
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -434,7 +434,7 @@ public AbstractTask parentCaseId(String parentCaseId) {
* the immediate containing process instance id (case id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -459,7 +459,7 @@ public AbstractTask parentTaskId(String parentTaskId) {
* the parent Task id
*
* @return parentTaskId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -485,7 +485,7 @@ public AbstractTask rootCaseId(String rootCaseId) {
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -510,7 +510,7 @@ public AbstractTask rootContainerId(String rootContainerId) {
* same as rootCaseId
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -535,7 +535,7 @@ public AbstractTask executedBy(String executedBy) {
* the id of the user who performed this task. The task has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -560,7 +560,7 @@ public AbstractTask executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the task when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -585,7 +585,7 @@ public AbstractTask actorId(String actorId) {
* the id of the actor that can execute this task null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -610,7 +610,7 @@ public AbstractTask assignedId(String assignedId) {
* the user id that this task is assigned to or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -635,7 +635,7 @@ public AbstractTask assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -660,7 +660,7 @@ public AbstractTask isTerminal(Boolean isTerminal) {
* True if the task is the last one in a flow
*
* @return isTerminal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Activity.java b/src/main/java/org/bonitasoft/web/client/model/Activity.java
index 6fbda41e..a631c5e4 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Activity.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Activity.java
@@ -49,7 +49,7 @@
Activity.JSON_PROPERTY_ASSIGNED_ID,
Activity.JSON_PROPERTY_ASSIGNED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Activity implements Serializable {
private static final long serialVersionUID = 1L;
@@ -127,7 +127,7 @@ public Activity id(String id) {
* the activity id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -152,7 +152,7 @@ public Activity type(ActivityType type) {
* Get type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -177,7 +177,7 @@ public Activity name(String name) {
* the activity technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -202,7 +202,7 @@ public Activity displayName(String displayName) {
* the human readable activity name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -227,7 +227,7 @@ public Activity description(String description) {
* the activity description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -252,7 +252,7 @@ public Activity displayDescription(String displayDescription) {
* the human readable activity description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -277,7 +277,7 @@ public Activity state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -302,7 +302,7 @@ public Activity reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this activity reached the current state, for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -327,7 +327,7 @@ public Activity lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this activity was last updated, for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -352,7 +352,7 @@ public Activity dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this activity is due, for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -377,7 +377,7 @@ public Activity priority(ActivityPriority priority) {
* Get priority
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -402,7 +402,7 @@ public Activity processId(String processId) {
* the process definition id of the process instance which define this activity
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -427,7 +427,7 @@ public Activity parentCaseId(String parentCaseId) {
* the immediate containing process instance id (long, a.k.a process instance id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -453,7 +453,7 @@ public Activity rootCaseId(String rootCaseId) {
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -478,7 +478,7 @@ public Activity rootContainerId(String rootContainerId) {
* same as rootCaseId
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -503,7 +503,7 @@ public Activity executedBy(String executedBy) {
* the id of the user who performed this activity. The activity has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -528,7 +528,7 @@ public Activity executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the activity when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -553,7 +553,7 @@ public Activity actorId(String actorId) {
* the id of the actor that can execute this activity, null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -578,7 +578,7 @@ public Activity assignedId(String assignedId) {
* the user id that this activity is assigned to, or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -603,7 +603,7 @@ public Activity assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current activity was assigned, for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ActivityUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ActivityUpdateRequest.java
index ddb66d6c..8a579b47 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ActivityUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ActivityUpdateRequest.java
@@ -30,7 +30,7 @@
ActivityUpdateRequest.JSON_PROPERTY_VARIABLES,
ActivityUpdateRequest.JSON_PROPERTY_STATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ActivityUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -56,7 +56,7 @@ public ActivityUpdateRequest variables(String variables) {
* variable, the value set by the REST API call is overwritten.
*
* @return variables
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VARIABLES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -82,7 +82,7 @@ public ActivityUpdateRequest state(String state) {
* have been reset ![edition](https://img.shields.io/badge/edition-entreprise-blue) - Replay activity: `replay`
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ActivityVariable.java b/src/main/java/org/bonitasoft/web/client/model/ActivityVariable.java
index a7cb7d23..0e67d773 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ActivityVariable.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ActivityVariable.java
@@ -43,7 +43,7 @@
ActivityVariable.JSON_PROPERTY_CONTAINER_TYPE,
ActivityVariable.JSON_PROPERTY_VALUE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ActivityVariable implements Serializable {
private static final long serialVersionUID = 1L;
@@ -133,7 +133,7 @@ public ActivityVariable tenantId(String tenantId) {
* The ID of the tenant where the current user is logged in (technical information)
*
* @return tenantId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TENANT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -158,7 +158,7 @@ public ActivityVariable tenantIdString(String tenantIdString) {
* number (since 7.0.1)
*
* @return tenantIdString
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TENANT_ID_STRING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -183,7 +183,7 @@ public ActivityVariable id(String id) {
* The identifier of the variable
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -208,7 +208,7 @@ public ActivityVariable idString(String idString) {
* number (since 7.0.1)
*
* @return idString
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID_STRING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -233,7 +233,7 @@ public ActivityVariable name(String name) {
* The name of the activity variable
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -258,7 +258,7 @@ public ActivityVariable description(String description) {
* The description of the variable if any
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -283,7 +283,7 @@ public ActivityVariable transientData(String transientData) {
* FALSE
*
* @return transientData
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TRANSIENT_DATA)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -308,7 +308,7 @@ public ActivityVariable className(String className) {
* The fully qualified class name of the variable type
*
* @return className
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CLASS_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -334,7 +334,7 @@ public ActivityVariable containerId(String containerId) {
* instance if the variable is defined on the process
*
* @return containerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -359,7 +359,7 @@ public ActivityVariable containerIdString(String containerIdString) {
* number (since 7.0.1)
*
* @return containerIdString
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTAINER_ID_STRING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -384,7 +384,7 @@ public ActivityVariable containerType(ContainerTypeEnum containerType) {
* ACTIVITY_INSTANCE | PROCESS_INSTANCE depending on whether the variable is defined at activity or process level.
*
* @return containerType
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTAINER_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -409,7 +409,7 @@ public ActivityVariable value(String value) {
* the value of this variable. The format of the value depends on the type of the variable
*
* @return value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Actor.java b/src/main/java/org/bonitasoft/web/client/model/Actor.java
index 507c2c81..5cc154eb 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Actor.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Actor.java
@@ -33,7 +33,7 @@
Actor.JSON_PROPERTY_NAME,
Actor.JSON_PROPERTY_DISPLAY_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Actor implements Serializable {
private static final long serialVersionUID = 1L;
@@ -66,7 +66,7 @@ public Actor id(Long id) {
* actor id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -91,7 +91,7 @@ public Actor processId(Long processId) {
* process definition id
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -116,7 +116,7 @@ public Actor description(String description) {
* a description of the actor
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -141,7 +141,7 @@ public Actor name(String name) {
* name of the actor (as specified on human tasks and for the initiator of the process)
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -166,7 +166,7 @@ public Actor displayName(String displayName) {
* the display name of the actor
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ActorDefinition.java b/src/main/java/org/bonitasoft/web/client/model/ActorDefinition.java
index 6d0ee195..068a3589 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ActorDefinition.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ActorDefinition.java
@@ -31,7 +31,7 @@
ActorDefinition.JSON_PROPERTY_DESCRIPTION,
ActorDefinition.JSON_PROPERTY_INITIATOR
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ActorDefinition implements Serializable {
private static final long serialVersionUID = 1L;
@@ -58,7 +58,7 @@ public ActorDefinition name(String name) {
* the actor name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -83,7 +83,7 @@ public ActorDefinition description(String description) {
* the actor description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -108,7 +108,7 @@ public ActorDefinition initiator(Boolean initiator) {
* true, if this actor can start the process
*
* @return initiator
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INITIATOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ActorMember.java b/src/main/java/org/bonitasoft/web/client/model/ActorMember.java
index 0d68de7f..5dcd845a 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ActorMember.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ActorMember.java
@@ -34,7 +34,7 @@
ActorMember.JSON_PROPERTY_GROUP_ID,
ActorMember.JSON_PROPERTY_USER_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ActorMember implements Serializable {
private static final long serialVersionUID = 1L;
@@ -67,7 +67,7 @@ public ActorMember id(String id) {
* actor member id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -92,7 +92,7 @@ public ActorMember actorId(String actorId) {
* id of the actor for this mapping
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -117,7 +117,7 @@ public ActorMember roleId(String roleId) {
* id of role, or -1 if the member type is not role
*
* @return roleId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROLE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -142,7 +142,7 @@ public ActorMember groupId(String groupId) {
* id of group, or -1 if the member type is not group
*
* @return groupId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_GROUP_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -167,7 +167,7 @@ public ActorMember userId(String userId) {
* id of user, or -1 if the member type is not user
*
* @return userId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ActorUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ActorUpdateRequest.java
index 110ec413..2e8a5604 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ActorUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ActorUpdateRequest.java
@@ -30,7 +30,7 @@
ActorUpdateRequest.JSON_PROPERTY_DISPLAY_NAME,
ActorUpdateRequest.JSON_PROPERTY_DESCRIPTION
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ActorUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public ActorUpdateRequest displayName(String displayName) {
* display name of the Actor
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public ActorUpdateRequest description(String description) {
* description of the Actor
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ApplicationLink.java b/src/main/java/org/bonitasoft/web/client/model/ApplicationLink.java
index 069c8489..36ebd614 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ApplicationLink.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ApplicationLink.java
@@ -44,7 +44,7 @@
ApplicationLink.JSON_PROPERTY_EDITABLE,
ApplicationLink.JSON_PROPERTY_LINK
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ApplicationLink implements Serializable, Application {
private static final long serialVersionUID = 1L;
@@ -179,7 +179,7 @@ public ApplicationLink createdBy(String createdBy) {
* Author user ID
*
* @return createdBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -204,7 +204,7 @@ public ApplicationLink creationDate(String creationDate) {
* creation date of the application
*
* @return creationDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -229,7 +229,7 @@ public ApplicationLink description(String description) {
* description of the application
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -254,7 +254,7 @@ public ApplicationLink displayName(String displayName) {
* display name of the application
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -279,7 +279,7 @@ public ApplicationLink id(String id) {
* id of the application
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -304,7 +304,7 @@ public ApplicationLink lastUpdateDate(String lastUpdateDate) {
* last update date of the application
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -329,7 +329,7 @@ public ApplicationLink profileId(String profileId) {
* profile authorized to access this application
*
* @return profileId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROFILE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -354,7 +354,7 @@ public ApplicationLink token(String token) {
* token of the application used to build the application URL
*
* @return token
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TOKEN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -379,7 +379,7 @@ public ApplicationLink updatedBy(String updatedBy) {
* Last updating user ID
*
* @return updatedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_UPDATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -404,7 +404,7 @@ public ApplicationLink version(String version) {
* version of the application
*
* @return version
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -429,7 +429,7 @@ public ApplicationLink state(StateEnum state) {
* application state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -455,7 +455,7 @@ public ApplicationLink visibility(VisibilityEnum visibility) {
* application.
*
* @return visibility
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VISIBILITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -480,7 +480,7 @@ public ApplicationLink editable(Boolean editable) {
* Indicates whether the application can be modified
*
* @return editable
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EDITABLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -505,7 +505,7 @@ public ApplicationLink link(Boolean link) {
* true for an application link
*
* @return link
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LINK)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ApplicationMenu.java b/src/main/java/org/bonitasoft/web/client/model/ApplicationMenu.java
index 083bb3fe..9b737194 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ApplicationMenu.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ApplicationMenu.java
@@ -34,7 +34,7 @@
ApplicationMenu.JSON_PROPERTY_MENU_INDEX,
ApplicationMenu.JSON_PROPERTY_DISPLAY_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ApplicationMenu implements Serializable {
private static final long serialVersionUID = 1L;
@@ -70,7 +70,7 @@ public ApplicationMenu id(String id) {
* id of the application menu item
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -95,7 +95,7 @@ public ApplicationMenu parentMenuId(String parentMenuId) {
* id of the parent menu of this menu item, or -1 for a top-level item
*
* @return parentMenuId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_MENU_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -120,7 +120,7 @@ public ApplicationMenu applicationPageId(String applicationPageId) {
* id of the application page targeted by this menu item, or -1 if there is no targeted page (that is, the item is a parent menu)
*
* @return applicationPageId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_APPLICATION_PAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -145,7 +145,7 @@ public ApplicationMenu applicationId(String applicationId) {
* id of the application related to this menu item
*
* @return applicationId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_APPLICATION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -170,7 +170,7 @@ public ApplicationMenu menuIndex(String menuIndex) {
* index of the menu item
*
* @return menuIndex
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MENU_INDEX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -195,7 +195,7 @@ public ApplicationMenu displayName(String displayName) {
* label to display for this menu in the application navigation bar or menu
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ApplicationMenuCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ApplicationMenuCreateRequest.java
index 07dc50ad..599fb8c5 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ApplicationMenuCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ApplicationMenuCreateRequest.java
@@ -32,7 +32,7 @@
ApplicationMenuCreateRequest.JSON_PROPERTY_MENU_INDEX,
ApplicationMenuCreateRequest.JSON_PROPERTY_PARENT_MENU_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ApplicationMenuCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -62,7 +62,7 @@ public ApplicationMenuCreateRequest displayName(String displayName) {
* display name of the application menu
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -87,7 +87,7 @@ public ApplicationMenuCreateRequest applicationPageId(String applicationPageId)
* the application menu page ID
*
* @return applicationPageId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_APPLICATION_PAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -112,7 +112,7 @@ public ApplicationMenuCreateRequest menuIndex(String menuIndex) {
* the application menu index
*
* @return menuIndex
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MENU_INDEX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -137,7 +137,7 @@ public ApplicationMenuCreateRequest parentMenuId(String parentMenuId) {
* the application parent menu ID
*
* @return parentMenuId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_MENU_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ApplicationMenuUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ApplicationMenuUpdateRequest.java
index 2bb85951..c26dbb20 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ApplicationMenuUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ApplicationMenuUpdateRequest.java
@@ -33,7 +33,7 @@
ApplicationMenuUpdateRequest.JSON_PROPERTY_MENU_INDEX,
ApplicationMenuUpdateRequest.JSON_PROPERTY_DISPLAY_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ApplicationMenuUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -66,7 +66,7 @@ public ApplicationMenuUpdateRequest parentMenuId(String parentMenuId) {
* id of the parent menu of this menu item, or -1 for a top-level item
*
* @return parentMenuId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_MENU_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -91,7 +91,7 @@ public ApplicationMenuUpdateRequest applicationPageId(String applicationPageId)
* id of the application page targeted by this menu item, or -1 if there is no targeted page (that is, the item is a parent menu)
*
* @return applicationPageId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_APPLICATION_PAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -116,7 +116,7 @@ public ApplicationMenuUpdateRequest applicationId(String applicationId) {
* id of the application related to this menu item
*
* @return applicationId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_APPLICATION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -141,7 +141,7 @@ public ApplicationMenuUpdateRequest menuIndex(String menuIndex) {
* index of the menu item
*
* @return menuIndex
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MENU_INDEX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -166,7 +166,7 @@ public ApplicationMenuUpdateRequest displayName(String displayName) {
* label to display for this menu in the application navigation bar or menu
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ApplicationPage.java b/src/main/java/org/bonitasoft/web/client/model/ApplicationPage.java
index 1b9c9639..f74f7c90 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ApplicationPage.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ApplicationPage.java
@@ -32,7 +32,7 @@
ApplicationPage.JSON_PROPERTY_APPLICATION_ID,
ApplicationPage.JSON_PROPERTY_PAGE_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ApplicationPage implements Serializable {
private static final long serialVersionUID = 1L;
@@ -62,7 +62,7 @@ public ApplicationPage id(String id) {
* id of the application page item
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -87,7 +87,7 @@ public ApplicationPage token(String token) {
* token use to access the page using a URL : ../appName/pageToken/
*
* @return token
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TOKEN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -112,7 +112,7 @@ public ApplicationPage applicationId(String applicationId) {
* id of the application related to this page
*
* @return applicationId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_APPLICATION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -137,7 +137,7 @@ public ApplicationPage pageId(String pageId) {
* id of the custom page to display
*
* @return pageId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ApplicationPageCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ApplicationPageCreateRequest.java
index 9c18653c..38231094 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ApplicationPageCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ApplicationPageCreateRequest.java
@@ -31,7 +31,7 @@
ApplicationPageCreateRequest.JSON_PROPERTY_APPLICATION_ID,
ApplicationPageCreateRequest.JSON_PROPERTY_PAGE_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ApplicationPageCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -58,7 +58,7 @@ public ApplicationPageCreateRequest token(String token) {
* token use to access the page using a URL : ../appName/pageToken/
*
* @return token
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TOKEN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -83,7 +83,7 @@ public ApplicationPageCreateRequest applicationId(String applicationId) {
* id of the application related to this page
*
* @return applicationId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_APPLICATION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -108,7 +108,7 @@ public ApplicationPageCreateRequest pageId(String pageId) {
* id of the custom page to display
*
* @return pageId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ApplicationUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ApplicationUpdateRequest.java
index 896a42c2..ba7736d2 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ApplicationUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ApplicationUpdateRequest.java
@@ -35,7 +35,7 @@
ApplicationUpdateRequest.JSON_PROPERTY_THEME_ID,
ApplicationUpdateRequest.JSON_PROPERTY_LAYOUT_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ApplicationUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -74,7 +74,7 @@ public ApplicationUpdateRequest description(String description) {
* description of the application
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -99,7 +99,7 @@ public ApplicationUpdateRequest displayName(String displayName) {
* display name of the application
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -124,7 +124,7 @@ public ApplicationUpdateRequest profileId(String profileId) {
* profile authorized to access this application
*
* @return profileId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROFILE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -149,7 +149,7 @@ public ApplicationUpdateRequest token(String token) {
* token of the application used to build the application URL
*
* @return token
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TOKEN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -174,7 +174,7 @@ public ApplicationUpdateRequest version(String version) {
* version of the application
*
* @return version
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -199,7 +199,7 @@ public ApplicationUpdateRequest themeId(String themeId) {
* ![edition](https://img.shields.io/badge/edition-entreprise-blue) theme id for the application
*
* @return themeId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_THEME_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -224,7 +224,7 @@ public ApplicationUpdateRequest layoutId(String layoutId) {
* ![edition](https://img.shields.io/badge/edition-entreprise-blue) layout id for the application
*
* @return layoutId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAYOUT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedActivity.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedActivity.java
index c8b333ea..52ad4710 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedActivity.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedActivity.java
@@ -50,7 +50,7 @@
ArchivedActivity.JSON_PROPERTY_SOURCE_OBJECT_ID,
ArchivedActivity.JSON_PROPERTY_ARCHIVED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedActivity implements Serializable {
private static final long serialVersionUID = 1L;
@@ -134,7 +134,7 @@ public ArchivedActivity id(String id) {
* the archived activity id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -159,7 +159,7 @@ public ArchivedActivity type(ActivityType type) {
* Get type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -184,7 +184,7 @@ public ArchivedActivity name(String name) {
* the archived activity technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -209,7 +209,7 @@ public ArchivedActivity displayName(String displayName) {
* the human readable archived activity name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -234,7 +234,7 @@ public ArchivedActivity description(String description) {
* the archived activity description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -259,7 +259,7 @@ public ArchivedActivity displayDescription(String displayDescription) {
* the human readable archived activity description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -284,7 +284,7 @@ public ArchivedActivity state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -309,7 +309,7 @@ public ArchivedActivity reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this archived activity reached the current state, for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -334,7 +334,7 @@ public ArchivedActivity lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this archived activity was last updated, for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -359,7 +359,7 @@ public ArchivedActivity dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this archived activity is due, for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -384,7 +384,7 @@ public ArchivedActivity priority(ActivityPriority priority) {
* Get priority
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -409,7 +409,7 @@ public ArchivedActivity processId(String processId) {
* the process definition id of the process instance which define this archived activity
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -434,7 +434,7 @@ public ArchivedActivity parentCaseId(String parentCaseId) {
* the immediate containing process instance id (a.k.a case id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -460,7 +460,7 @@ public ArchivedActivity rootCaseId(String rootCaseId) {
* called while `rootCaseId` will be the one from the caller case
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -485,7 +485,7 @@ public ArchivedActivity rootContainerId(String rootContainerId) {
* same as `rootCaseId`
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -510,7 +510,7 @@ public ArchivedActivity executedBy(String executedBy) {
* the id of the user who performed this archived activity. The archived activity has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -535,7 +535,7 @@ public ArchivedActivity executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the archived activity when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -560,7 +560,7 @@ public ArchivedActivity actorId(String actorId) {
* the id of the actor that can execute this archived activity, null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -585,7 +585,7 @@ public ArchivedActivity assignedId(String assignedId) {
* the user id that this archived activity is assigned to, or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -610,7 +610,7 @@ public ArchivedActivity assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current archived activity was assigned, for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -635,7 +635,7 @@ public ArchivedActivity sourceObjectId(String sourceObjectId) {
* the original id of the archived activity before it was archived
*
* @return sourceObjectId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SOURCE_OBJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -660,7 +660,7 @@ public ArchivedActivity archivedDate(String archivedDate) {
* the date (('yyyy-MM-dd HH:mm:ss.SSS')) when this archived activity was archived, for example '2014-10-17 16:05:42.626'
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedActivityVariable.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedActivityVariable.java
index 689e0790..4d3159ad 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedActivityVariable.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedActivityVariable.java
@@ -37,7 +37,7 @@
ArchivedActivityVariable.JSON_PROPERTY_ARCHIVED_DATE,
ArchivedActivityVariable.JSON_PROPERTY_SOURCED_OBJECT_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedActivityVariable implements Serializable {
private static final long serialVersionUID = 1L;
@@ -79,7 +79,7 @@ public ArchivedActivityVariable name(String name) {
* The name of the archived activity variable
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -104,7 +104,7 @@ public ArchivedActivityVariable description(String description) {
* The description of the variable if any
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -129,7 +129,7 @@ public ArchivedActivityVariable type(String type) {
* The fully qualified class name of the variable type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -154,7 +154,7 @@ public ArchivedActivityVariable containerId(String containerId) {
* The ID of the activity containing this variable (same as the one passed as parameter)
*
* @return containerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -179,7 +179,7 @@ public ArchivedActivityVariable containerType(String containerType) {
* ACTIVITY_INSTANCE
*
* @return containerType
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTAINER_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -204,7 +204,7 @@ public ArchivedActivityVariable value(String value) {
* the value of this variable. The format of the value depends on the type of the variable
*
* @return value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -229,7 +229,7 @@ public ArchivedActivityVariable archivedDate(String archivedDate) {
* The date when this variable was archived. The date format is yyyy-MM-dd HH:mm:ss.SSS
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -254,7 +254,7 @@ public ArchivedActivityVariable sourcedObjectId(String sourcedObjectId) {
* The id of the activity variable before it was archived
*
* @return sourcedObjectId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SOURCED_OBJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedConnectorInstance.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedConnectorInstance.java
index ad9faa5d..7b9449c7 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedConnectorInstance.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedConnectorInstance.java
@@ -39,7 +39,7 @@
ArchivedConnectorInstance.JSON_PROPERTY_VERSION,
ArchivedConnectorInstance.JSON_PROPERTY_ARCHIVED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedConnectorInstance implements Serializable {
private static final long serialVersionUID = 1L;
@@ -164,7 +164,7 @@ public ArchivedConnectorInstance containerType(String containerType) {
* the type of the containing activity
*
* @return containerType
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTAINER_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -189,7 +189,7 @@ public ArchivedConnectorInstance connectorId(String connectorId) {
* the connector id
*
* @return connectorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONNECTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -214,7 +214,7 @@ public ArchivedConnectorInstance id(Long id) {
* the connector instance id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -239,7 +239,7 @@ public ArchivedConnectorInstance name(String name) {
* the connector name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -264,7 +264,7 @@ public ArchivedConnectorInstance activationEvent(ActivationEventEnum activationE
* the name of the event that activated the connector instance
*
* @return activationEvent
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTIVATION_EVENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -289,7 +289,7 @@ public ArchivedConnectorInstance state(StateEnum state) {
* the connector state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -314,7 +314,7 @@ public ArchivedConnectorInstance containerId(String containerId) {
* the containing activity instance id
*
* @return containerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -339,7 +339,7 @@ public ArchivedConnectorInstance version(String version) {
* the connector version
*
* @return version
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -364,7 +364,7 @@ public ArchivedConnectorInstance archivedDate(String archivedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedFlowNode.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedFlowNode.java
index 94934ef3..4a8d0f33 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedFlowNode.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedFlowNode.java
@@ -52,7 +52,7 @@
ArchivedFlowNode.JSON_PROPERTY_SOURCE_OBJECT_ID,
ArchivedFlowNode.JSON_PROPERTY_ARCHIVED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedFlowNode implements Serializable {
private static final long serialVersionUID = 1L;
@@ -142,7 +142,7 @@ public ArchivedFlowNode id(String id) {
* the flow node id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -167,7 +167,7 @@ public ArchivedFlowNode displayDescription(String displayDescription) {
* the human readable flow node description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -192,7 +192,7 @@ public ArchivedFlowNode executedBySubstitute(String executedBySubstitute) {
* the id of the user who really performed this flow node when a substitute did it, or 0 if the flow node was not performed by a substitute
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -217,7 +217,7 @@ public ArchivedFlowNode caseId(String caseId) {
* the process instance id that is associated with this flow node
*
* @return caseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -242,7 +242,7 @@ public ArchivedFlowNode parentCaseId(String parentCaseId) {
* the parent process instance id that is associated with this flow node's case
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -267,7 +267,7 @@ public ArchivedFlowNode rootCaseId(String rootCaseId) {
* the root process instance initiator id that is associated with this flow node's case
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -292,7 +292,7 @@ public ArchivedFlowNode processId(String processId) {
* the process id that is associated with this flow node
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -317,7 +317,7 @@ public ArchivedFlowNode rootContainerId(String rootContainerId) {
* the root process id of the root process instance that is associated with this flow node
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -342,7 +342,7 @@ public ArchivedFlowNode state(String state) {
* the current state of the flow node (ready, completed, failed)
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -367,7 +367,7 @@ public ArchivedFlowNode type(String type) {
* the flow node type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -392,7 +392,7 @@ public ArchivedFlowNode assignedId(String assignedId) {
* the user id that this flow node is assigned to, or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -417,7 +417,7 @@ public ArchivedFlowNode assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current flow node was assigned, for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -442,7 +442,7 @@ public ArchivedFlowNode executedBy(String executedBy) {
* the id of the user who executed the flow node, or 0 if the flow node has not been executed
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -467,7 +467,7 @@ public ArchivedFlowNode priority(String priority) {
* the priority of the current flow node
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -492,7 +492,7 @@ public ArchivedFlowNode actorId(String actorId) {
* the id of the actor that can execute this flow node, null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -517,7 +517,7 @@ public ArchivedFlowNode description(String description) {
* the flow node description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -542,7 +542,7 @@ public ArchivedFlowNode name(String name) {
* the flow node name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -567,7 +567,7 @@ public ArchivedFlowNode reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this flow node reached the current state, for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -592,7 +592,7 @@ public ArchivedFlowNode displayName(String displayName) {
* the display name of this flow node
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -617,7 +617,7 @@ public ArchivedFlowNode dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this flow node is due, for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -642,7 +642,7 @@ public ArchivedFlowNode lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this flow node was last updated, for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -667,7 +667,7 @@ public ArchivedFlowNode parentTaskIdDoubleQuote(String parentTaskIdDoubleQuote)
* in case of a subtask, the parent task id
*
* @return parentTaskIdDoubleQuote
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID_DOUBLE_QUOTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -692,7 +692,7 @@ public ArchivedFlowNode sourceObjectId(String sourceObjectId) {
* the original id of the flowNode before it was archived
*
* @return sourceObjectId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SOURCE_OBJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -717,7 +717,7 @@ public ArchivedFlowNode archivedDate(String archivedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedHumanTask.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedHumanTask.java
index 53198570..341c5991 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedHumanTask.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedHumanTask.java
@@ -52,7 +52,7 @@
ArchivedHumanTask.JSON_PROPERTY_SOURCE_OBJECT_ID,
ArchivedHumanTask.JSON_PROPERTY_ARCHIVED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedHumanTask implements Serializable {
private static final long serialVersionUID = 1L;
@@ -142,7 +142,7 @@ public ArchivedHumanTask id(String id) {
* the task id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -167,7 +167,7 @@ public ArchivedHumanTask type(String type) {
* the task type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -192,7 +192,7 @@ public ArchivedHumanTask name(String name) {
* the task technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -217,7 +217,7 @@ public ArchivedHumanTask displayName(String displayName) {
* the human readable task name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -242,7 +242,7 @@ public ArchivedHumanTask description(String description) {
* the task description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -267,7 +267,7 @@ public ArchivedHumanTask displayDescription(String displayDescription) {
* the human readable task description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -292,7 +292,7 @@ public ArchivedHumanTask state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -317,7 +317,7 @@ public ArchivedHumanTask reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task reached the current state for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -342,7 +342,7 @@ public ArchivedHumanTask lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task was last updated for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -367,7 +367,7 @@ public ArchivedHumanTask dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task is due for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -392,7 +392,7 @@ public ArchivedHumanTask priority(String priority) {
* the priority (string) of the current task
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -417,7 +417,7 @@ public ArchivedHumanTask processId(String processId) {
* the process definition id of the process instance which define this task
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -442,7 +442,7 @@ public ArchivedHumanTask parentCaseId(String parentCaseId) {
* the immediate containing process instance id (case id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -467,7 +467,7 @@ public ArchivedHumanTask parentTaskId(String parentTaskId) {
* the parent Task id
*
* @return parentTaskId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -493,7 +493,7 @@ public ArchivedHumanTask rootCaseId(String rootCaseId) {
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -518,7 +518,7 @@ public ArchivedHumanTask rootContainerId(String rootContainerId) {
* same as rootCaseId
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -543,7 +543,7 @@ public ArchivedHumanTask executedBy(String executedBy) {
* the id of the user who performed this task. The task has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -568,7 +568,7 @@ public ArchivedHumanTask executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the task when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -593,7 +593,7 @@ public ArchivedHumanTask actorId(String actorId) {
* the id of the actor that can execute this task null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -618,7 +618,7 @@ public ArchivedHumanTask assignedId(String assignedId) {
* the user id that this task is assigned to or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -643,7 +643,7 @@ public ArchivedHumanTask assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -668,7 +668,7 @@ public ArchivedHumanTask isTerminal(Boolean isTerminal) {
* True if the task is the last one in a flow
*
* @return isTerminal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -693,7 +693,7 @@ public ArchivedHumanTask sourceObjectId(String sourceObjectId) {
* the original id of the task before it was archived
*
* @return sourceObjectId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SOURCE_OBJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -718,7 +718,7 @@ public ArchivedHumanTask archivedDate(String archivedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedManualTask.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedManualTask.java
index a346e056..b32c7a3e 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedManualTask.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedManualTask.java
@@ -52,7 +52,7 @@
ArchivedManualTask.JSON_PROPERTY_SOURCE_OBJECT_ID,
ArchivedManualTask.JSON_PROPERTY_ARCHIVED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedManualTask implements Serializable {
private static final long serialVersionUID = 1L;
@@ -142,7 +142,7 @@ public ArchivedManualTask id(String id) {
* the task id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -167,7 +167,7 @@ public ArchivedManualTask type(String type) {
* the task type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -192,7 +192,7 @@ public ArchivedManualTask name(String name) {
* the task technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -217,7 +217,7 @@ public ArchivedManualTask displayName(String displayName) {
* the human readable task name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -242,7 +242,7 @@ public ArchivedManualTask description(String description) {
* the task description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -267,7 +267,7 @@ public ArchivedManualTask displayDescription(String displayDescription) {
* the human readable task description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -292,7 +292,7 @@ public ArchivedManualTask state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -317,7 +317,7 @@ public ArchivedManualTask reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task reached the current state for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -342,7 +342,7 @@ public ArchivedManualTask lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task was last updated for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -367,7 +367,7 @@ public ArchivedManualTask dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task is due for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -392,7 +392,7 @@ public ArchivedManualTask priority(String priority) {
* the priority (string) of the current task
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -417,7 +417,7 @@ public ArchivedManualTask processId(String processId) {
* the process definition id of the process instance which define this task
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -442,7 +442,7 @@ public ArchivedManualTask parentCaseId(String parentCaseId) {
* the immediate containing process instance id (case id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -467,7 +467,7 @@ public ArchivedManualTask parentTaskId(String parentTaskId) {
* the parent Task id
*
* @return parentTaskId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -493,7 +493,7 @@ public ArchivedManualTask rootCaseId(String rootCaseId) {
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -518,7 +518,7 @@ public ArchivedManualTask rootContainerId(String rootContainerId) {
* same as rootCaseId
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -543,7 +543,7 @@ public ArchivedManualTask executedBy(String executedBy) {
* the id of the user who performed this task. The task has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -568,7 +568,7 @@ public ArchivedManualTask executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the task when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -593,7 +593,7 @@ public ArchivedManualTask actorId(String actorId) {
* the id of the actor that can execute this task null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -618,7 +618,7 @@ public ArchivedManualTask assignedId(String assignedId) {
* the user id that this task is assigned to or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -643,7 +643,7 @@ public ArchivedManualTask assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -668,7 +668,7 @@ public ArchivedManualTask isTerminal(Boolean isTerminal) {
* True if the task is the last one in a flow
*
* @return isTerminal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -693,7 +693,7 @@ public ArchivedManualTask sourceObjectId(String sourceObjectId) {
* the original id of the task before it was archived
*
* @return sourceObjectId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SOURCE_OBJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -718,7 +718,7 @@ public ArchivedManualTask archivedDate(String archivedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstance.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstance.java
index f2575c00..b37dfa4f 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstance.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstance.java
@@ -53,7 +53,7 @@
ArchivedProcessInstance.JSON_PROPERTY_SOURCE_OBJECT_ID,
ArchivedProcessInstance.JSON_PROPERTY_ARCHIVED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedProcessInstance implements Serializable {
private static final long serialVersionUID = 1L;
@@ -190,7 +190,7 @@ public ArchivedProcessInstance id(String id) {
* the identifier of the ProcessInstance (Case)
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -215,7 +215,7 @@ public ArchivedProcessInstance endDate(String endDate) {
* the date set when the process instance is closed
*
* @return endDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_END_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -240,7 +240,7 @@ public ArchivedProcessInstance failedFlowNodes(String failedFlowNodes) {
* count of failed flow nodes if parameter n=failedFlowNodes is given
*
* @return failedFlowNodes
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FAILED_FLOW_NODES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -266,7 +266,7 @@ public ArchivedProcessInstance startedBySubstitute(String startedBySubstitute) {
* d=startedBySubstitute is given.
*
* @return startedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STARTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -291,7 +291,7 @@ public ArchivedProcessInstance start(String start) {
* the starting date of the case
*
* @return start
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_START)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -316,7 +316,7 @@ public ArchivedProcessInstance activeFlowNodes(String activeFlowNodes) {
* count of active flow nodes if parameter n=activeFlowNodes is given
*
* @return activeFlowNodes
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTIVE_FLOW_NODES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -341,7 +341,7 @@ public ArchivedProcessInstance state(StateEnum state) {
* state: an enum that represent the state of the process instances
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -366,7 +366,7 @@ public ArchivedProcessInstance rootCaseId(String rootCaseId) {
* the identifier of the container of the case
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -391,7 +391,7 @@ public ArchivedProcessInstance startedBy(String startedBy) {
* the identifier of the user who started the case
*
* @return startedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STARTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -416,7 +416,7 @@ public ArchivedProcessInstance processDefinitionId(String processDefinitionId) {
* the identifier of the process related of the case
*
* @return processDefinitionId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_DEFINITION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -441,7 +441,7 @@ public ArchivedProcessInstance lastUpdateDate(String lastUpdateDate) {
* the date of the last update done on the case
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -466,7 +466,7 @@ public ArchivedProcessInstance searchIndex1Label(String searchIndex1Label) {
* the 1st search index label (from 6.5, in Subscription editions only)
*
* @return searchIndex1Label
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX1_LABEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -491,7 +491,7 @@ public ArchivedProcessInstance searchIndex2Label(String searchIndex2Label) {
* the 2nd search index label (from 6.5, in Subscription editions only)
*
* @return searchIndex2Label
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX2_LABEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -516,7 +516,7 @@ public ArchivedProcessInstance searchIndex3Label(String searchIndex3Label) {
* the 3rd search index label (from 6.5, in Subscription editions only)
*
* @return searchIndex3Label
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX3_LABEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -541,7 +541,7 @@ public ArchivedProcessInstance searchIndex4Label(String searchIndex4Label) {
* the 4th search index label (from 6.5, in Subscription editions only)
*
* @return searchIndex4Label
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX4_LABEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -566,7 +566,7 @@ public ArchivedProcessInstance searchIndex5Label(String searchIndex5Label) {
* the 5th search index label (from 6.5, in Subscription editions only)
*
* @return searchIndex5Label
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX5_LABEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -591,7 +591,7 @@ public ArchivedProcessInstance searchIndex1Value(String searchIndex1Value) {
* the 1st search index value (from 6.5, in Subscription editions only)
*
* @return searchIndex1Value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX1_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -616,7 +616,7 @@ public ArchivedProcessInstance searchIndex2Value(String searchIndex2Value) {
* the 2nd search index value (from 6.5, in Subscription editions only)
*
* @return searchIndex2Value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX2_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -641,7 +641,7 @@ public ArchivedProcessInstance searchIndex3Value(String searchIndex3Value) {
* the 3rd search index value (from 6.5, in Subscription editions only)
*
* @return searchIndex3Value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX3_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -666,7 +666,7 @@ public ArchivedProcessInstance searchIndex4Value(String searchIndex4Value) {
* the 4th search index value (from 6.5, in Subscription editions only)
*
* @return searchIndex4Value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX4_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -691,7 +691,7 @@ public ArchivedProcessInstance searchIndex5Value(String searchIndex5Value) {
* the 5th search index value (from 6.5, in Subscription editions only)
*
* @return searchIndex5Value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX5_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -716,7 +716,7 @@ public ArchivedProcessInstance sourceObjectId(String sourceObjectId) {
* the id of the process instance before it was archived
*
* @return sourceObjectId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SOURCE_OBJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -741,7 +741,7 @@ public ArchivedProcessInstance archivedDate(String archivedDate) {
* the date set when the process instance was archived
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceComment.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceComment.java
index c552a439..93aaaff6 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceComment.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceComment.java
@@ -35,7 +35,7 @@
ArchivedProcessInstanceComment.JSON_PROPERTY_USER_ID,
ArchivedProcessInstanceComment.JSON_PROPERTY_ARCHIVED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedProcessInstanceComment implements Serializable {
private static final long serialVersionUID = 1L;
@@ -74,7 +74,7 @@ public ArchivedProcessInstanceComment id(String id) {
* the comment id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -99,7 +99,7 @@ public ArchivedProcessInstanceComment content(String content) {
* the comment content
*
* @return content
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -124,7 +124,7 @@ public ArchivedProcessInstanceComment tenantId(String tenantId) {
* the id of the tenant the comment is associated to
*
* @return tenantId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TENANT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -149,7 +149,7 @@ public ArchivedProcessInstanceComment processInstanceId(String processInstanceId
* the process instance (case) the comment is associated to
*
* @return processInstanceId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_INSTANCE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -174,7 +174,7 @@ public ArchivedProcessInstanceComment postDate(String postDate) {
* the comment creation date
*
* @return postDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_POST_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -199,7 +199,7 @@ public ArchivedProcessInstanceComment userId(String userId) {
* the user that created the comment
*
* @return userId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -224,7 +224,7 @@ public ArchivedProcessInstanceComment archivedDate(String archivedDate) {
* the date set when the process instance comment was archived
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceDocument.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceDocument.java
index 4149cbe2..da1d8258 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceDocument.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceDocument.java
@@ -44,7 +44,7 @@
ArchivedProcessInstanceDocument.JSON_PROPERTY_SOURCE_OBJECT_ID,
ArchivedProcessInstanceDocument.JSON_PROPERTY_ARCHIVED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedProcessInstanceDocument implements Serializable {
private static final long serialVersionUID = 1L;
@@ -110,7 +110,7 @@ public ArchivedProcessInstanceDocument id(String id) {
* documentId
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -135,7 +135,7 @@ public ArchivedProcessInstanceDocument creationDate(String creationDate) {
* date and time
*
* @return creationDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -161,7 +161,7 @@ public ArchivedProcessInstanceDocument author(String author) {
*
* @return author
* @deprecated
- **/
+ */
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_AUTHOR)
@@ -187,7 +187,7 @@ public ArchivedProcessInstanceDocument index(String index) {
* index in a list of documents, or -1 for a single document
*
* @return index
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INDEX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -212,7 +212,7 @@ public ArchivedProcessInstanceDocument contentMimetype(String contentMimetype) {
* MIME type
*
* @return contentMimetype
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTENT_MIMETYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -237,7 +237,7 @@ public ArchivedProcessInstanceDocument caseId(String caseId) {
* caseId
*
* @return caseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -262,7 +262,7 @@ public ArchivedProcessInstanceDocument contentStorageId(String contentStorageId)
* storageId
*
* @return contentStorageId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTENT_STORAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -288,7 +288,7 @@ public ArchivedProcessInstanceDocument isInternal(Boolean isInternal) {
* contains a reference to the content, not the content itself.
*
* @return isInternal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_INTERNAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -313,7 +313,7 @@ public ArchivedProcessInstanceDocument description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -338,7 +338,7 @@ public ArchivedProcessInstanceDocument name(String name) {
* name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -363,7 +363,7 @@ public ArchivedProcessInstanceDocument fileName(String fileName) {
* filename
*
* @return fileName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -388,7 +388,7 @@ public ArchivedProcessInstanceDocument submittedBy(String submittedBy) {
* submittorUserId
*
* @return submittedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SUBMITTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -413,7 +413,7 @@ public ArchivedProcessInstanceDocument url(String url) {
* urlForDownload
*
* @return url
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -438,7 +438,7 @@ public ArchivedProcessInstanceDocument version(String version) {
* version
*
* @return version
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -463,7 +463,7 @@ public ArchivedProcessInstanceDocument sourceObjectId(String sourceObjectId) {
* original document id
*
* @return sourceObjectId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SOURCE_OBJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -488,7 +488,7 @@ public ArchivedProcessInstanceDocument archivedDate(String archivedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceVariable.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceVariable.java
index d5fc6f63..a382440b 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceVariable.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedProcessInstanceVariable.java
@@ -35,7 +35,7 @@
ArchivedProcessInstanceVariable.JSON_PROPERTY_ARCHIVED_DATE,
ArchivedProcessInstanceVariable.JSON_PROPERTY_SOURCED_OBJECT_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedProcessInstanceVariable implements Serializable {
private static final long serialVersionUID = 1L;
@@ -74,7 +74,7 @@ public ArchivedProcessInstanceVariable name(String name) {
* The name of the variable
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -99,7 +99,7 @@ public ArchivedProcessInstanceVariable description(String description) {
* Detailed description of the case variable, as set in the definition at design-time
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -124,7 +124,7 @@ public ArchivedProcessInstanceVariable type(String type) {
* The fully qualified class name of the variable type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -149,7 +149,7 @@ public ArchivedProcessInstanceVariable caseId(String caseId) {
* ID of the case this variable belongs to
*
* @return caseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -174,7 +174,7 @@ public ArchivedProcessInstanceVariable value(String value) {
* the value of this variable. The format of the value depends on the type of the variable
*
* @return value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -199,7 +199,7 @@ public ArchivedProcessInstanceVariable archivedDate(String archivedDate) {
* The date when this variable was archived. The date format is yyyy-MM-dd HH:mm:ss.SSS
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -224,7 +224,7 @@ public ArchivedProcessInstanceVariable sourcedObjectId(String sourcedObjectId) {
* The id of the variable before it was archived
*
* @return sourcedObjectId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SOURCED_OBJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedTask.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedTask.java
index 54ac3368..9df37c38 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedTask.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedTask.java
@@ -52,7 +52,7 @@
ArchivedTask.JSON_PROPERTY_SOURCE_OBJECT_ID,
ArchivedTask.JSON_PROPERTY_ARCHIVED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedTask implements Serializable {
private static final long serialVersionUID = 1L;
@@ -142,7 +142,7 @@ public ArchivedTask id(String id) {
* the task id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -167,7 +167,7 @@ public ArchivedTask type(String type) {
* the task type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -192,7 +192,7 @@ public ArchivedTask name(String name) {
* the task technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -217,7 +217,7 @@ public ArchivedTask displayName(String displayName) {
* the human readable task name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -242,7 +242,7 @@ public ArchivedTask description(String description) {
* the task description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -267,7 +267,7 @@ public ArchivedTask displayDescription(String displayDescription) {
* the human readable task description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -292,7 +292,7 @@ public ArchivedTask state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -317,7 +317,7 @@ public ArchivedTask reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task reached the current state for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -342,7 +342,7 @@ public ArchivedTask lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task was last updated for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -367,7 +367,7 @@ public ArchivedTask dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task is due for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -392,7 +392,7 @@ public ArchivedTask priority(String priority) {
* the priority (string) of the current task
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -417,7 +417,7 @@ public ArchivedTask processId(String processId) {
* the process definition id of the process instance which define this task
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -442,7 +442,7 @@ public ArchivedTask parentCaseId(String parentCaseId) {
* the immediate containing process instance id (case id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -467,7 +467,7 @@ public ArchivedTask parentTaskId(String parentTaskId) {
* the parent Task id
*
* @return parentTaskId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -493,7 +493,7 @@ public ArchivedTask rootCaseId(String rootCaseId) {
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -518,7 +518,7 @@ public ArchivedTask rootContainerId(String rootContainerId) {
* same as rootCaseId
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -543,7 +543,7 @@ public ArchivedTask executedBy(String executedBy) {
* the id of the user who performed this task. The task has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -568,7 +568,7 @@ public ArchivedTask executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the task when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -593,7 +593,7 @@ public ArchivedTask actorId(String actorId) {
* the id of the actor that can execute this task null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -618,7 +618,7 @@ public ArchivedTask assignedId(String assignedId) {
* the user id that this task is assigned to or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -643,7 +643,7 @@ public ArchivedTask assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -668,7 +668,7 @@ public ArchivedTask isTerminal(Boolean isTerminal) {
* True if the task is the last one in a flow
*
* @return isTerminal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -693,7 +693,7 @@ public ArchivedTask sourceObjectId(String sourceObjectId) {
* the original id of the task before it was archived
*
* @return sourceObjectId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SOURCE_OBJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -718,7 +718,7 @@ public ArchivedTask archivedDate(String archivedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ArchivedUserTask.java b/src/main/java/org/bonitasoft/web/client/model/ArchivedUserTask.java
index 778e7b38..3b5c94ca 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ArchivedUserTask.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ArchivedUserTask.java
@@ -52,7 +52,7 @@
ArchivedUserTask.JSON_PROPERTY_SOURCE_OBJECT_ID,
ArchivedUserTask.JSON_PROPERTY_ARCHIVED_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ArchivedUserTask implements Serializable {
private static final long serialVersionUID = 1L;
@@ -142,7 +142,7 @@ public ArchivedUserTask id(String id) {
* the task id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -167,7 +167,7 @@ public ArchivedUserTask type(String type) {
* the task type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -192,7 +192,7 @@ public ArchivedUserTask name(String name) {
* the task technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -217,7 +217,7 @@ public ArchivedUserTask displayName(String displayName) {
* the human readable task name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -242,7 +242,7 @@ public ArchivedUserTask description(String description) {
* the task description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -267,7 +267,7 @@ public ArchivedUserTask displayDescription(String displayDescription) {
* the human readable task description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -292,7 +292,7 @@ public ArchivedUserTask state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -317,7 +317,7 @@ public ArchivedUserTask reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task reached the current state for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -342,7 +342,7 @@ public ArchivedUserTask lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task was last updated for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -367,7 +367,7 @@ public ArchivedUserTask dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task is due for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -392,7 +392,7 @@ public ArchivedUserTask priority(String priority) {
* the priority (string) of the current task
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -417,7 +417,7 @@ public ArchivedUserTask processId(String processId) {
* the process definition id of the process instance which define this task
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -442,7 +442,7 @@ public ArchivedUserTask parentCaseId(String parentCaseId) {
* the immediate containing process instance id (case id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -467,7 +467,7 @@ public ArchivedUserTask parentTaskId(String parentTaskId) {
* the parent Task id
*
* @return parentTaskId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -493,7 +493,7 @@ public ArchivedUserTask rootCaseId(String rootCaseId) {
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -518,7 +518,7 @@ public ArchivedUserTask rootContainerId(String rootContainerId) {
* same as rootCaseId
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -543,7 +543,7 @@ public ArchivedUserTask executedBy(String executedBy) {
* the id of the user who performed this task. The task has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -568,7 +568,7 @@ public ArchivedUserTask executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the task when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -593,7 +593,7 @@ public ArchivedUserTask actorId(String actorId) {
* the id of the actor that can execute this task null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -618,7 +618,7 @@ public ArchivedUserTask assignedId(String assignedId) {
* the user id that this task is assigned to or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -643,7 +643,7 @@ public ArchivedUserTask assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -668,7 +668,7 @@ public ArchivedUserTask isTerminal(Boolean isTerminal) {
* True if the task is the last one in a flow
*
* @return isTerminal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -693,7 +693,7 @@ public ArchivedUserTask sourceObjectId(String sourceObjectId) {
* the original id of the task before it was archived
*
* @return sourceObjectId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SOURCE_OBJECT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -718,7 +718,7 @@ public ArchivedUserTask archivedDate(String archivedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return archivedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ARCHIVED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/BDMAccessControl.java b/src/main/java/org/bonitasoft/web/client/model/BDMAccessControl.java
index 74585d65..d7f52220 100644
--- a/src/main/java/org/bonitasoft/web/client/model/BDMAccessControl.java
+++ b/src/main/java/org/bonitasoft/web/client/model/BDMAccessControl.java
@@ -33,7 +33,7 @@
BDMAccessControl.JSON_PROPERTY_LAST_UPDATED_BY,
BDMAccessControl.JSON_PROPERTY_LAST_UPDATE_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class BDMAccessControl implements Serializable {
private static final long serialVersionUID = 1L;
@@ -66,7 +66,7 @@ public BDMAccessControl id(String id) {
* Id of the BDM access control
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -91,7 +91,7 @@ public BDMAccessControl name(String name) {
* BDM access control name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -116,7 +116,7 @@ public BDMAccessControl state(TenantResourceState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -141,7 +141,7 @@ public BDMAccessControl lastUpdatedBy(String lastUpdatedBy) {
* If `lastUpdatedBy: -1` it means that the access control were last installed or updated by tenant_technical_user.
*
* @return lastUpdatedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -166,7 +166,7 @@ public BDMAccessControl lastUpdateDate(String lastUpdateDate) {
* Last date when the access control were installed or updated.
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/BDMInstallRequest.java b/src/main/java/org/bonitasoft/web/client/model/BDMInstallRequest.java
index 3008c557..c4ed2fe4 100644
--- a/src/main/java/org/bonitasoft/web/client/model/BDMInstallRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/BDMInstallRequest.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
BDMInstallRequest.JSON_PROPERTY_FILE_UPLOAD
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class BDMInstallRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public BDMInstallRequest fileUpload(String fileUpload) {
* the temporary file name once uploaded on the server
*
* @return fileUpload
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE_UPLOAD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Bdm.java b/src/main/java/org/bonitasoft/web/client/model/Bdm.java
index 326c46b8..4120ed19 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Bdm.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Bdm.java
@@ -34,7 +34,7 @@
Bdm.JSON_PROPERTY_LAST_UPDATED_BY,
Bdm.JSON_PROPERTY_LAST_UPDATE_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Bdm implements Serializable {
private static final long serialVersionUID = 1L;
@@ -70,7 +70,7 @@ public Bdm id(String id) {
* BDM id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -95,7 +95,7 @@ public Bdm name(String name) {
* BDM name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -120,7 +120,7 @@ public Bdm type(String type) {
* BDM type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -145,7 +145,7 @@ public Bdm state(TenantResourceState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -170,7 +170,7 @@ public Bdm lastUpdatedBy(String lastUpdatedBy) {
* This value is always -1 because only the tenant_technical_user can install BDM.
*
* @return lastUpdatedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -195,7 +195,7 @@ public Bdm lastUpdateDate(String lastUpdateDate) {
* Last date when the BDM was installed or updated.
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/BusinessData.java b/src/main/java/org/bonitasoft/web/client/model/BusinessData.java
index 2bee9c1e..3c48da04 100644
--- a/src/main/java/org/bonitasoft/web/client/model/BusinessData.java
+++ b/src/main/java/org/bonitasoft/web/client/model/BusinessData.java
@@ -40,7 +40,7 @@
BusinessData.JSON_PROPERTY_PERSISTENCE_ID_STRING,
BusinessData.JSON_PROPERTY_PERSISTENCE_VERSION_STRING
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class BusinessData extends HashMap implements Serializable {
private static final long serialVersionUID = 1L;
@@ -65,7 +65,7 @@ public BusinessData persistenceIdString(String persistenceIdString) {
* Id of the business data object
*
* @return persistenceIdString
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PERSISTENCE_ID_STRING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -90,7 +90,7 @@ public BusinessData persistenceVersionString(String persistenceVersionString) {
* Version of the business data object instance
*
* @return persistenceVersionString
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PERSISTENCE_VERSION_STRING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ConnectorFailure.java b/src/main/java/org/bonitasoft/web/client/model/ConnectorFailure.java
index 97ea9887..ab9c82ed 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ConnectorFailure.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ConnectorFailure.java
@@ -31,7 +31,7 @@
ConnectorFailure.JSON_PROPERTY_CONNECTOR_INSTANCE_ID,
ConnectorFailure.JSON_PROPERTY_ERROR_STACK_TRACE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ConnectorFailure implements Serializable {
private static final long serialVersionUID = 1L;
@@ -58,7 +58,7 @@ public ConnectorFailure errorMessage(String errorMessage) {
* the message of the connector failure
*
* @return errorMessage
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ERROR_MESSAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -83,7 +83,7 @@ public ConnectorFailure connectorInstanceId(String connectorInstanceId) {
* the ID of the connector instance (see connectorInstance resource documentation)
*
* @return connectorInstanceId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONNECTOR_INSTANCE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -108,7 +108,7 @@ public ConnectorFailure errorStackTrace(String errorStackTrace) {
* the stack trace of the error
*
* @return errorStackTrace
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ERROR_STACK_TRACE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ConnectorInstance.java b/src/main/java/org/bonitasoft/web/client/model/ConnectorInstance.java
index e4b929d1..cd8d4c94 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ConnectorInstance.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ConnectorInstance.java
@@ -38,7 +38,7 @@
ConnectorInstance.JSON_PROPERTY_CONTAINER_ID,
ConnectorInstance.JSON_PROPERTY_VERSION
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ConnectorInstance implements Serializable {
private static final long serialVersionUID = 1L;
@@ -160,7 +160,7 @@ public ConnectorInstance containerType(String containerType) {
* the type of the containing activity
*
* @return containerType
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTAINER_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -185,7 +185,7 @@ public ConnectorInstance connectorId(String connectorId) {
* the connector id
*
* @return connectorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONNECTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -210,7 +210,7 @@ public ConnectorInstance id(Long id) {
* the connector instance id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -235,7 +235,7 @@ public ConnectorInstance name(String name) {
* the connector name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -260,7 +260,7 @@ public ConnectorInstance activationEvent(ActivationEventEnum activationEvent) {
* the name of the event that activated the connector instance
*
* @return activationEvent
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTIVATION_EVENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -285,7 +285,7 @@ public ConnectorInstance state(StateEnum state) {
* the connector state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -310,7 +310,7 @@ public ConnectorInstance containerId(String containerId) {
* the containing activity instance id
*
* @return containerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -335,7 +335,7 @@ public ConnectorInstance version(String version) {
* the connector version
*
* @return version
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Contract.java b/src/main/java/org/bonitasoft/web/client/model/Contract.java
index d8c44862..172753bb 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Contract.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Contract.java
@@ -32,7 +32,7 @@
Contract.JSON_PROPERTY_CONSTRAINTS,
Contract.JSON_PROPERTY_INPUTS
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Contract implements Serializable {
private static final long serialVersionUID = 1L;
@@ -64,7 +64,7 @@ public Contract addConstraintsItem(ContractConstraint constraintsItem) {
* Get constraints
*
* @return constraints
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONSTRAINTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -97,7 +97,7 @@ public Contract addInputsItem(ContractInput inputsItem) {
* Get inputs
*
* @return inputs
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INPUTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ContractConstraint.java b/src/main/java/org/bonitasoft/web/client/model/ContractConstraint.java
index 85dbeeab..70e0abfb 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ContractConstraint.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ContractConstraint.java
@@ -34,7 +34,7 @@
ContractConstraint.JSON_PROPERTY_EXPLANATION,
ContractConstraint.JSON_PROPERTY_INPUT_NAMES
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ContractConstraint implements Serializable {
private static final long serialVersionUID = 1L;
@@ -64,7 +64,7 @@ public ContractConstraint name(String name) {
* constraint name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -89,7 +89,7 @@ public ContractConstraint expression(String expression) {
* constraint expression
*
* @return expression
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXPRESSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -114,7 +114,7 @@ public ContractConstraint explanation(String explanation) {
* constraint explanation
*
* @return explanation
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXPLANATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -147,7 +147,7 @@ public ContractConstraint addInputNamesItem(String inputNamesItem) {
* Get inputNames
*
* @return inputNames
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INPUT_NAMES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ContractInput.java b/src/main/java/org/bonitasoft/web/client/model/ContractInput.java
index d6ba0fca..567adf6f 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ContractInput.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ContractInput.java
@@ -35,7 +35,7 @@
ContractInput.JSON_PROPERTY_TYPE,
ContractInput.JSON_PROPERTY_INPUTS
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ContractInput implements Serializable {
private static final long serialVersionUID = 1L;
@@ -68,7 +68,7 @@ public ContractInput description(String description) {
* input description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -93,7 +93,7 @@ public ContractInput name(String name) {
* input name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -118,7 +118,7 @@ public ContractInput multiple(String multiple) {
* true if input contains multiple values
*
* @return multiple
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MULTIPLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -143,7 +143,7 @@ public ContractInput type(ContractInputType type) {
* Get type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -176,7 +176,7 @@ public ContractInput addInputsItem(ContractInput inputsItem) {
* Get inputs
*
* @return inputs
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INPUTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/CreateApplicationRequest.java b/src/main/java/org/bonitasoft/web/client/model/CreateApplicationRequest.java
index 31491a9d..6c6f1dfa 100644
--- a/src/main/java/org/bonitasoft/web/client/model/CreateApplicationRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/CreateApplicationRequest.java
@@ -27,17 +27,21 @@
* CreateApplicationRequest
*/
@JsonPropertyOrder({
+ CreateApplicationRequest.JSON_PROPERTY_LINK,
CreateApplicationRequest.JSON_PROPERTY_DESCRIPTION,
CreateApplicationRequest.JSON_PROPERTY_DISPLAY_NAME,
CreateApplicationRequest.JSON_PROPERTY_PROFILE_ID,
CreateApplicationRequest.JSON_PROPERTY_TOKEN,
CreateApplicationRequest.JSON_PROPERTY_VERSION
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class CreateApplicationRequest implements Serializable {
private static final long serialVersionUID = 1L;
+ public static final String JSON_PROPERTY_LINK = "link";
+ private Boolean link = false;
+
public static final String JSON_PROPERTY_DESCRIPTION = "description";
private String description;
@@ -56,6 +60,31 @@ public class CreateApplicationRequest implements Serializable {
public CreateApplicationRequest() {
}
+ public CreateApplicationRequest link(Boolean link) {
+
+ this.link = link;
+ return this;
+ }
+
+ /**
+ * true for an application link, false for a legacy application
+ *
+ * @return link
+ */
+ @jakarta.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_LINK)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+
+ public Boolean getLink() {
+ return link;
+ }
+
+ @JsonProperty(JSON_PROPERTY_LINK)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public void setLink(Boolean link) {
+ this.link = link;
+ }
+
public CreateApplicationRequest description(String description) {
this.description = description;
@@ -66,7 +95,7 @@ public CreateApplicationRequest description(String description) {
* description of the application
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -91,7 +120,7 @@ public CreateApplicationRequest displayName(String displayName) {
* display name of the application
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -116,7 +145,7 @@ public CreateApplicationRequest profileId(String profileId) {
* profile authorized to access this application
*
* @return profileId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROFILE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -141,7 +170,7 @@ public CreateApplicationRequest token(String token) {
* token of the application used to build the application URL
*
* @return token
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TOKEN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -166,7 +195,7 @@ public CreateApplicationRequest version(String version) {
* version of the application
*
* @return version
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -190,7 +219,8 @@ public boolean equals(Object o) {
return false;
}
CreateApplicationRequest createApplicationRequest = (CreateApplicationRequest) o;
- return Objects.equals(this.description, createApplicationRequest.description) &&
+ return Objects.equals(this.link, createApplicationRequest.link) &&
+ Objects.equals(this.description, createApplicationRequest.description) &&
Objects.equals(this.displayName, createApplicationRequest.displayName) &&
Objects.equals(this.profileId, createApplicationRequest.profileId) &&
Objects.equals(this.token, createApplicationRequest.token) &&
@@ -199,13 +229,14 @@ public boolean equals(Object o) {
@Override
public int hashCode() {
- return Objects.hash(description, displayName, profileId, token, version);
+ return Objects.hash(link, description, displayName, profileId, token, version);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreateApplicationRequest {\n");
+ sb.append(" link: ").append(toIndentedString(link)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" displayName: ").append(toIndentedString(displayName)).append("\n");
sb.append(" profileId: ").append(toIndentedString(profileId)).append("\n");
diff --git a/src/main/java/org/bonitasoft/web/client/model/CustomUser.java b/src/main/java/org/bonitasoft/web/client/model/CustomUser.java
index 811a067c..e929b7e2 100644
--- a/src/main/java/org/bonitasoft/web/client/model/CustomUser.java
+++ b/src/main/java/org/bonitasoft/web/client/model/CustomUser.java
@@ -31,7 +31,7 @@
CustomUser.JSON_PROPERTY_VALUE,
CustomUser.JSON_PROPERTY_DEFINITION_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class CustomUser implements Serializable {
private static final long serialVersionUID = 1L;
@@ -58,7 +58,7 @@ public CustomUser userId(String userId) {
* user id
*
* @return userId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -83,7 +83,7 @@ public CustomUser value(String value) {
* definition value
*
* @return value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -108,7 +108,7 @@ public CustomUser definitionId(CustomUserDefinition definitionId) {
* Get definitionId
*
* @return definitionId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DEFINITION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/CustomUserDefinition.java b/src/main/java/org/bonitasoft/web/client/model/CustomUserDefinition.java
index c1286399..74885cc5 100644
--- a/src/main/java/org/bonitasoft/web/client/model/CustomUserDefinition.java
+++ b/src/main/java/org/bonitasoft/web/client/model/CustomUserDefinition.java
@@ -31,7 +31,7 @@
CustomUserDefinition.JSON_PROPERTY_DESCRIPTION,
CustomUserDefinition.JSON_PROPERTY_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class CustomUserDefinition implements Serializable {
private static final long serialVersionUID = 1L;
@@ -58,7 +58,7 @@ public CustomUserDefinition id(String id) {
* definition id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -83,7 +83,7 @@ public CustomUserDefinition description(String description) {
* definition description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -108,7 +108,7 @@ public CustomUserDefinition name(String name) {
* definition name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/CustomUserDefinitionCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/CustomUserDefinitionCreateRequest.java
index 94008863..5913653d 100644
--- a/src/main/java/org/bonitasoft/web/client/model/CustomUserDefinitionCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/CustomUserDefinitionCreateRequest.java
@@ -30,7 +30,7 @@
CustomUserDefinitionCreateRequest.JSON_PROPERTY_NAME,
CustomUserDefinitionCreateRequest.JSON_PROPERTY_DESCRIPTION
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class CustomUserDefinitionCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public CustomUserDefinitionCreateRequest name(String name) {
* definition name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public CustomUserDefinitionCreateRequest description(String description) {
* definition description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/CustomUserValue.java b/src/main/java/org/bonitasoft/web/client/model/CustomUserValue.java
index ac0f5664..9edb9ad9 100644
--- a/src/main/java/org/bonitasoft/web/client/model/CustomUserValue.java
+++ b/src/main/java/org/bonitasoft/web/client/model/CustomUserValue.java
@@ -31,7 +31,7 @@
CustomUserValue.JSON_PROPERTY_VALUE,
CustomUserValue.JSON_PROPERTY_DEFINITION_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class CustomUserValue implements Serializable {
private static final long serialVersionUID = 1L;
@@ -58,7 +58,7 @@ public CustomUserValue userId(String userId) {
* user id
*
* @return userId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -83,7 +83,7 @@ public CustomUserValue value(String value) {
* definition value
*
* @return value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -108,7 +108,7 @@ public CustomUserValue definitionId(String definitionId) {
* definition id
*
* @return definitionId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DEFINITION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/CustomUserValueUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/CustomUserValueUpdateRequest.java
index 10e65811..87094119 100644
--- a/src/main/java/org/bonitasoft/web/client/model/CustomUserValueUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/CustomUserValueUpdateRequest.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
CustomUserValueUpdateRequest.JSON_PROPERTY_VALUE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class CustomUserValueUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public CustomUserValueUpdateRequest value(String value) {
* new value to set
*
* @return value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinition.java b/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinition.java
index c106efdb..2ec32c9c 100644
--- a/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinition.java
+++ b/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinition.java
@@ -40,7 +40,7 @@
DesignProcessDefinition.JSON_PROPERTY_CONTRACT,
DesignProcessDefinition.JSON_PROPERTY_CONTEXT
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class DesignProcessDefinition implements Serializable {
private static final long serialVersionUID = 1L;
@@ -88,7 +88,7 @@ public DesignProcessDefinition displayName(String displayName) {
* The process definition display name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -113,7 +113,7 @@ public DesignProcessDefinition displayDescription(String displayDescription) {
* The process definition display description name
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -138,7 +138,7 @@ public DesignProcessDefinition flowElementContainer(FlowElementContainerDefiniti
* Get flowElementContainer
*
* @return flowElementContainer
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FLOW_ELEMENT_CONTAINER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -171,7 +171,7 @@ public DesignProcessDefinition addParametersItem(DesignProcessDefinitionParamate
* The process parameter definitions
*
* @return parameters
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARAMETERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -204,7 +204,7 @@ public DesignProcessDefinition addActorsListItem(ActorDefinition actorsListItem)
* The list of process actor definitions
*
* @return actorsList
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTORS_LIST)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -229,7 +229,7 @@ public DesignProcessDefinition actorInitiator(ActorDefinition actorInitiator) {
* Get actorInitiator
*
* @return actorInitiator
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_INITIATOR)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -262,7 +262,7 @@ public DesignProcessDefinition addStringIndexLabelsItem(String stringIndexLabels
* The process definition labels
*
* @return stringIndexLabels
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STRING_INDEX_LABELS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -295,7 +295,7 @@ public DesignProcessDefinition addStringIndexValuesItem(Expression stringIndexVa
* The process definition expressions
*
* @return stringIndexValues
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STRING_INDEX_VALUES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -320,7 +320,7 @@ public DesignProcessDefinition contract(Contract contract) {
* Get contract
*
* @return contract
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTRACT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -353,7 +353,7 @@ public DesignProcessDefinition addContextItem(DesignProcessDefinitionContext con
* The process definition expressions
*
* @return context
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTEXT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinitionContext.java b/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinitionContext.java
index a163fddf..866691fa 100644
--- a/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinitionContext.java
+++ b/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinitionContext.java
@@ -30,7 +30,7 @@
DesignProcessDefinitionContext.JSON_PROPERTY_KEY,
DesignProcessDefinitionContext.JSON_PROPERTY_EXPRESSION
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class DesignProcessDefinitionContext implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public DesignProcessDefinitionContext key(String key) {
* Get key
*
* @return key
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public DesignProcessDefinitionContext expression(Expression expression) {
* Get expression
*
* @return expression
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXPRESSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinitionParamater.java b/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinitionParamater.java
index 4bdbfc7c..0b4a6763 100644
--- a/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinitionParamater.java
+++ b/src/main/java/org/bonitasoft/web/client/model/DesignProcessDefinitionParamater.java
@@ -31,7 +31,7 @@
DesignProcessDefinitionParamater.JSON_PROPERTY_DESCRIPTION,
DesignProcessDefinitionParamater.JSON_PROPERTY_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class DesignProcessDefinitionParamater implements Serializable {
private static final long serialVersionUID = 1L;
@@ -58,7 +58,7 @@ public DesignProcessDefinitionParamater type(String type) {
* the parameter type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -83,7 +83,7 @@ public DesignProcessDefinitionParamater description(String description) {
* the parameter description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -108,7 +108,7 @@ public DesignProcessDefinitionParamater name(String name) {
* the parameter name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Error.java b/src/main/java/org/bonitasoft/web/client/model/Error.java
index a7dc75f9..1668be9a 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Error.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Error.java
@@ -37,7 +37,7 @@
Error.JSON_PROPERTY_EXCEPTION,
Error.JSON_PROPERTY_EXPLANATIONS
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Error extends HashMap implements Serializable {
private static final long serialVersionUID = 1L;
@@ -65,7 +65,7 @@ public Error message(String message) {
* The error message
*
* @return message
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MESSAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -90,7 +90,7 @@ public Error exception(String exception) {
* The exception type
*
* @return exception
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXCEPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -123,7 +123,7 @@ public Error addExplanationsItem(String explanationsItem) {
* Further details on the error
*
* @return explanations
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXPLANATIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Expression.java b/src/main/java/org/bonitasoft/web/client/model/Expression.java
index 88ff6ba2..ecd986d6 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Expression.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Expression.java
@@ -37,7 +37,7 @@
Expression.JSON_PROPERTY_INTERPRETER,
Expression.JSON_PROPERTY_DEPENDENCIES
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Expression implements Serializable {
private static final long serialVersionUID = 1L;
@@ -76,7 +76,7 @@ public Expression id(String id) {
* the expression id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -101,7 +101,7 @@ public Expression name(String name) {
* the expression name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -126,7 +126,7 @@ public Expression content(String content) {
* the expression content
*
* @return content
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -151,7 +151,7 @@ public Expression expressionType(String expressionType) {
* the expression type
*
* @return expressionType
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXPRESSION_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -176,7 +176,7 @@ public Expression returnType(String returnType) {
* the expression return type
*
* @return returnType
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RETURN_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -201,7 +201,7 @@ public Expression interpreter(String interpreter) {
* the expression interpreter
*
* @return interpreter
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INTERPRETER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -234,7 +234,7 @@ public Expression addDependenciesItem(Expression dependenciesItem) {
* the expression dependencies
*
* @return dependencies
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DEPENDENCIES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/FlowElementContainerDefinition.java b/src/main/java/org/bonitasoft/web/client/model/FlowElementContainerDefinition.java
index 7b76230e..da8e27b1 100644
--- a/src/main/java/org/bonitasoft/web/client/model/FlowElementContainerDefinition.java
+++ b/src/main/java/org/bonitasoft/web/client/model/FlowElementContainerDefinition.java
@@ -43,7 +43,7 @@
FlowElementContainerDefinition.JSON_PROPERTY_BUSINESS_DATA_DEFINITIONS,
FlowElementContainerDefinition.JSON_PROPERTY_DOCUMENT_LIST_DEFINITIONS
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class FlowElementContainerDefinition implements Serializable {
private static final long serialVersionUID = 1L;
@@ -105,7 +105,7 @@ public FlowElementContainerDefinition addActivitiesItem(Map acti
* Get activities
*
* @return activities
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTIVITIES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -138,7 +138,7 @@ public FlowElementContainerDefinition addTransitionsItem(Map tra
* Get transitions
*
* @return transitions
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TRANSITIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -171,7 +171,7 @@ public FlowElementContainerDefinition addGatewaysListItem(Map ga
* Get gatewaysList
*
* @return gatewaysList
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_GATEWAYS_LIST)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -204,7 +204,7 @@ public FlowElementContainerDefinition addStartEventsItem(Map sta
* Get startEvents
*
* @return startEvents
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_START_EVENTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -238,7 +238,7 @@ public FlowElementContainerDefinition addIntermediateCatchEventsItem(
* Get intermediateCatchEvents
*
* @return intermediateCatchEvents
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INTERMEDIATE_CATCH_EVENTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -272,7 +272,7 @@ public FlowElementContainerDefinition addIntermediateThrowEventsItem(
* Get intermediateThrowEvents
*
* @return intermediateThrowEvents
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INTERMEDIATE_THROW_EVENTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -305,7 +305,7 @@ public FlowElementContainerDefinition addEndEventsItem(Map endEv
* Get endEvents
*
* @return endEvents
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_END_EVENTS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -338,7 +338,7 @@ public FlowElementContainerDefinition addDataDefinitionsItem(Map
* Get dataDefinitions
*
* @return dataDefinitions
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DATA_DEFINITIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -371,7 +371,7 @@ public FlowElementContainerDefinition addDocumentDefinitionsItem(Map conn
* Get connectors
*
* @return connectors
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONNECTORS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -438,7 +438,7 @@ public FlowElementContainerDefinition addBusinessDataDefinitionsItem(
* Get businessDataDefinitions
*
* @return businessDataDefinitions
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_BUSINESS_DATA_DEFINITIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -472,7 +472,7 @@ public FlowElementContainerDefinition addDocumentListDefinitionsItem(
* Get documentListDefinitions
*
* @return documentListDefinitions
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DOCUMENT_LIST_DEFINITIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/FlowNode.java b/src/main/java/org/bonitasoft/web/client/model/FlowNode.java
index 8ee20664..4a1ab1a1 100644
--- a/src/main/java/org/bonitasoft/web/client/model/FlowNode.java
+++ b/src/main/java/org/bonitasoft/web/client/model/FlowNode.java
@@ -50,7 +50,7 @@
FlowNode.JSON_PROPERTY_LAST_UPDATE_DATE,
FlowNode.JSON_PROPERTY_PARENT_TASK_ID_DOUBLE_QUOTE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class FlowNode implements Serializable {
private static final long serialVersionUID = 1L;
@@ -134,7 +134,7 @@ public FlowNode id(String id) {
* the flow node id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -159,7 +159,7 @@ public FlowNode displayDescription(String displayDescription) {
* the human readable flow node description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -184,7 +184,7 @@ public FlowNode executedBySubstitute(String executedBySubstitute) {
* the id of the user who really performed this flow node when a substitute did it, or 0 if the flow node was not performed by a substitute
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -209,7 +209,7 @@ public FlowNode caseId(String caseId) {
* the process instance id that is associated with this flow node
*
* @return caseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -234,7 +234,7 @@ public FlowNode parentCaseId(String parentCaseId) {
* the parent process instance id that is associated with this flow node's case
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -259,7 +259,7 @@ public FlowNode rootCaseId(String rootCaseId) {
* the root process instance initiator id that is associated with this flow node's case
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -284,7 +284,7 @@ public FlowNode processId(String processId) {
* the process id that is associated with this flow node
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -309,7 +309,7 @@ public FlowNode rootContainerId(String rootContainerId) {
* the root process id of the root process instance that is associated with this flow node
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -334,7 +334,7 @@ public FlowNode state(String state) {
* the current state of the flow node (ready, completed, failed)
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -359,7 +359,7 @@ public FlowNode type(String type) {
* the flow node type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -384,7 +384,7 @@ public FlowNode assignedId(String assignedId) {
* the user id that this flow node is assigned to, or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -409,7 +409,7 @@ public FlowNode assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current flow node was assigned, for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -434,7 +434,7 @@ public FlowNode executedBy(String executedBy) {
* the id of the user who executed the flow node, or 0 if the flow node has not been executed
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -459,7 +459,7 @@ public FlowNode priority(String priority) {
* the priority of the current flow node
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -484,7 +484,7 @@ public FlowNode actorId(String actorId) {
* the id of the actor that can execute this flow node, null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -509,7 +509,7 @@ public FlowNode description(String description) {
* the flow node description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -534,7 +534,7 @@ public FlowNode name(String name) {
* the flow node name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -559,7 +559,7 @@ public FlowNode reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this flow node reached the current state, for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -584,7 +584,7 @@ public FlowNode displayName(String displayName) {
* the display name of this flow node
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -609,7 +609,7 @@ public FlowNode dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this flow node is due, for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -634,7 +634,7 @@ public FlowNode lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this flow node was last updated, for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -659,7 +659,7 @@ public FlowNode parentTaskIdDoubleQuote(String parentTaskIdDoubleQuote) {
* in case of a subtask, the parent task id
*
* @return parentTaskIdDoubleQuote
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID_DOUBLE_QUOTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/FlowNodeUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/FlowNodeUpdateRequest.java
index 507736eb..be61aa4e 100644
--- a/src/main/java/org/bonitasoft/web/client/model/FlowNodeUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/FlowNodeUpdateRequest.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
FlowNodeUpdateRequest.JSON_PROPERTY_STATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class FlowNodeUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public FlowNodeUpdateRequest state(String state) {
* state of the FlowNode
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/FormMapping.java b/src/main/java/org/bonitasoft/web/client/model/FormMapping.java
index 35516b0d..f41d92f8 100644
--- a/src/main/java/org/bonitasoft/web/client/model/FormMapping.java
+++ b/src/main/java/org/bonitasoft/web/client/model/FormMapping.java
@@ -41,7 +41,7 @@
FormMapping.JSON_PROPERTY_LAST_UPDATE_DATE,
FormMapping.JSON_PROPERTY_URL
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class FormMapping implements Serializable {
private static final long serialVersionUID = 1L;
@@ -169,7 +169,7 @@ public FormMapping id(String id) {
* the form mapping identifier
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -194,7 +194,7 @@ public FormMapping processDefinitionId(String processDefinitionId) {
* the process identifier related to this form mapping
*
* @return processDefinitionId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_DEFINITION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -219,7 +219,7 @@ public FormMapping type(TypeEnum type) {
* the form mapping type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -244,7 +244,7 @@ public FormMapping target(TargetEnum target) {
* the target
*
* @return target
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TARGET)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -269,7 +269,7 @@ public FormMapping task(String task) {
* the task name when type is TASK - null otherwise
*
* @return task
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TASK)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -294,7 +294,7 @@ public FormMapping pageId(String pageId) {
* the custom page identifier when type is INTERNAL - null otherwise
*
* @return pageId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -319,7 +319,7 @@ public FormMapping pageMappingKey(String pageMappingKey) {
* the page mapping key part used to generate the form URL
*
* @return pageMappingKey
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAGE_MAPPING_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -344,7 +344,7 @@ public FormMapping lastUpdateBy(String lastUpdateBy) {
* the identifier of the user who last updated this form mapping - 0 if no update has been done yet
*
* @return lastUpdateBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -369,7 +369,7 @@ public FormMapping lastUpdateDate(String lastUpdateDate) {
* the last update date in milliseconds - null if no update has been done yet
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -394,7 +394,7 @@ public FormMapping url(String url) {
* the external URL (string) when type is URL - null otherwise
*
* @return url
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/FormMappingUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/FormMappingUpdateRequest.java
index efca4050..1035abaf 100644
--- a/src/main/java/org/bonitasoft/web/client/model/FormMappingUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/FormMappingUpdateRequest.java
@@ -30,7 +30,7 @@
FormMappingUpdateRequest.JSON_PROPERTY_PAGE_ID,
FormMappingUpdateRequest.JSON_PROPERTY_URL
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class FormMappingUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public FormMappingUpdateRequest pageId(String pageId) {
* pageId of the FormMapping
*
* @return pageId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public FormMappingUpdateRequest url(String url) {
* url of the FormMapping
*
* @return url
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Group.java b/src/main/java/org/bonitasoft/web/client/model/Group.java
index ead515e0..c2f64601 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Group.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Group.java
@@ -39,7 +39,7 @@
Group.JSON_PROPERTY_LAST_UPDATE_DATE,
Group.JSON_PROPERTY_ICON
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Group implements Serializable {
private static final long serialVersionUID = 1L;
@@ -90,7 +90,7 @@ public Group id(String id) {
* group ID
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -115,7 +115,7 @@ public Group name(String name) {
* name
*
* @return name
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -140,7 +140,7 @@ public Group displayName(String displayName) {
* display name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -165,7 +165,7 @@ public Group parentPath(String parentPath) {
* the path of the parent group of this group (empty if the group has no parent)
*
* @return parentPath
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_PATH)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -190,7 +190,7 @@ public Group parentGroupId(String parentGroupId) {
* the id of the parent group of this group (empty if the group has no parent)
*
* @return parentGroupId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_GROUP_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -215,7 +215,7 @@ public Group path(String path) {
* the full path of the group (including its parent path)
*
* @return path
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PATH)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -240,7 +240,7 @@ public Group description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -265,7 +265,7 @@ public Group creationDate(String creationDate) {
* creation date (format: `2014-12-31 15:17:24.736`)
*
* @return creationDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -290,7 +290,7 @@ public Group createdByUserId(String createdByUserId) {
* id of the user who created the group (-1 if the group was created by the tenant admin or by an organisation import)
*
* @return createdByUserId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_BY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -315,7 +315,7 @@ public Group lastUpdateDate(String lastUpdateDate) {
* last update date (format: `2014-12-31 15:17:24.736`)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -340,7 +340,7 @@ public Group icon(String icon) {
* icon path
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/GroupCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/GroupCreateRequest.java
index d16e156b..37d5c030 100644
--- a/src/main/java/org/bonitasoft/web/client/model/GroupCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/GroupCreateRequest.java
@@ -33,7 +33,7 @@
GroupCreateRequest.JSON_PROPERTY_DESCRIPTION,
GroupCreateRequest.JSON_PROPERTY_ICON
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class GroupCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -66,7 +66,7 @@ public GroupCreateRequest name(String name) {
* name
*
* @return name
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -91,7 +91,7 @@ public GroupCreateRequest displayName(String displayName) {
* display name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -116,7 +116,7 @@ public GroupCreateRequest parentGroupId(String parentGroupId) {
* the id of the parent group of this group (empty if the group has no parent)
*
* @return parentGroupId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_GROUP_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -141,7 +141,7 @@ public GroupCreateRequest description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -166,7 +166,7 @@ public GroupCreateRequest icon(String icon) {
* icon path
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/GroupUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/GroupUpdateRequest.java
index 89a401ca..f0a1667b 100644
--- a/src/main/java/org/bonitasoft/web/client/model/GroupUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/GroupUpdateRequest.java
@@ -33,7 +33,7 @@
GroupUpdateRequest.JSON_PROPERTY_DESCRIPTION,
GroupUpdateRequest.JSON_PROPERTY_ICON
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class GroupUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -66,7 +66,7 @@ public GroupUpdateRequest name(String name) {
* name
*
* @return name
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -91,7 +91,7 @@ public GroupUpdateRequest displayName(String displayName) {
* display name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -116,7 +116,7 @@ public GroupUpdateRequest parentGroupId(String parentGroupId) {
* the id of the parent group of this group (empty if the group has no parent)
*
* @return parentGroupId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_GROUP_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -141,7 +141,7 @@ public GroupUpdateRequest description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -166,7 +166,7 @@ public GroupUpdateRequest icon(String icon) {
* icon path
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/HumanTask.java b/src/main/java/org/bonitasoft/web/client/model/HumanTask.java
index 9b8cc7fc..fb9eb6db 100644
--- a/src/main/java/org/bonitasoft/web/client/model/HumanTask.java
+++ b/src/main/java/org/bonitasoft/web/client/model/HumanTask.java
@@ -50,7 +50,7 @@
HumanTask.JSON_PROPERTY_ASSIGNED_DATE,
HumanTask.JSON_PROPERTY_IS_TERMINAL
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class HumanTask implements Serializable {
private static final long serialVersionUID = 1L;
@@ -134,7 +134,7 @@ public HumanTask id(String id) {
* the task id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -159,7 +159,7 @@ public HumanTask type(String type) {
* the task type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -184,7 +184,7 @@ public HumanTask name(String name) {
* the task technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -209,7 +209,7 @@ public HumanTask displayName(String displayName) {
* the human readable task name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -234,7 +234,7 @@ public HumanTask description(String description) {
* the task description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -259,7 +259,7 @@ public HumanTask displayDescription(String displayDescription) {
* the human readable task description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -284,7 +284,7 @@ public HumanTask state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -309,7 +309,7 @@ public HumanTask reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task reached the current state for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -334,7 +334,7 @@ public HumanTask lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task was last updated for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -359,7 +359,7 @@ public HumanTask dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task is due for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -384,7 +384,7 @@ public HumanTask priority(String priority) {
* the priority (string) of the current task
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -409,7 +409,7 @@ public HumanTask processId(String processId) {
* the process definition id of the process instance which define this task
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -434,7 +434,7 @@ public HumanTask parentCaseId(String parentCaseId) {
* the immediate containing process instance id (case id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -459,7 +459,7 @@ public HumanTask parentTaskId(String parentTaskId) {
* the parent Task id
*
* @return parentTaskId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -485,7 +485,7 @@ public HumanTask rootCaseId(String rootCaseId) {
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -510,7 +510,7 @@ public HumanTask rootContainerId(String rootContainerId) {
* same as rootCaseId
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -535,7 +535,7 @@ public HumanTask executedBy(String executedBy) {
* the id of the user who performed this task. The task has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -560,7 +560,7 @@ public HumanTask executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the task when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -585,7 +585,7 @@ public HumanTask actorId(String actorId) {
* the id of the actor that can execute this task null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -610,7 +610,7 @@ public HumanTask assignedId(String assignedId) {
* the user id that this task is assigned to or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -635,7 +635,7 @@ public HumanTask assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -660,7 +660,7 @@ public HumanTask isTerminal(Boolean isTerminal) {
* True if the task is the last one in a flow
*
* @return isTerminal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/HumanTaskUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/HumanTaskUpdateRequest.java
index c1ac290b..2007f656 100644
--- a/src/main/java/org/bonitasoft/web/client/model/HumanTaskUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/HumanTaskUpdateRequest.java
@@ -30,7 +30,7 @@
HumanTaskUpdateRequest.JSON_PROPERTY_ASSIGNED_ID,
HumanTaskUpdateRequest.JSON_PROPERTY_STATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class HumanTaskUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public HumanTaskUpdateRequest assignedId(String assignedId) {
* The id of the user to assign this Human task to
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public HumanTaskUpdateRequest state(String state) {
* state of the HumanTask
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/I18nlocale.java b/src/main/java/org/bonitasoft/web/client/model/I18nlocale.java
index c551fd40..3b40a6c0 100644
--- a/src/main/java/org/bonitasoft/web/client/model/I18nlocale.java
+++ b/src/main/java/org/bonitasoft/web/client/model/I18nlocale.java
@@ -30,7 +30,7 @@
I18nlocale.JSON_PROPERTY_NAME,
I18nlocale.JSON_PROPERTY_LOCALE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class I18nlocale implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public I18nlocale name(String name) {
* Name of the language
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public I18nlocale locale(String locale) {
* code of the locale
*
* @return locale
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LOCALE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/LegacyApplication.java b/src/main/java/org/bonitasoft/web/client/model/LegacyApplication.java
index 121f50f7..260982bf 100644
--- a/src/main/java/org/bonitasoft/web/client/model/LegacyApplication.java
+++ b/src/main/java/org/bonitasoft/web/client/model/LegacyApplication.java
@@ -47,7 +47,7 @@
LegacyApplication.JSON_PROPERTY_LAYOUT_ID,
LegacyApplication.JSON_PROPERTY_THEME_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class LegacyApplication implements Serializable, Application {
private static final long serialVersionUID = 1L;
@@ -191,7 +191,7 @@ public LegacyApplication createdBy(String createdBy) {
* Author user ID
*
* @return createdBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -216,7 +216,7 @@ public LegacyApplication creationDate(String creationDate) {
* creation date of the application
*
* @return creationDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -241,7 +241,7 @@ public LegacyApplication description(String description) {
* description of the application
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -266,7 +266,7 @@ public LegacyApplication displayName(String displayName) {
* display name of the application
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -291,7 +291,7 @@ public LegacyApplication id(String id) {
* id of the application
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -316,7 +316,7 @@ public LegacyApplication lastUpdateDate(String lastUpdateDate) {
* last update date of the application
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -341,7 +341,7 @@ public LegacyApplication profileId(String profileId) {
* profile authorized to access this application
*
* @return profileId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROFILE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -366,7 +366,7 @@ public LegacyApplication token(String token) {
* token of the application used to build the application URL
*
* @return token
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TOKEN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -391,7 +391,7 @@ public LegacyApplication updatedBy(String updatedBy) {
* Last updating user ID
*
* @return updatedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_UPDATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -416,7 +416,7 @@ public LegacyApplication version(String version) {
* version of the application
*
* @return version
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -441,7 +441,7 @@ public LegacyApplication state(StateEnum state) {
* application state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -467,7 +467,7 @@ public LegacyApplication visibility(VisibilityEnum visibility) {
* application.
*
* @return visibility
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VISIBILITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -492,7 +492,7 @@ public LegacyApplication editable(Boolean editable) {
* Indicates whether the application can be modified
*
* @return editable
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EDITABLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -517,7 +517,7 @@ public LegacyApplication link(Boolean link) {
* false for a legacy application
*
* @return link
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LINK)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -542,7 +542,7 @@ public LegacyApplication homePageId(String homePageId) {
* id of the application page used as the home page
*
* @return homePageId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_HOME_PAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -567,7 +567,7 @@ public LegacyApplication layoutId(String layoutId) {
* id of the layout used by the application
*
* @return layoutId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAYOUT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -592,7 +592,7 @@ public LegacyApplication themeId(String themeId) {
* id of the theme used by the application
*
* @return themeId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_THEME_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/License.java b/src/main/java/org/bonitasoft/web/client/model/License.java
index f79c7b12..5e35d355 100644
--- a/src/main/java/org/bonitasoft/web/client/model/License.java
+++ b/src/main/java/org/bonitasoft/web/client/model/License.java
@@ -32,7 +32,7 @@
License.JSON_PROPERTY_NB_CPU_CORES,
License.JSON_PROPERTY_EXPIRATION_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class License implements Serializable {
private static final long serialVersionUID = 1L;
@@ -62,7 +62,7 @@ public License owner(String owner) {
* Owner of the license
*
* @return owner
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_OWNER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -87,7 +87,7 @@ public License edition(String edition) {
* name of the Bonita edition enabled by the license (Community,...)
*
* @return edition
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EDITION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -112,7 +112,7 @@ public License nbCpuCores(String nbCpuCores) {
* number of CPUs
*
* @return nbCpuCores
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NB_CPU_CORES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -137,7 +137,7 @@ public License expirationDate(Long expirationDate) {
* License expiration date with format: `yyyy-MM-dd HH:mm:ss.SSS`
*
* @return expirationDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXPIRATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/MaintenanceDetails.java b/src/main/java/org/bonitasoft/web/client/model/MaintenanceDetails.java
index a836bdc9..445b78ff 100644
--- a/src/main/java/org/bonitasoft/web/client/model/MaintenanceDetails.java
+++ b/src/main/java/org/bonitasoft/web/client/model/MaintenanceDetails.java
@@ -33,7 +33,7 @@
MaintenanceDetails.JSON_PROPERTY_MAINTENANCE_MESSAGE,
MaintenanceDetails.JSON_PROPERTY_MAINTENANCE_MESSAGE_ACTIVE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class MaintenanceDetails implements Serializable {
private static final long serialVersionUID = 1L;
@@ -96,7 +96,7 @@ public MaintenanceDetails maintenanceState(MaintenanceStateEnum maintenanceState
* maintenance state
*
* @return maintenanceState
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MAINTENANCE_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -121,7 +121,7 @@ public MaintenanceDetails maintenanceMessage(String maintenanceMessage) {
* maintenance message
*
* @return maintenanceMessage
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MAINTENANCE_MESSAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -146,7 +146,7 @@ public MaintenanceDetails maintenanceMessageActive(Boolean maintenanceMessageAct
* is maintenance message active
*
* @return maintenanceMessageActive
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MAINTENANCE_MESSAGE_ACTIVE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ManualTask.java b/src/main/java/org/bonitasoft/web/client/model/ManualTask.java
index cb810d8f..1b0e4bf8 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ManualTask.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ManualTask.java
@@ -50,7 +50,7 @@
ManualTask.JSON_PROPERTY_ASSIGNED_DATE,
ManualTask.JSON_PROPERTY_IS_TERMINAL
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ManualTask implements Serializable {
private static final long serialVersionUID = 1L;
@@ -134,7 +134,7 @@ public ManualTask id(String id) {
* the task id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -159,7 +159,7 @@ public ManualTask type(String type) {
* the task type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -184,7 +184,7 @@ public ManualTask name(String name) {
* the task technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -209,7 +209,7 @@ public ManualTask displayName(String displayName) {
* the human readable task name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -234,7 +234,7 @@ public ManualTask description(String description) {
* the task description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -259,7 +259,7 @@ public ManualTask displayDescription(String displayDescription) {
* the human readable task description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -284,7 +284,7 @@ public ManualTask state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -309,7 +309,7 @@ public ManualTask reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task reached the current state for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -334,7 +334,7 @@ public ManualTask lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task was last updated for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -359,7 +359,7 @@ public ManualTask dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task is due for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -384,7 +384,7 @@ public ManualTask priority(String priority) {
* the priority (string) of the current task
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -409,7 +409,7 @@ public ManualTask processId(String processId) {
* the process definition id of the process instance which define this task
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -434,7 +434,7 @@ public ManualTask parentCaseId(String parentCaseId) {
* the immediate containing process instance id (case id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -459,7 +459,7 @@ public ManualTask parentTaskId(String parentTaskId) {
* the parent Task id
*
* @return parentTaskId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -485,7 +485,7 @@ public ManualTask rootCaseId(String rootCaseId) {
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -510,7 +510,7 @@ public ManualTask rootContainerId(String rootContainerId) {
* same as rootCaseId
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -535,7 +535,7 @@ public ManualTask executedBy(String executedBy) {
* the id of the user who performed this task. The task has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -560,7 +560,7 @@ public ManualTask executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the task when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -585,7 +585,7 @@ public ManualTask actorId(String actorId) {
* the id of the actor that can execute this task null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -610,7 +610,7 @@ public ManualTask assignedId(String assignedId) {
* the user id that this task is assigned to or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -635,7 +635,7 @@ public ManualTask assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -660,7 +660,7 @@ public ManualTask isTerminal(Boolean isTerminal) {
* True if the task is the last one in a flow
*
* @return isTerminal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ManualTaskCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ManualTaskCreateRequest.java
index 02150827..f2b6dc4b 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ManualTaskCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ManualTaskCreateRequest.java
@@ -35,7 +35,7 @@
ManualTaskCreateRequest.JSON_PROPERTY_DUE_DATE,
ManualTaskCreateRequest.JSON_PROPERTY_ASSIGNED_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ManualTaskCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -74,7 +74,7 @@ public ManualTaskCreateRequest parentTaskId(String parentTaskId) {
* The parent task ID
*
* @return parentTaskId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -99,7 +99,7 @@ public ManualTaskCreateRequest state(String state) {
* The task state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -124,7 +124,7 @@ public ManualTaskCreateRequest name(String name) {
* The task name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -149,7 +149,7 @@ public ManualTaskCreateRequest description(String description) {
* The task description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -174,7 +174,7 @@ public ManualTaskCreateRequest priority(String priority) {
* The task priority
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -199,7 +199,7 @@ public ManualTaskCreateRequest dueDate(String dueDate) {
* The task due date
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -224,7 +224,7 @@ public ManualTaskCreateRequest assignedId(String assignedId) {
* The id of the user assigned to the task
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ManualTaskUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ManualTaskUpdateRequest.java
index 51f6af98..9e283e73 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ManualTaskUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ManualTaskUpdateRequest.java
@@ -30,7 +30,7 @@
ManualTaskUpdateRequest.JSON_PROPERTY_STATE,
ManualTaskUpdateRequest.JSON_PROPERTY_EXECUTED_BY
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ManualTaskUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public ManualTaskUpdateRequest state(String state) {
* State of the ManualTask (completed)
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public ManualTaskUpdateRequest executedBy(String executedBy) {
* Id of the task executor
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Membership.java b/src/main/java/org/bonitasoft/web/client/model/Membership.java
index 0b168671..d9a60593 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Membership.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Membership.java
@@ -33,7 +33,7 @@
Membership.JSON_PROPERTY_GROUP_ID,
Membership.JSON_PROPERTY_USER_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Membership implements Serializable {
private static final long serialVersionUID = 1L;
@@ -66,7 +66,7 @@ public Membership assignedDate(String assignedDate) {
* creation date (format: `2014-12-31 15:17:24.736`)
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -91,7 +91,7 @@ public Membership roleId(Long roleId) {
* id of the role of this membership
*
* @return roleId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROLE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -116,7 +116,7 @@ public Membership assignedByUserId(String assignedByUserId) {
* id of the user who created the membership (-1 if the role was created by the tenant admin or by an organisation import)
*
* @return assignedByUserId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_BY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -141,7 +141,7 @@ public Membership groupId(String groupId) {
* id of the group of this membership
*
* @return groupId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_GROUP_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -166,7 +166,7 @@ public Membership userId(String userId) {
* id of the user in this membership
*
* @return userId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/MembershipCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/MembershipCreateRequest.java
index f3b2c82c..ad2c906c 100644
--- a/src/main/java/org/bonitasoft/web/client/model/MembershipCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/MembershipCreateRequest.java
@@ -31,7 +31,7 @@
MembershipCreateRequest.JSON_PROPERTY_GROUP_ID,
MembershipCreateRequest.JSON_PROPERTY_USER_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class MembershipCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -58,7 +58,7 @@ public MembershipCreateRequest roleId(String roleId) {
* id of the role of this membership
*
* @return roleId
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ROLE_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -83,7 +83,7 @@ public MembershipCreateRequest groupId(String groupId) {
* id of the group of this membership
*
* @return groupId
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_GROUP_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -108,7 +108,7 @@ public MembershipCreateRequest userId(String userId) {
* id of the user in this membership
*
* @return userId
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_USER_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Message.java b/src/main/java/org/bonitasoft/web/client/model/Message.java
index d8079049..dfb924c4 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Message.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Message.java
@@ -36,7 +36,7 @@
Message.JSON_PROPERTY_MESSAGE_CONTENT,
Message.JSON_PROPERTY_CORRELATIONS
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Message implements Serializable {
private static final long serialVersionUID = 1L;
@@ -69,7 +69,7 @@ public Message messageName(String messageName) {
* the message name
*
* @return messageName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MESSAGE_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -94,7 +94,7 @@ public Message targetProcess(String targetProcess) {
* the target process name
*
* @return targetProcess
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TARGET_PROCESS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -119,7 +119,7 @@ public Message targetFlowNode(String targetFlowNode) {
* the target FlowNode name
*
* @return targetFlowNode
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TARGET_FLOW_NODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -152,7 +152,7 @@ public Message putMessageContentItem(String key, MessageMessageContentValue mess
* the message content
*
* @return messageContent
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MESSAGE_CONTENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -185,7 +185,7 @@ public Message putCorrelationsItem(String key, MessageMessageContentValue correl
* the message correlations
*
* @return correlations
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CORRELATIONS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/MessageMessageContentValue.java b/src/main/java/org/bonitasoft/web/client/model/MessageMessageContentValue.java
index b4d74e8d..51ce1613 100644
--- a/src/main/java/org/bonitasoft/web/client/model/MessageMessageContentValue.java
+++ b/src/main/java/org/bonitasoft/web/client/model/MessageMessageContentValue.java
@@ -34,7 +34,7 @@
MessageMessageContentValue.JSON_PROPERTY_TYPE
})
@JsonTypeName("Message_messageContent_value")
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class MessageMessageContentValue implements Serializable {
private static final long serialVersionUID = 1L;
@@ -62,11 +62,11 @@ public enum TypeEnum {
UTIL_DATE("java.util.Date"),
- TIME_LOCALDATE("java.time.LocalDate"),
+ TIME_LOCAL_DATE("java.time.LocalDate"),
- TIME_LOCALDATETIME("java.time.LocalDateTime"),
+ TIME_LOCAL_DATE_TIME("java.time.LocalDateTime"),
- TIME_OFFSETDATETIME("java.time.OffsetDateTime");
+ TIME_OFFSET_DATE_TIME("java.time.OffsetDateTime");
private String value;
@@ -109,7 +109,7 @@ public MessageMessageContentValue value(String value) {
/**
* @return value
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -135,7 +135,7 @@ public MessageMessageContentValue type(TypeEnum type) {
* process (eg: a java.lang.Long is expected and the guessed type is a java.lang.Integer)
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Page.java b/src/main/java/org/bonitasoft/web/client/model/Page.java
index b5d05b5f..0ca9d8dd 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Page.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Page.java
@@ -38,7 +38,7 @@
Page.JSON_PROPERTY_LAST_UPDATE_DATE,
Page.JSON_PROPERTY_URL_TOKEN
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Page implements Serializable {
private static final long serialVersionUID = 1L;
@@ -86,7 +86,7 @@ public Page id(String id) {
* page id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -111,7 +111,7 @@ public Page creationDate(String creationDate) {
* date and time
*
* @return creationDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -136,7 +136,7 @@ public Page createdBy(String createdBy) {
* created by user id
*
* @return createdBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -161,7 +161,7 @@ public Page isProvided(Boolean isProvided) {
* is provided
*
* @return isProvided
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_PROVIDED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -186,7 +186,7 @@ public Page description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -211,7 +211,7 @@ public Page contentName(String contentName) {
* content name
*
* @return contentName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTENT_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -236,7 +236,7 @@ public Page displayName(String displayName) {
* custom page display name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -261,7 +261,7 @@ public Page updatedBy(String updatedBy) {
* updated by user id
*
* @return updatedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_UPDATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -286,7 +286,7 @@ public Page lastUpdateDate(String lastUpdateDate) {
* date and time
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -311,7 +311,7 @@ public Page urlToken(String urlToken) {
* custom page urlToken
*
* @return urlToken
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_URL_TOKEN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/PageCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/PageCreateRequest.java
index f1e77f02..a4b460d6 100644
--- a/src/main/java/org/bonitasoft/web/client/model/PageCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/PageCreateRequest.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
PageCreateRequest.JSON_PROPERTY_PAGE_ZIP
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class PageCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public PageCreateRequest pageZip(String pageZip) {
* Zip name as named in the temp folder after upload
*
* @return pageZip
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAGE_ZIP)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/PageUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/PageUpdateRequest.java
index 9846caf7..7d11c06c 100644
--- a/src/main/java/org/bonitasoft/web/client/model/PageUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/PageUpdateRequest.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
PageUpdateRequest.JSON_PROPERTY_PAGE_ZIP
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class PageUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public PageUpdateRequest pageZip(String pageZip) {
* pageZip as named in the temp folder after upload
*
* @return pageZip
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAGE_ZIP)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Platform.java b/src/main/java/org/bonitasoft/web/client/model/Platform.java
index 5e1ba244..d406d0db 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Platform.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Platform.java
@@ -36,7 +36,7 @@
Platform.JSON_PROPERTY_CREATED_BY,
Platform.JSON_PROPERTY_CREATED
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Platform implements Serializable {
private static final long serialVersionUID = 1L;
@@ -108,7 +108,7 @@ public Platform state(StateEnum state) {
* platform state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -133,7 +133,7 @@ public Platform version(String version) {
* the current version of the platform
*
* @return version
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -158,7 +158,7 @@ public Platform initialVersion(String initialVersion) {
* the version in which the platform was created
*
* @return initialVersion
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INITIAL_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -183,7 +183,7 @@ public Platform previousVersion(String previousVersion) {
* the previous version the platform was in or empty if there is none
*
* @return previousVersion
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PREVIOUS_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -208,7 +208,7 @@ public Platform createdBy(String createdBy) {
* the user name of the platform administrator
*
* @return createdBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -233,7 +233,7 @@ public Platform created(String created) {
* the creation date
*
* @return created
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/PlatformLicense.java b/src/main/java/org/bonitasoft/web/client/model/PlatformLicense.java
index 0d371cd6..b5b93cdd 100644
--- a/src/main/java/org/bonitasoft/web/client/model/PlatformLicense.java
+++ b/src/main/java/org/bonitasoft/web/client/model/PlatformLicense.java
@@ -39,7 +39,7 @@
PlatformLicense.JSON_PROPERTY_CASE_COUNTER_LIMIT,
PlatformLicense.JSON_PROPERTY_CASE_COUNTER
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class PlatformLicense implements Serializable {
private static final long serialVersionUID = 1L;
@@ -90,7 +90,7 @@ public PlatformLicense licenseStartDate(String licenseStartDate) {
* date with format `yyyy-MM-dd` - first day (included) of license file validity
*
* @return licenseStartDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LICENSE_START_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -115,7 +115,7 @@ public PlatformLicense duration(String duration) {
* number of days for license file validity
*
* @return duration
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DURATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -140,7 +140,7 @@ public PlatformLicense licenseExpirationDate(String licenseExpirationDate) {
* date with format `yyyy-MM-dd` - last day (included) of license file validity
*
* @return licenseExpirationDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LICENSE_EXPIRATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -165,7 +165,7 @@ public PlatformLicense numberOfCPUCores(String numberOfCPUCores) {
* number of CPUs
*
* @return numberOfCPUCores
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NUMBER_OF_C_P_U_CORES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -190,7 +190,7 @@ public PlatformLicense edition(String edition) {
* name of the Bonita edition enabled by the license
*
* @return edition
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EDITION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -215,7 +215,7 @@ public PlatformLicense licenseMode(String licenseMode) {
* available mode enabled by the license
*
* @return licenseMode
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LICENSE_MODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -241,7 +241,7 @@ public PlatformLicense requestKey(String requestKey) {
* present:
*
* @return requestKey
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REQUEST_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -266,7 +266,7 @@ public PlatformLicense subscriptionStartPeriod(String subscriptionStartPeriod) {
* date with format `yyyy-MM-dd` - first day (included) of current period for number of process instances provisioned
*
* @return subscriptionStartPeriod
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SUBSCRIPTION_START_PERIOD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -291,7 +291,7 @@ public PlatformLicense subscriptionEndPeriod(String subscriptionEndPeriod) {
* date with format `yyyy-MM-dd` - last day (included) of current period for number of process instances provisioned
*
* @return subscriptionEndPeriod
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SUBSCRIPTION_END_PERIOD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -316,7 +316,7 @@ public PlatformLicense caseCounterLimit(Long caseCounterLimit) {
* number of process instances provisioned for period between `subscriptionStartPeriod` and `subscriptionEndPeriod`
*
* @return caseCounterLimit
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CASE_COUNTER_LIMIT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -341,7 +341,7 @@ public PlatformLicense caseCounter(Long caseCounter) {
* number of consumed process instances for period between `subscriptionStartPeriod` and `subscriptionEndPeriod`
*
* @return caseCounter
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CASE_COUNTER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/PlatformUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/PlatformUpdateRequest.java
index 9c1b2823..90afd5c1 100644
--- a/src/main/java/org/bonitasoft/web/client/model/PlatformUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/PlatformUpdateRequest.java
@@ -31,7 +31,7 @@
@JsonPropertyOrder({
PlatformUpdateRequest.JSON_PROPERTY_STATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class PlatformUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -88,7 +88,7 @@ public PlatformUpdateRequest state(StateEnum state) {
* Platform state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessConnectorDependency.java b/src/main/java/org/bonitasoft/web/client/model/ProcessConnectorDependency.java
index fa6ebaee..b366b7da 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessConnectorDependency.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessConnectorDependency.java
@@ -32,7 +32,7 @@
ProcessConnectorDependency.JSON_PROPERTY_FILENAME,
ProcessConnectorDependency.JSON_PROPERTY_CONNECTOR_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessConnectorDependency implements Serializable {
private static final long serialVersionUID = 1L;
@@ -62,7 +62,7 @@ public ProcessConnectorDependency connectorVersion(String connectorVersion) {
* <connector version>
*
* @return connectorVersion
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONNECTOR_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -87,7 +87,7 @@ public ProcessConnectorDependency connectorProcessId(String connectorProcessId)
* <process id>
*
* @return connectorProcessId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONNECTOR_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -112,7 +112,7 @@ public ProcessConnectorDependency filename(String filename) {
* <filename representing the connector>
*
* @return filename
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILENAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -137,7 +137,7 @@ public ProcessConnectorDependency connectorName(String connectorName) {
* <connector name>
*
* @return connectorName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONNECTOR_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProcessCreateRequest.java
index 2e4eab39..0aa1099c 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessCreateRequest.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
ProcessCreateRequest.JSON_PROPERTY_FILEUPLOAD
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public ProcessCreateRequest fileupload(String fileupload) {
* the bar file to deploy (previously uploaded in tmp folder)
*
* @return fileupload
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILEUPLOAD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessDefinition.java b/src/main/java/org/bonitasoft/web/client/model/ProcessDefinition.java
index a9188c3d..cd0a1cd4 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessDefinition.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessDefinition.java
@@ -41,7 +41,7 @@
ProcessDefinition.JSON_PROPERTY_CONFIGURATION_STATE,
ProcessDefinition.JSON_PROPERTY_VERSION
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessDefinition implements Serializable {
private static final long serialVersionUID = 1L;
@@ -98,7 +98,7 @@ public ProcessDefinition id(String id) {
* the identifier of the process definition (long)
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -123,7 +123,7 @@ public ProcessDefinition icon(String icon) {
* icon path
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -148,7 +148,7 @@ public ProcessDefinition displayDescription(String displayDescription) {
* the human readable activity description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -173,7 +173,7 @@ public ProcessDefinition deploymentDate(String deploymentDate) {
* the date when the process definition was deployed
*
* @return deploymentDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DEPLOYMENT_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -198,7 +198,7 @@ public ProcessDefinition description(String description) {
* the process description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -223,7 +223,7 @@ public ProcessDefinition activationState(ActivationState activationState) {
* Get activationState
*
* @return activationState
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTIVATION_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -248,7 +248,7 @@ public ProcessDefinition name(String name) {
* the process name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -273,7 +273,7 @@ public ProcessDefinition deployedBy(String deployedBy) {
* the id of the user who deployed the process
*
* @return deployedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DEPLOYED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -298,7 +298,7 @@ public ProcessDefinition displayName(String displayName) {
* the human readable process description
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -323,7 +323,7 @@ public ProcessDefinition actorinitiatorid(String actorinitiatorid) {
* the id of the actor that can initiate process instances of the process
*
* @return actorinitiatorid
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTORINITIATORID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -348,7 +348,7 @@ public ProcessDefinition lastUpdateDate(String lastUpdateDate) {
* the date when the process definition was last updated
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -373,7 +373,7 @@ public ProcessDefinition configurationState(ConfigurationState configurationStat
* Get configurationState
*
* @return configurationState
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONFIGURATION_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -398,7 +398,7 @@ public ProcessDefinition version(String version) {
* the version of the process
*
* @return version
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInfo.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInfo.java
index d5b07dfd..fbe92b65 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInfo.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInfo.java
@@ -34,7 +34,7 @@
ProcessInfo.JSON_PROPERTY_PROCESS_DEFINITION_ID,
ProcessInfo.JSON_PROPERTY_FLOW_NODE_STATES_COUNTERS
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInfo implements Serializable {
private static final long serialVersionUID = 1L;
@@ -58,7 +58,7 @@ public ProcessInfo processDefinitionId(String processDefinitionId) {
* process identifier
*
* @return processDefinitionId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_DEFINITION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -93,7 +93,7 @@ public ProcessInfo putFlowNodeStatesCountersItem(String key,
* flow nodes counters
*
* @return flowNodeStatesCounters
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FLOW_NODE_STATES_COUNTERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInfoFlowNodeStatesCountersValue.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInfoFlowNodeStatesCountersValue.java
index b951b764..54cc6cd9 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInfoFlowNodeStatesCountersValue.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInfoFlowNodeStatesCountersValue.java
@@ -36,7 +36,7 @@
ProcessInfoFlowNodeStatesCountersValue.JSON_PROPERTY_COMPLETING
})
@JsonTypeName("ProcessInfo_flowNodeStatesCounters_value")
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInfoFlowNodeStatesCountersValue implements Serializable {
private static final long serialVersionUID = 1L;
@@ -72,7 +72,7 @@ public ProcessInfoFlowNodeStatesCountersValue ready(Long ready) {
* number of instance of the given Flow Node in ready state
*
* @return ready
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_READY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -97,7 +97,7 @@ public ProcessInfoFlowNodeStatesCountersValue failed(Long failed) {
* number of instance of the given Flow Node in failed state
*
* @return failed
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FAILED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -122,7 +122,7 @@ public ProcessInfoFlowNodeStatesCountersValue executing(Long executing) {
* number of instance of the given Flow Node in executing state
*
* @return executing
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -147,7 +147,7 @@ public ProcessInfoFlowNodeStatesCountersValue waiting(Long waiting) {
* number of instance of the given Flow Node in waiting state
*
* @return waiting
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_WAITING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -172,7 +172,7 @@ public ProcessInfoFlowNodeStatesCountersValue initializing(Long initializing) {
* number of instance of the given Flow Node in initializing state
*
* @return initializing
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INITIALIZING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -197,7 +197,7 @@ public ProcessInfoFlowNodeStatesCountersValue completing(Long completing) {
* number of instance of the given Flow Node in completing state
*
* @return completing
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_COMPLETING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstance.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstance.java
index 033f24fe..a4ac9ac3 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstance.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstance.java
@@ -51,7 +51,7 @@
ProcessInstance.JSON_PROPERTY_SEARCH_INDEX4_VALUE,
ProcessInstance.JSON_PROPERTY_SEARCH_INDEX5_VALUE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstance implements Serializable {
private static final long serialVersionUID = 1L;
@@ -182,7 +182,7 @@ public ProcessInstance id(String id) {
* the identifier of the ProcessInstance (Case)
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -207,7 +207,7 @@ public ProcessInstance endDate(String endDate) {
* the date set when the process instance is closed
*
* @return endDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_END_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -232,7 +232,7 @@ public ProcessInstance failedFlowNodes(String failedFlowNodes) {
* count of failed flow nodes if parameter n=failedFlowNodes is given
*
* @return failedFlowNodes
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FAILED_FLOW_NODES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -258,7 +258,7 @@ public ProcessInstance startedBySubstitute(String startedBySubstitute) {
* d=startedBySubstitute is given.
*
* @return startedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STARTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -283,7 +283,7 @@ public ProcessInstance start(String start) {
* the starting date of the case
*
* @return start
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_START)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -308,7 +308,7 @@ public ProcessInstance activeFlowNodes(String activeFlowNodes) {
* count of active flow nodes if parameter n=activeFlowNodes is given
*
* @return activeFlowNodes
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTIVE_FLOW_NODES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -333,7 +333,7 @@ public ProcessInstance state(StateEnum state) {
* state: an enum that represent the state of the process instances
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -358,7 +358,7 @@ public ProcessInstance rootCaseId(String rootCaseId) {
* the identifier of the container of the case
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -383,7 +383,7 @@ public ProcessInstance startedBy(String startedBy) {
* the identifier of the user who started the case
*
* @return startedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STARTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -408,7 +408,7 @@ public ProcessInstance processDefinitionId(String processDefinitionId) {
* the identifier of the process related of the case
*
* @return processDefinitionId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_DEFINITION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -433,7 +433,7 @@ public ProcessInstance lastUpdateDate(String lastUpdateDate) {
* the date of the last update done on the case
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -458,7 +458,7 @@ public ProcessInstance searchIndex1Label(String searchIndex1Label) {
* the 1st search index label (from 6.5, in Subscription editions only)
*
* @return searchIndex1Label
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX1_LABEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -483,7 +483,7 @@ public ProcessInstance searchIndex2Label(String searchIndex2Label) {
* the 2nd search index label (from 6.5, in Subscription editions only)
*
* @return searchIndex2Label
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX2_LABEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -508,7 +508,7 @@ public ProcessInstance searchIndex3Label(String searchIndex3Label) {
* the 3rd search index label (from 6.5, in Subscription editions only)
*
* @return searchIndex3Label
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX3_LABEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -533,7 +533,7 @@ public ProcessInstance searchIndex4Label(String searchIndex4Label) {
* the 4th search index label (from 6.5, in Subscription editions only)
*
* @return searchIndex4Label
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX4_LABEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -558,7 +558,7 @@ public ProcessInstance searchIndex5Label(String searchIndex5Label) {
* the 5th search index label (from 6.5, in Subscription editions only)
*
* @return searchIndex5Label
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX5_LABEL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -583,7 +583,7 @@ public ProcessInstance searchIndex1Value(String searchIndex1Value) {
* the 1st search index value (from 6.5, in Subscription editions only)
*
* @return searchIndex1Value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX1_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -608,7 +608,7 @@ public ProcessInstance searchIndex2Value(String searchIndex2Value) {
* the 2nd search index value (from 6.5, in Subscription editions only)
*
* @return searchIndex2Value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX2_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -633,7 +633,7 @@ public ProcessInstance searchIndex3Value(String searchIndex3Value) {
* the 3rd search index value (from 6.5, in Subscription editions only)
*
* @return searchIndex3Value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX3_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -658,7 +658,7 @@ public ProcessInstance searchIndex4Value(String searchIndex4Value) {
* the 4th search index value (from 6.5, in Subscription editions only)
*
* @return searchIndex4Value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX4_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -683,7 +683,7 @@ public ProcessInstance searchIndex5Value(String searchIndex5Value) {
* the 5th search index value (from 6.5, in Subscription editions only)
*
* @return searchIndex5Value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SEARCH_INDEX5_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceComment.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceComment.java
index 06aff765..7ca1b6a0 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceComment.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceComment.java
@@ -34,7 +34,7 @@
ProcessInstanceComment.JSON_PROPERTY_POST_DATE,
ProcessInstanceComment.JSON_PROPERTY_USER_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstanceComment implements Serializable {
private static final long serialVersionUID = 1L;
@@ -70,7 +70,7 @@ public ProcessInstanceComment id(String id) {
* the comment id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -95,7 +95,7 @@ public ProcessInstanceComment content(String content) {
* the comment content
*
* @return content
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -120,7 +120,7 @@ public ProcessInstanceComment tenantId(String tenantId) {
* the id of the tenant the comment is associated to
*
* @return tenantId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TENANT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -145,7 +145,7 @@ public ProcessInstanceComment processInstanceId(String processInstanceId) {
* the process instance (case) the comment is associated to
*
* @return processInstanceId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_INSTANCE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -170,7 +170,7 @@ public ProcessInstanceComment postDate(String postDate) {
* the comment creation date
*
* @return postDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_POST_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -195,7 +195,7 @@ public ProcessInstanceComment userId(String userId) {
* the user that created the comment
*
* @return userId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceCommentCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceCommentCreateRequest.java
index f00fd9d5..58c54e9c 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceCommentCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceCommentCreateRequest.java
@@ -30,7 +30,7 @@
ProcessInstanceCommentCreateRequest.JSON_PROPERTY_PROCESS_INSTANCE_ID,
ProcessInstanceCommentCreateRequest.JSON_PROPERTY_CONTENT
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstanceCommentCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public ProcessInstanceCommentCreateRequest processInstanceId(String processInsta
* the process instance (case) the comment is associated to
*
* @return processInstanceId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_INSTANCE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public ProcessInstanceCommentCreateRequest content(String content) {
* the comment content
*
* @return content
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceCreateRequest.java
index 01da1745..275e292a 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceCreateRequest.java
@@ -32,7 +32,7 @@
ProcessInstanceCreateRequest.JSON_PROPERTY_PROCESS_DEFINITION_ID,
ProcessInstanceCreateRequest.JSON_PROPERTY_VARIABLES
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstanceCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -56,7 +56,7 @@ public ProcessInstanceCreateRequest processDefinitionId(String processDefinition
* the process definition Id
*
* @return processDefinitionId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_DEFINITION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -89,7 +89,7 @@ public ProcessInstanceCreateRequest addVariablesItem(ProcessVariable variablesIt
* process variables initial values
*
* @return variables
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VARIABLES)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocument.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocument.java
index dba0aef0..dde6cdcf 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocument.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocument.java
@@ -42,7 +42,7 @@
ProcessInstanceDocument.JSON_PROPERTY_URL,
ProcessInstanceDocument.JSON_PROPERTY_VERSION
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstanceDocument implements Serializable {
private static final long serialVersionUID = 1L;
@@ -102,7 +102,7 @@ public ProcessInstanceDocument id(String id) {
* documentId
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -127,7 +127,7 @@ public ProcessInstanceDocument creationDate(String creationDate) {
* date and time
*
* @return creationDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -153,7 +153,7 @@ public ProcessInstanceDocument author(String author) {
*
* @return author
* @deprecated
- **/
+ */
@Deprecated
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_AUTHOR)
@@ -179,7 +179,7 @@ public ProcessInstanceDocument index(String index) {
* index in a list of documents, or -1 for a single document
*
* @return index
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INDEX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -204,7 +204,7 @@ public ProcessInstanceDocument contentMimetype(String contentMimetype) {
* MIME type
*
* @return contentMimetype
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTENT_MIMETYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -229,7 +229,7 @@ public ProcessInstanceDocument caseId(String caseId) {
* caseId
*
* @return caseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -254,7 +254,7 @@ public ProcessInstanceDocument contentStorageId(String contentStorageId) {
* storageId
*
* @return contentStorageId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONTENT_STORAGE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -280,7 +280,7 @@ public ProcessInstanceDocument isInternal(Boolean isInternal) {
* contains a reference to the content, not the content itself.
*
* @return isInternal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_INTERNAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -305,7 +305,7 @@ public ProcessInstanceDocument description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -330,7 +330,7 @@ public ProcessInstanceDocument name(String name) {
* name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -355,7 +355,7 @@ public ProcessInstanceDocument fileName(String fileName) {
* filename
*
* @return fileName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -380,7 +380,7 @@ public ProcessInstanceDocument submittedBy(String submittedBy) {
* submittorUserId
*
* @return submittedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SUBMITTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -405,7 +405,7 @@ public ProcessInstanceDocument url(String url) {
* urlForDownload
*
* @return url
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -430,7 +430,7 @@ public ProcessInstanceDocument version(String version) {
* version
*
* @return version
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocumentCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocumentCreateRequest.java
index cb2640d0..37fbec49 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocumentCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocumentCreateRequest.java
@@ -34,7 +34,7 @@
ProcessInstanceDocumentCreateRequest.JSON_PROPERTY_FILE_NAME,
ProcessInstanceDocumentCreateRequest.JSON_PROPERTY_DESCRIPTION
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstanceDocumentCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -70,7 +70,7 @@ public ProcessInstanceDocumentCreateRequest caseId(String caseId) {
* The process instance id
*
* @return caseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -95,7 +95,7 @@ public ProcessInstanceDocumentCreateRequest file(String file) {
* The local file name to upload from (as from the temp upload folder)
*
* @return file
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -120,7 +120,7 @@ public ProcessInstanceDocumentCreateRequest url(String url) {
* The remote url to upload from
*
* @return url
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -145,7 +145,7 @@ public ProcessInstanceDocumentCreateRequest name(String name) {
* The file display name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -170,7 +170,7 @@ public ProcessInstanceDocumentCreateRequest fileName(String fileName) {
* The target file name
*
* @return fileName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -195,7 +195,7 @@ public ProcessInstanceDocumentCreateRequest description(String description) {
* The document description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocumentUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocumentUpdateRequest.java
index dc79a64e..78004e47 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocumentUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceDocumentUpdateRequest.java
@@ -33,7 +33,7 @@
ProcessInstanceDocumentUpdateRequest.JSON_PROPERTY_FILE_NAME,
ProcessInstanceDocumentUpdateRequest.JSON_PROPERTY_DESCRIPTION
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstanceDocumentUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -66,7 +66,7 @@ public ProcessInstanceDocumentUpdateRequest file(String file) {
* The local file name to upload from (as from the temp upload folder)
*
* @return file
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -91,7 +91,7 @@ public ProcessInstanceDocumentUpdateRequest url(String url) {
* The remote url to upload from
*
* @return url
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -116,7 +116,7 @@ public ProcessInstanceDocumentUpdateRequest name(String name) {
* The file display name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -141,7 +141,7 @@ public ProcessInstanceDocumentUpdateRequest fileName(String fileName) {
* The target file name
*
* @return fileName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -166,7 +166,7 @@ public ProcessInstanceDocumentUpdateRequest description(String description) {
* The document description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceInfo.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceInfo.java
index 0faff9e1..6391496e 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceInfo.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceInfo.java
@@ -34,7 +34,7 @@
ProcessInstanceInfo.JSON_PROPERTY_ID,
ProcessInstanceInfo.JSON_PROPERTY_FLOW_NODE_STATES_COUNTERS
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstanceInfo implements Serializable {
private static final long serialVersionUID = 1L;
@@ -58,7 +58,7 @@ public ProcessInstanceInfo id(String id) {
* case identifier
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -93,7 +93,7 @@ public ProcessInstanceInfo putFlowNodeStatesCountersItem(String key,
* flow nodes counters
*
* @return flowNodeStatesCounters
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FLOW_NODE_STATES_COUNTERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceInfoFlowNodeStatesCountersValue.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceInfoFlowNodeStatesCountersValue.java
index 33271501..1747569b 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceInfoFlowNodeStatesCountersValue.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceInfoFlowNodeStatesCountersValue.java
@@ -40,7 +40,7 @@
ProcessInstanceInfoFlowNodeStatesCountersValue.JSON_PROPERTY_COMPLETING
})
@JsonTypeName("ProcessInstanceInfo_flowNodeStatesCounters_value")
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstanceInfoFlowNodeStatesCountersValue implements Serializable {
private static final long serialVersionUID = 1L;
@@ -88,7 +88,7 @@ public ProcessInstanceInfoFlowNodeStatesCountersValue completed(Long completed)
* number of instance of the given Flow Node in completed state
*
* @return completed
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_COMPLETED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -113,7 +113,7 @@ public ProcessInstanceInfoFlowNodeStatesCountersValue skipped(Long skipped) {
* number of instance of the given Flow Node in skipped state
*
* @return skipped
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SKIPPED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -138,7 +138,7 @@ public ProcessInstanceInfoFlowNodeStatesCountersValue cancelled(Long cancelled)
* number of instance of the given Flow Node in cancelled state
*
* @return cancelled
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CANCELLED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -163,7 +163,7 @@ public ProcessInstanceInfoFlowNodeStatesCountersValue aborted(Long aborted) {
* number of instance of the given Flow Node in aborted state
*
* @return aborted
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ABORTED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -188,7 +188,7 @@ public ProcessInstanceInfoFlowNodeStatesCountersValue ready(Long ready) {
* number of instance of the given Flow Node in ready state
*
* @return ready
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_READY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -213,7 +213,7 @@ public ProcessInstanceInfoFlowNodeStatesCountersValue failed(Long failed) {
* number of instance of the given Flow Node in failed state
*
* @return failed
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FAILED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -238,7 +238,7 @@ public ProcessInstanceInfoFlowNodeStatesCountersValue executing(Long executing)
* number of instance of the given Flow Node in executing state
*
* @return executing
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -263,7 +263,7 @@ public ProcessInstanceInfoFlowNodeStatesCountersValue waiting(Long waiting) {
* number of instance of the given Flow Node in waiting state
*
* @return waiting
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_WAITING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -288,7 +288,7 @@ public ProcessInstanceInfoFlowNodeStatesCountersValue initializing(Long initiali
* number of instance of the given Flow Node in initializing state
*
* @return initializing
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INITIALIZING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -313,7 +313,7 @@ public ProcessInstanceInfoFlowNodeStatesCountersValue completing(Long completing
* number of instance of the given Flow Node in completing state
*
* @return completing
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_COMPLETING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceVariable.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceVariable.java
index e35f4b0d..0ce416b3 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceVariable.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceVariable.java
@@ -33,7 +33,7 @@
ProcessInstanceVariable.JSON_PROPERTY_CASE_ID,
ProcessInstanceVariable.JSON_PROPERTY_TYPE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstanceVariable implements Serializable {
private static final long serialVersionUID = 1L;
@@ -66,7 +66,7 @@ public ProcessInstanceVariable description(String description) {
* Detailed description of the process instance variable, as set in the definition at design-time
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -91,7 +91,7 @@ public ProcessInstanceVariable name(String name) {
* name of the variable in the process instance
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -116,7 +116,7 @@ public ProcessInstanceVariable value(String value) {
* the current value of the process instance variable
*
* @return value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -141,7 +141,7 @@ public ProcessInstanceVariable caseId(String caseId) {
* ID of the process instance this variable belongs to
*
* @return caseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -166,7 +166,7 @@ public ProcessInstanceVariable type(String type) {
* the Java type of the variable
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceVariableUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceVariableUpdateRequest.java
index bb883c74..ab8558d5 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceVariableUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstanceVariableUpdateRequest.java
@@ -30,7 +30,7 @@
ProcessInstanceVariableUpdateRequest.JSON_PROPERTY_TYPE,
ProcessInstanceVariableUpdateRequest.JSON_PROPERTY_VALUE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstanceVariableUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public ProcessInstanceVariableUpdateRequest type(String type) {
* the java class name
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public ProcessInstanceVariableUpdateRequest value(String value) {
* the new value
*
* @return value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessInstantiationResponse.java b/src/main/java/org/bonitasoft/web/client/model/ProcessInstantiationResponse.java
index cccd4735..3bc5f7f0 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessInstantiationResponse.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessInstantiationResponse.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
ProcessInstantiationResponse.JSON_PROPERTY_CASE_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessInstantiationResponse implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public ProcessInstantiationResponse caseId(String caseId) {
* Get caseId
*
* @return caseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessParameter.java b/src/main/java/org/bonitasoft/web/client/model/ProcessParameter.java
index 8853fe7f..d06cc45e 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessParameter.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessParameter.java
@@ -35,7 +35,7 @@
ProcessParameter.JSON_PROPERTY_PROCESS_VERSION,
ProcessParameter.JSON_PROPERTY_TYPE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessParameter implements Serializable {
private static final long serialVersionUID = 1L;
@@ -74,7 +74,7 @@ public ProcessParameter processId(String processId) {
* the identifier of the process definition
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -99,7 +99,7 @@ public ProcessParameter processName(String processName) {
* the name of the related process
*
* @return processName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -124,7 +124,7 @@ public ProcessParameter description(String description) {
* the description of the parameter
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -149,7 +149,7 @@ public ProcessParameter name(String name) {
* the name of the parameter
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -174,7 +174,7 @@ public ProcessParameter value(String value) {
* the value of the parameter
*
* @return value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -199,7 +199,7 @@ public ProcessParameter processVersion(String processVersion) {
* the version of the process
*
* @return processVersion
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -224,7 +224,7 @@ public ProcessParameter type(String type) {
* the type of the parameter
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessParameterUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProcessParameterUpdateRequest.java
index 4646ab98..48cbb17b 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessParameterUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessParameterUpdateRequest.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
ProcessParameterUpdateRequest.JSON_PROPERTY_VALUE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessParameterUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public ProcessParameterUpdateRequest value(String value) {
* value of the Process Parameter
*
* @return value
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessResolutionProblem.java b/src/main/java/org/bonitasoft/web/client/model/ProcessResolutionProblem.java
index bdd147cf..c484339a 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessResolutionProblem.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessResolutionProblem.java
@@ -32,7 +32,7 @@
ProcessResolutionProblem.JSON_PROPERTY_RESOURCE_ID,
ProcessResolutionProblem.JSON_PROPERTY_TARGET_TYPE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessResolutionProblem implements Serializable {
private static final long serialVersionUID = 1L;
@@ -59,7 +59,7 @@ public ProcessResolutionProblem message(String message) {
* resolution problem
*
* @return message
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MESSAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -84,7 +84,7 @@ public ProcessResolutionProblem resourceId(String resourceId) {
* id of the unresolved resource
*
* @return resourceId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RESOURCE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -109,7 +109,7 @@ public ProcessResolutionProblem targetType(String targetType) {
* the type of the unresolved resource (parameter, actor, or connector)
*
* @return targetType
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TARGET_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessSupervisor.java b/src/main/java/org/bonitasoft/web/client/model/ProcessSupervisor.java
index 1a6930bd..a68d875c 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessSupervisor.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessSupervisor.java
@@ -34,7 +34,7 @@
ProcessSupervisor.JSON_PROPERTY_GROUP_ID,
ProcessSupervisor.JSON_PROPERTY_USER_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessSupervisor implements Serializable {
private static final long serialVersionUID = 1L;
@@ -64,7 +64,7 @@ public ProcessSupervisor processId(String processId) {
* Id of the process
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -89,7 +89,7 @@ public ProcessSupervisor roleId(String roleId) {
* Id of role, or -1 if the supervisor type is not role or membership
*
* @return roleId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROLE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -114,7 +114,7 @@ public ProcessSupervisor groupId(String groupId) {
* Id of group, or -1 if the supervisor type is not group or membership
*
* @return groupId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_GROUP_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -139,7 +139,7 @@ public ProcessSupervisor userId(String userId) {
* Id of user, or -1 if the supervisor type is not user
*
* @return userId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProcessUpdateRequest.java
index ef5c466c..daf090c8 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessUpdateRequest.java
@@ -31,7 +31,7 @@
ProcessUpdateRequest.JSON_PROPERTY_DISPLAY_NAME,
ProcessUpdateRequest.JSON_PROPERTY_ACTIVATION_STATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -58,7 +58,7 @@ public ProcessUpdateRequest displaydescription(String displaydescription) {
* description of the Process
*
* @return displaydescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAYDESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -83,7 +83,7 @@ public ProcessUpdateRequest displayName(String displayName) {
* display name of the Process
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -108,7 +108,7 @@ public ProcessUpdateRequest activationState(ActivationState activationState) {
* Get activationState
*
* @return activationState
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTIVATION_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProcessVariable.java b/src/main/java/org/bonitasoft/web/client/model/ProcessVariable.java
index e47486e5..d4003cc9 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProcessVariable.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProcessVariable.java
@@ -33,7 +33,7 @@
@JsonPropertyOrder({
ProcessVariable.JSON_PROPERTY_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProcessVariable extends HashMap implements Serializable {
private static final long serialVersionUID = 1L;
@@ -55,7 +55,7 @@ public ProcessVariable name(String name) {
* variable name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProfessionalContactData.java b/src/main/java/org/bonitasoft/web/client/model/ProfessionalContactData.java
index f7091353..1ea6a60e 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProfessionalContactData.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProfessionalContactData.java
@@ -41,7 +41,7 @@
ProfessionalContactData.JSON_PROPERTY_ROOM,
ProfessionalContactData.JSON_PROPERTY_EMAIL
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProfessionalContactData implements Serializable {
private static final long serialVersionUID = 1L;
@@ -98,7 +98,7 @@ public ProfessionalContactData id(String id) {
* user ID
*
* @return id
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -123,7 +123,7 @@ public ProfessionalContactData faxNumber(String faxNumber) {
* fax number
*
* @return faxNumber
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FAX_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -148,7 +148,7 @@ public ProfessionalContactData building(String building) {
* building
*
* @return building
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_BUILDING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -173,7 +173,7 @@ public ProfessionalContactData phoneNumber(String phoneNumber) {
* phone number
*
* @return phoneNumber
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PHONE_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -198,7 +198,7 @@ public ProfessionalContactData website(String website) {
* website
*
* @return website
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_WEBSITE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -223,7 +223,7 @@ public ProfessionalContactData zipcode(String zipcode) {
* zipcode
*
* @return zipcode
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ZIPCODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -248,7 +248,7 @@ public ProfessionalContactData state(String state) {
* state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -273,7 +273,7 @@ public ProfessionalContactData city(String city) {
* city
*
* @return city
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -298,7 +298,7 @@ public ProfessionalContactData country(String country) {
* country
*
* @return country
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_COUNTRY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -323,7 +323,7 @@ public ProfessionalContactData mobileNumber(String mobileNumber) {
* mobile phone number
*
* @return mobileNumber
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MOBILE_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -348,7 +348,7 @@ public ProfessionalContactData address(String address) {
* address
*
* @return address
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ADDRESS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -373,7 +373,7 @@ public ProfessionalContactData room(String room) {
* room
*
* @return room
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -398,7 +398,7 @@ public ProfessionalContactData email(String email) {
* email
*
* @return email
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EMAIL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Profile.java b/src/main/java/org/bonitasoft/web/client/model/Profile.java
index dda31277..713f6dad 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Profile.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Profile.java
@@ -37,7 +37,7 @@
Profile.JSON_PROPERTY_LAST_UPDATE_DATE,
Profile.JSON_PROPERTY_UPDATED_BY
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Profile implements Serializable {
private static final long serialVersionUID = 1L;
@@ -82,7 +82,7 @@ public Profile id(String id) {
* profile id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -107,7 +107,7 @@ public Profile creationDate(String creationDate) {
* date and time of profile creation
*
* @return creationDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -132,7 +132,7 @@ public Profile icon(String icon) {
* icon used in the portal to represent the profile
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -157,7 +157,7 @@ public Profile createdBy(String createdBy) {
* id of the uer who created the profile
*
* @return createdBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -182,7 +182,7 @@ public Profile description(String description) {
* a description of the profile
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -207,7 +207,7 @@ public Profile name(String name) {
* profile name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -232,7 +232,7 @@ public Profile isdefault(Boolean isdefault) {
* true | false
*
* @return isdefault
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ISDEFAULT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -257,7 +257,7 @@ public Profile lastUpdateDate(String lastUpdateDate) {
* date and time of the last update to the profile
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -282,7 +282,7 @@ public Profile updatedBy(String updatedBy) {
* the id of the user who last updated the profile
*
* @return updatedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_UPDATED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProfileCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProfileCreateRequest.java
index 802764ba..ce2bb856 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProfileCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProfileCreateRequest.java
@@ -30,7 +30,7 @@
ProfileCreateRequest.JSON_PROPERTY_DESCRIPTION,
ProfileCreateRequest.JSON_PROPERTY_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProfileCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public ProfileCreateRequest description(String description) {
* a description of the profile
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public ProfileCreateRequest name(String name) {
* profile name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProfileEntry.java b/src/main/java/org/bonitasoft/web/client/model/ProfileEntry.java
index 2d20c5c2..b53244e2 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProfileEntry.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProfileEntry.java
@@ -38,7 +38,7 @@
ProfileEntry.JSON_PROPERTY_IS_CUSTOM,
ProfileEntry.JSON_PROPERTY_PARENT_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProfileEntry implements Serializable {
private static final long serialVersionUID = 1L;
@@ -86,7 +86,7 @@ public ProfileEntry id(String id) {
* profileEntry id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -111,7 +111,7 @@ public ProfileEntry icon(String icon) {
* icon used in the portal to represent a profileEntry
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -136,7 +136,7 @@ public ProfileEntry index(String index) {
* position in a menu
*
* @return index
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INDEX)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -161,7 +161,7 @@ public ProfileEntry profileId(String profileId) {
* id of the profile that contains this profileEntry
*
* @return profileId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROFILE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -186,7 +186,7 @@ public ProfileEntry page(String page) {
* pageToken (menu name or menu item name) used in a portal menu to identify the page associated with the profileEntry
*
* @return page
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -211,7 +211,7 @@ public ProfileEntry description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -236,7 +236,7 @@ public ProfileEntry name(String name) {
* name of the profileEntry
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -261,7 +261,7 @@ public ProfileEntry type(String type) {
* link (if menu item) | folder (if menu)
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -286,7 +286,7 @@ public ProfileEntry isCustom(Boolean isCustom) {
* true | false
*
* @return isCustom
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_CUSTOM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -311,7 +311,7 @@ public ProfileEntry parentId(String parentId) {
* id or parent profileEntry if in a folder
*
* @return parentId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProfileEntryCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProfileEntryCreateRequest.java
index 23adde91..1de8087c 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProfileEntryCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProfileEntryCreateRequest.java
@@ -35,7 +35,7 @@
ProfileEntryCreateRequest.JSON_PROPERTY_IS_CUSTOM,
ProfileEntryCreateRequest.JSON_PROPERTY_PARENT_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProfileEntryCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -74,7 +74,7 @@ public ProfileEntryCreateRequest profileId(String profileId) {
* id of the profile that contains this profileEntry
*
* @return profileId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROFILE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -99,7 +99,7 @@ public ProfileEntryCreateRequest page(String page) {
* pageToken (menu name or menu item name) used in a portal menu to identify the page associated with the profileEntry
*
* @return page
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -124,7 +124,7 @@ public ProfileEntryCreateRequest description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -149,7 +149,7 @@ public ProfileEntryCreateRequest name(String name) {
* name of the profileEntry
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -174,7 +174,7 @@ public ProfileEntryCreateRequest type(String type) {
* link (if menu item) | folder (if menu)
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -199,7 +199,7 @@ public ProfileEntryCreateRequest isCustom(Boolean isCustom) {
* true | false
*
* @return isCustom
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_CUSTOM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -224,7 +224,7 @@ public ProfileEntryCreateRequest parentId(String parentId) {
* id or parent profileEntry if in a folder
*
* @return parentId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProfileEntryUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProfileEntryUpdateRequest.java
index 097d3204..afaa20e2 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProfileEntryUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProfileEntryUpdateRequest.java
@@ -35,7 +35,7 @@
ProfileEntryUpdateRequest.JSON_PROPERTY_IS_CUSTOM,
ProfileEntryUpdateRequest.JSON_PROPERTY_PARENT_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProfileEntryUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -74,7 +74,7 @@ public ProfileEntryUpdateRequest profileId(String profileId) {
* id of the profile that contains this profileEntry
*
* @return profileId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROFILE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -99,7 +99,7 @@ public ProfileEntryUpdateRequest page(String page) {
* pageToken (menu name or menu item name) used in a portal menu to identify the page associated with the profileEntry
*
* @return page
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -124,7 +124,7 @@ public ProfileEntryUpdateRequest description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -149,7 +149,7 @@ public ProfileEntryUpdateRequest name(String name) {
* name of the profileEntry
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -174,7 +174,7 @@ public ProfileEntryUpdateRequest type(String type) {
* link (if menu item) | folder (if menu)
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -199,7 +199,7 @@ public ProfileEntryUpdateRequest isCustom(Boolean isCustom) {
* true | false
*
* @return isCustom
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_CUSTOM)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -224,7 +224,7 @@ public ProfileEntryUpdateRequest parentId(String parentId) {
* id or parent profileEntry if in a folder
*
* @return parentId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProfileMember.java b/src/main/java/org/bonitasoft/web/client/model/ProfileMember.java
index 2892310b..2ae93ad8 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProfileMember.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProfileMember.java
@@ -33,7 +33,7 @@
ProfileMember.JSON_PROPERTY_GROUP_ID,
ProfileMember.JSON_PROPERTY_USER_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProfileMember implements Serializable {
private static final long serialVersionUID = 1L;
@@ -66,7 +66,7 @@ public ProfileMember id(String id) {
* profile member id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -91,7 +91,7 @@ public ProfileMember profileId(String profileId) {
* id of the profile for this mapping
*
* @return profileId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROFILE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -116,7 +116,7 @@ public ProfileMember roleId(String roleId) {
* id of role, or -1 if the member type is not role
*
* @return roleId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROLE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -141,7 +141,7 @@ public ProfileMember groupId(String groupId) {
* id of group, or -1 if the member type is not group
*
* @return groupId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_GROUP_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -166,7 +166,7 @@ public ProfileMember userId(String userId) {
* id of user, or -1 if the member type is not user
*
* @return userId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProfileMemberCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProfileMemberCreateRequest.java
index 4cbc5649..50e57a64 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProfileMemberCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProfileMemberCreateRequest.java
@@ -35,7 +35,7 @@
ProfileMemberCreateRequest.JSON_PROPERTY_USER_ID,
ProfileMemberCreateRequest.JSON_PROPERTY_MEMBER_TYPE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProfileMemberCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -106,7 +106,7 @@ public ProfileMemberCreateRequest profileId(String profileId) {
* id of the profile for this mapping
*
* @return profileId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROFILE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -131,7 +131,7 @@ public ProfileMemberCreateRequest roleId(String roleId) {
* id of role, or -1 if the member type is not role
*
* @return roleId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROLE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -156,7 +156,7 @@ public ProfileMemberCreateRequest groupId(String groupId) {
* id of group, or -1 if the member type is not group
*
* @return groupId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_GROUP_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -181,7 +181,7 @@ public ProfileMemberCreateRequest userId(String userId) {
* id of user, or -1 if the member type is not user
*
* @return userId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -206,7 +206,7 @@ public ProfileMemberCreateRequest memberType(MemberTypeEnum memberType) {
* member type
*
* @return memberType
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MEMBER_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ProfileUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ProfileUpdateRequest.java
index 96b666a4..5b4a31fe 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ProfileUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ProfileUpdateRequest.java
@@ -30,7 +30,7 @@
ProfileUpdateRequest.JSON_PROPERTY_DESCRIPTION,
ProfileUpdateRequest.JSON_PROPERTY_DISPLAY_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ProfileUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public ProfileUpdateRequest description(String description) {
* description of the Profile
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public ProfileUpdateRequest displayName(String displayName) {
* display name of the Profile
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Role.java b/src/main/java/org/bonitasoft/web/client/model/Role.java
index f1b3cd0b..0b91a405 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Role.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Role.java
@@ -36,7 +36,7 @@
Role.JSON_PROPERTY_CREATED_BY_USER_ID,
Role.JSON_PROPERTY_LAST_UPDATE_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Role implements Serializable {
private static final long serialVersionUID = 1L;
@@ -78,7 +78,7 @@ public Role id(String id) {
* role ID
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -103,7 +103,7 @@ public Role name(String name) {
* name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -128,7 +128,7 @@ public Role displayName(String displayName) {
* display name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -153,7 +153,7 @@ public Role description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -178,7 +178,7 @@ public Role icon(String icon) {
* icon path
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -203,7 +203,7 @@ public Role creationDate(String creationDate) {
* creation date (format: `2014-12-31 15:17:24.736`)
*
* @return creationDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -228,7 +228,7 @@ public Role createdByUserId(String createdByUserId) {
* Id of the user who created the role (-1 if the role was created by the tenant admin or by an organisation import)
*
* @return createdByUserId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_BY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -253,7 +253,7 @@ public Role lastUpdateDate(String lastUpdateDate) {
* last update date (format: `2014-12-31 15:17:24.736`)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/RoleCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/RoleCreateRequest.java
index 55907530..8bdb7b89 100644
--- a/src/main/java/org/bonitasoft/web/client/model/RoleCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/RoleCreateRequest.java
@@ -32,7 +32,7 @@
RoleCreateRequest.JSON_PROPERTY_DESCRIPTION,
RoleCreateRequest.JSON_PROPERTY_ICON
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class RoleCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -62,7 +62,7 @@ public RoleCreateRequest name(String name) {
* name
*
* @return name
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -87,7 +87,7 @@ public RoleCreateRequest displayName(String displayName) {
* display name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -112,7 +112,7 @@ public RoleCreateRequest description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -137,7 +137,7 @@ public RoleCreateRequest icon(String icon) {
* icon path
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/RoleUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/RoleUpdateRequest.java
index 5db94f0c..71c13322 100644
--- a/src/main/java/org/bonitasoft/web/client/model/RoleUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/RoleUpdateRequest.java
@@ -32,7 +32,7 @@
RoleUpdateRequest.JSON_PROPERTY_DESCRIPTION,
RoleUpdateRequest.JSON_PROPERTY_ICON
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class RoleUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -62,7 +62,7 @@ public RoleUpdateRequest name(String name) {
* name
*
* @return name
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -87,7 +87,7 @@ public RoleUpdateRequest displayName(String displayName) {
* display name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -112,7 +112,7 @@ public RoleUpdateRequest description(String description) {
* description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -137,7 +137,7 @@ public RoleUpdateRequest icon(String icon) {
* icon path
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Session.java b/src/main/java/org/bonitasoft/web/client/model/Session.java
index 7058cdaf..d4741aee 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Session.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Session.java
@@ -36,7 +36,7 @@
Session.JSON_PROPERTY_VERSION,
Session.JSON_PROPERTY_COPYRIGHT
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Session implements Serializable {
private static final long serialVersionUID = 1L;
@@ -78,7 +78,7 @@ public Session userId(String userId) {
* user id
*
* @return userId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -103,7 +103,7 @@ public Session userName(String userName) {
* user name
*
* @return userName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -128,7 +128,7 @@ public Session sessionId(String sessionId) {
* the session id
*
* @return sessionId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SESSION_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -153,7 +153,7 @@ public Session conf(String conf) {
* conf
*
* @return conf
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CONF)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -178,7 +178,7 @@ public Session isTechnicalUser(Boolean isTechnicalUser) {
* is technical user: true|false
*
* @return isTechnicalUser
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TECHNICAL_USER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -203,7 +203,7 @@ public Session isGuestUser(Boolean isGuestUser) {
* is technical user: true|false
*
* @return isGuestUser
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_GUEST_USER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -228,7 +228,7 @@ public Session version(String version) {
* bonita version
*
* @return version
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -253,7 +253,7 @@ public Session copyright(String copyright) {
* bonita copyright
*
* @return copyright
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_COPYRIGHT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Signal.java b/src/main/java/org/bonitasoft/web/client/model/Signal.java
index d5b5cb73..382712a7 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Signal.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Signal.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
Signal.JSON_PROPERTY_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Signal implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public Signal name(String name) {
* the signal name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/SystemTenant.java b/src/main/java/org/bonitasoft/web/client/model/SystemTenant.java
index 75cc863a..ba21255f 100644
--- a/src/main/java/org/bonitasoft/web/client/model/SystemTenant.java
+++ b/src/main/java/org/bonitasoft/web/client/model/SystemTenant.java
@@ -30,7 +30,7 @@
SystemTenant.JSON_PROPERTY_ID,
SystemTenant.JSON_PROPERTY_PAUSED
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class SystemTenant implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public SystemTenant id(String id) {
* system tenant id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public SystemTenant paused(Boolean paused) {
* whether the system tenant is paused or not
*
* @return paused
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAUSED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Task.java b/src/main/java/org/bonitasoft/web/client/model/Task.java
index 703f685e..46dc4728 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Task.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Task.java
@@ -50,7 +50,7 @@
Task.JSON_PROPERTY_ASSIGNED_DATE,
Task.JSON_PROPERTY_IS_TERMINAL
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Task implements Serializable {
private static final long serialVersionUID = 1L;
@@ -134,7 +134,7 @@ public Task id(String id) {
* the task id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -159,7 +159,7 @@ public Task type(String type) {
* the task type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -184,7 +184,7 @@ public Task name(String name) {
* the task technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -209,7 +209,7 @@ public Task displayName(String displayName) {
* the human readable task name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -234,7 +234,7 @@ public Task description(String description) {
* the task description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -259,7 +259,7 @@ public Task displayDescription(String displayDescription) {
* the human readable task description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -284,7 +284,7 @@ public Task state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -309,7 +309,7 @@ public Task reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task reached the current state for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -334,7 +334,7 @@ public Task lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task was last updated for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -359,7 +359,7 @@ public Task dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task is due for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -384,7 +384,7 @@ public Task priority(String priority) {
* the priority (string) of the current task
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -409,7 +409,7 @@ public Task processId(String processId) {
* the process definition id of the process instance which define this task
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -434,7 +434,7 @@ public Task parentCaseId(String parentCaseId) {
* the immediate containing process instance id (case id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -459,7 +459,7 @@ public Task parentTaskId(String parentTaskId) {
* the parent Task id
*
* @return parentTaskId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -485,7 +485,7 @@ public Task rootCaseId(String rootCaseId) {
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -510,7 +510,7 @@ public Task rootContainerId(String rootContainerId) {
* same as rootCaseId
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -535,7 +535,7 @@ public Task executedBy(String executedBy) {
* the id of the user who performed this task. The task has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -560,7 +560,7 @@ public Task executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the task when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -585,7 +585,7 @@ public Task actorId(String actorId) {
* the id of the actor that can execute this task null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -610,7 +610,7 @@ public Task assignedId(String assignedId) {
* the user id that this task is assigned to or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -635,7 +635,7 @@ public Task assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -660,7 +660,7 @@ public Task isTerminal(Boolean isTerminal) {
* True if the task is the last one in a flow
*
* @return isTerminal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/Tenant.java b/src/main/java/org/bonitasoft/web/client/model/Tenant.java
index f4fea257..2ac50626 100644
--- a/src/main/java/org/bonitasoft/web/client/model/Tenant.java
+++ b/src/main/java/org/bonitasoft/web/client/model/Tenant.java
@@ -41,7 +41,7 @@
Tenant.JSON_PROPERTY_PASSWORD,
Tenant.JSON_PROPERTY_STATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class Tenant implements Serializable {
private static final long serialVersionUID = 1L;
@@ -119,7 +119,7 @@ public Tenant id(String id) {
* id of the tenant
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -144,7 +144,7 @@ public Tenant creation(String creation) {
* the creation date
*
* @return creation
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -169,7 +169,7 @@ public Tenant icon(String icon) {
* the path of the icon
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -194,7 +194,7 @@ public Tenant name(String name) {
* the name of the tenant
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -219,7 +219,7 @@ public Tenant description(String description) {
* the description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -244,7 +244,7 @@ public Tenant username(String username) {
* the username
*
* @return username
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USERNAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -269,7 +269,7 @@ public Tenant password(String password) {
* the password
*
* @return password
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PASSWORD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -294,7 +294,7 @@ public Tenant state(StateEnum state) {
* the tenant state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/TenantCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/TenantCreateRequest.java
index 357f402f..3443d847 100644
--- a/src/main/java/org/bonitasoft/web/client/model/TenantCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/TenantCreateRequest.java
@@ -35,7 +35,7 @@
TenantCreateRequest.JSON_PROPERTY_USERNAME,
TenantCreateRequest.JSON_PROPERTY_PASSWORD
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class TenantCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -65,7 +65,7 @@ public TenantCreateRequest name(String name) {
* the name of the tenant
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -90,7 +90,7 @@ public TenantCreateRequest description(String description) {
* the description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -115,7 +115,7 @@ public TenantCreateRequest username(String username) {
* the username
*
* @return username
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USERNAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -140,7 +140,7 @@ public TenantCreateRequest password(String password) {
* the password
*
* @return password
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PASSWORD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/TenantPauseRequest.java b/src/main/java/org/bonitasoft/web/client/model/TenantPauseRequest.java
index de1294ba..0f5e2e5a 100644
--- a/src/main/java/org/bonitasoft/web/client/model/TenantPauseRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/TenantPauseRequest.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
TenantPauseRequest.JSON_PROPERTY_PAUSED
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class TenantPauseRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public TenantPauseRequest paused(String paused) {
* wether the system tenant should be paused or not
*
* @return paused
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PAUSED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/TenantUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/TenantUpdateRequest.java
index 3c064df7..037cfa0d 100644
--- a/src/main/java/org/bonitasoft/web/client/model/TenantUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/TenantUpdateRequest.java
@@ -39,7 +39,7 @@
TenantUpdateRequest.JSON_PROPERTY_ICON,
TenantUpdateRequest.JSON_PROPERTY_STATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class TenantUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -111,7 +111,7 @@ public TenantUpdateRequest name(String name) {
* the name of the tenant
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -136,7 +136,7 @@ public TenantUpdateRequest description(String description) {
* the description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -161,7 +161,7 @@ public TenantUpdateRequest username(String username) {
* the username
*
* @return username
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USERNAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -186,7 +186,7 @@ public TenantUpdateRequest password(String password) {
* the password
*
* @return password
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PASSWORD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -211,7 +211,7 @@ public TenantUpdateRequest icon(String icon) {
* the path of the icon
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -236,7 +236,7 @@ public TenantUpdateRequest state(StateEnum state) {
* the tenant state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ThemeCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/ThemeCreateRequest.java
index 863676d6..8bb04e9e 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ThemeCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ThemeCreateRequest.java
@@ -35,7 +35,7 @@
ThemeCreateRequest.JSON_PROPERTY_TYPE,
ThemeCreateRequest.JSON_PROPERTY_ZIP_FILE_PATHPORTAL
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ThemeCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -95,7 +95,7 @@ public ThemeCreateRequest type(TypeEnum type) {
* theme type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -120,7 +120,7 @@ public ThemeCreateRequest zipFilePathportal(String zipFilePathportal) {
* tmp zip file Path as uploaded to portal
*
* @return zipFilePathportal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ZIP_FILE_PATHPORTAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/ThemeRestoreRequest.java b/src/main/java/org/bonitasoft/web/client/model/ThemeRestoreRequest.java
index 2854d98f..136189f4 100644
--- a/src/main/java/org/bonitasoft/web/client/model/ThemeRestoreRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/ThemeRestoreRequest.java
@@ -34,7 +34,7 @@
@JsonPropertyOrder({
ThemeRestoreRequest.JSON_PROPERTY_TYPE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ThemeRestoreRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -91,7 +91,7 @@ public ThemeRestoreRequest type(TypeEnum type) {
* theme type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/TimerEventTrigger.java b/src/main/java/org/bonitasoft/web/client/model/TimerEventTrigger.java
index c6811d49..93fe4d37 100644
--- a/src/main/java/org/bonitasoft/web/client/model/TimerEventTrigger.java
+++ b/src/main/java/org/bonitasoft/web/client/model/TimerEventTrigger.java
@@ -34,7 +34,7 @@
TimerEventTrigger.JSON_PROPERTY_EXECUTION_DATE,
TimerEventTrigger.JSON_PROPERTY_EVENT_INSTANCE_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class TimerEventTrigger implements Serializable {
private static final long serialVersionUID = 1L;
@@ -70,7 +70,7 @@ public TimerEventTrigger id(String id) {
* the ID of the timer returned
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -95,7 +95,7 @@ public TimerEventTrigger idString(String idString) {
* the ID of the timer returned
*
* @return idString
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID_STRING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -120,7 +120,7 @@ public TimerEventTrigger eventInstanceId(String eventInstanceId) {
* the ID of the event instance to which this trigger is related
*
* @return eventInstanceId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EVENT_INSTANCE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -145,7 +145,7 @@ public TimerEventTrigger eventInstanceIdString(String eventInstanceIdString) {
* the ID of the event instance to which this trigger is related
*
* @return eventInstanceIdString
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EVENT_INSTANCE_ID_STRING)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -170,7 +170,7 @@ public TimerEventTrigger executionDate(String executionDate) {
* the long value of the next execution date (number of milliseconds from January 1st, 1970 00:00:00)
*
* @return executionDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -195,7 +195,7 @@ public TimerEventTrigger eventInstanceName(String eventInstanceName) {
* the name of the event instance to which this trigger is related
*
* @return eventInstanceName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EVENT_INSTANCE_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/TimerEventTriggerUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/TimerEventTriggerUpdateRequest.java
index ea43ef3e..c96f7b7b 100644
--- a/src/main/java/org/bonitasoft/web/client/model/TimerEventTriggerUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/TimerEventTriggerUpdateRequest.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
TimerEventTriggerUpdateRequest.JSON_PROPERTY_EXECUTION_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class TimerEventTriggerUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public TimerEventTriggerUpdateRequest executionDate(Long executionDate) {
* executionDate of the TimerEventTrigger
*
* @return executionDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/TimerEventTriggerUpdateResponse.java b/src/main/java/org/bonitasoft/web/client/model/TimerEventTriggerUpdateResponse.java
index 1daf4b7b..9c338c41 100644
--- a/src/main/java/org/bonitasoft/web/client/model/TimerEventTriggerUpdateResponse.java
+++ b/src/main/java/org/bonitasoft/web/client/model/TimerEventTriggerUpdateResponse.java
@@ -29,7 +29,7 @@
@JsonPropertyOrder({
TimerEventTriggerUpdateResponse.JSON_PROPERTY_EXECUTION_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class TimerEventTriggerUpdateResponse implements Serializable {
private static final long serialVersionUID = 1L;
@@ -50,7 +50,7 @@ public TimerEventTriggerUpdateResponse executionDate(Long executionDate) {
* executionDate of the TimerEventTrigger
*
* @return executionDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/UpdateProcessConnectorByProcessIdRequest.java b/src/main/java/org/bonitasoft/web/client/model/UpdateProcessConnectorByProcessIdRequest.java
index c985109a..071ee3b6 100644
--- a/src/main/java/org/bonitasoft/web/client/model/UpdateProcessConnectorByProcessIdRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/UpdateProcessConnectorByProcessIdRequest.java
@@ -30,7 +30,7 @@
UpdateProcessConnectorByProcessIdRequest.JSON_PROPERTY_ID,
UpdateProcessConnectorByProcessIdRequest.JSON_PROPERTY_IMPLEMENTATION
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class UpdateProcessConnectorByProcessIdRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public UpdateProcessConnectorByProcessIdRequest id(String id) {
* Id of the process for which to update the connector, combined with connector name and version separated by slashes (x/y/z)
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public UpdateProcessConnectorByProcessIdRequest implementation(String implementa
* Previously uploaded temp file name of the updated version of the connector (returned by the [upload file api](#operation/uploadFile))
*
* @return implementation
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IMPLEMENTATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/UpdateTaskByIdRequest.java b/src/main/java/org/bonitasoft/web/client/model/UpdateTaskByIdRequest.java
index bd878ff0..9c3b824e 100644
--- a/src/main/java/org/bonitasoft/web/client/model/UpdateTaskByIdRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/UpdateTaskByIdRequest.java
@@ -34,7 +34,7 @@
UpdateTaskByIdRequest.JSON_PROPERTY_STATE,
UpdateTaskByIdRequest.JSON_PROPERTY_DISPLAY_NAME
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class UpdateTaskByIdRequest extends HashMap implements Serializable {
private static final long serialVersionUID = 1L;
@@ -59,7 +59,7 @@ public UpdateTaskByIdRequest state(String state) {
* state of the Task (completed)
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -84,7 +84,7 @@ public UpdateTaskByIdRequest displayName(String displayName) {
* display name of the Task
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/User.java b/src/main/java/org/bonitasoft/web/client/model/User.java
index 7b9361e5..06641205 100644
--- a/src/main/java/org/bonitasoft/web/client/model/User.java
+++ b/src/main/java/org/bonitasoft/web/client/model/User.java
@@ -42,7 +42,7 @@
User.JSON_PROPERTY_CREATION_DATE,
User.JSON_PROPERTY_LAST_UPDATE_DATE
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class User implements Serializable {
private static final long serialVersionUID = 1L;
@@ -102,7 +102,7 @@ public User id(String id) {
* user id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -127,7 +127,7 @@ public User enabled(String enabled) {
* if \"true\", user is active.
*
* @return enabled
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ENABLED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -152,7 +152,7 @@ public User userName(String userName) {
* user name
*
* @return userName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -177,7 +177,7 @@ public User firstname(String firstname) {
* user last name
*
* @return firstname
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FIRSTNAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -202,7 +202,7 @@ public User lastname(String lastname) {
* user last name
*
* @return lastname
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LASTNAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -227,7 +227,7 @@ public User password(String password) {
* user password
*
* @return password
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PASSWORD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -252,7 +252,7 @@ public User icon(String icon) {
* bonita icon path (ie. /default/icon_user.png)
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -277,7 +277,7 @@ public User title(String title) {
* user title
*
* @return title
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TITLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -302,7 +302,7 @@ public User jobTitle(String jobTitle) {
* user job title
*
* @return jobTitle
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_JOB_TITLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -327,7 +327,7 @@ public User managerId(String managerId) {
* user manager id
*
* @return managerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MANAGER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -352,7 +352,7 @@ public User lastConnection(String lastConnection) {
* last connection date
*
* @return lastConnection
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_CONNECTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -377,7 +377,7 @@ public User createdByUserId(String createdByUserId) {
* created by
*
* @return createdByUserId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_BY_USER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -402,7 +402,7 @@ public User creationDate(String creationDate) {
* creation date
*
* @return creationDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATION_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -427,7 +427,7 @@ public User lastUpdateDate(String lastUpdateDate) {
* user last update date
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/UserCreateRequest.java b/src/main/java/org/bonitasoft/web/client/model/UserCreateRequest.java
index 3203a608..8ea1b188 100644
--- a/src/main/java/org/bonitasoft/web/client/model/UserCreateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/UserCreateRequest.java
@@ -38,7 +38,7 @@
UserCreateRequest.JSON_PROPERTY_MANAGER_ID,
UserCreateRequest.JSON_PROPERTY_ENABLED
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class UserCreateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -86,7 +86,7 @@ public UserCreateRequest userName(String userName) {
* user name
*
* @return userName
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_USER_NAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -111,7 +111,7 @@ public UserCreateRequest firstname(String firstname) {
* user last name
*
* @return firstname
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_FIRSTNAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -136,7 +136,7 @@ public UserCreateRequest lastname(String lastname) {
* user last name
*
* @return lastname
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_LASTNAME)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -161,7 +161,7 @@ public UserCreateRequest password(String password) {
* user password
*
* @return password
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_PASSWORD)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -186,7 +186,7 @@ public UserCreateRequest passwordConfirm(String passwordConfirm) {
* user password confirmation
*
* @return passwordConfirm
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_PASSWORD_CONFIRM)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
@@ -211,7 +211,7 @@ public UserCreateRequest icon(String icon) {
* bonita icon path (ie. /default/icon_user.png)
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -236,7 +236,7 @@ public UserCreateRequest title(String title) {
* user title
*
* @return title
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TITLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -261,7 +261,7 @@ public UserCreateRequest jobTitle(String jobTitle) {
* user job title
*
* @return jobTitle
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_JOB_TITLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -286,7 +286,7 @@ public UserCreateRequest managerId(String managerId) {
* user manager id
*
* @return managerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MANAGER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -311,7 +311,7 @@ public UserCreateRequest enabled(String enabled) {
* true|false if the user is enabled or not
*
* @return enabled
- **/
+ */
@jakarta.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ENABLED)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/UserTask.java b/src/main/java/org/bonitasoft/web/client/model/UserTask.java
index f28fa35f..b94eee2e 100644
--- a/src/main/java/org/bonitasoft/web/client/model/UserTask.java
+++ b/src/main/java/org/bonitasoft/web/client/model/UserTask.java
@@ -50,7 +50,7 @@
UserTask.JSON_PROPERTY_ASSIGNED_DATE,
UserTask.JSON_PROPERTY_IS_TERMINAL
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class UserTask implements Serializable {
private static final long serialVersionUID = 1L;
@@ -134,7 +134,7 @@ public UserTask id(String id) {
* the task id
*
* @return id
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -159,7 +159,7 @@ public UserTask type(String type) {
* the task type
*
* @return type
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -184,7 +184,7 @@ public UserTask name(String name) {
* the task technical name
*
* @return name
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -209,7 +209,7 @@ public UserTask displayName(String displayName) {
* the human readable task name
*
* @return displayName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -234,7 +234,7 @@ public UserTask description(String description) {
* the task description
*
* @return description
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -259,7 +259,7 @@ public UserTask displayDescription(String displayDescription) {
* the human readable task description
*
* @return displayDescription
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -284,7 +284,7 @@ public UserTask state(ActivityState state) {
* Get state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -309,7 +309,7 @@ public UserTask reachedStateDate(String reachedStateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task reached the current state for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -334,7 +334,7 @@ public UserTask lastUpdateDate(String lastUpdateDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task was last updated for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -359,7 +359,7 @@ public UserTask dueDate(String dueDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task is due for example '2014-10-17 16:05:42.626'
*
* @return dueDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -384,7 +384,7 @@ public UserTask priority(String priority) {
* the priority (string) of the current task
*
* @return priority
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -409,7 +409,7 @@ public UserTask processId(String processId) {
* the process definition id of the process instance which define this task
*
* @return processId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -434,7 +434,7 @@ public UserTask parentCaseId(String parentCaseId) {
* the immediate containing process instance id (case id)
*
* @return parentCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -459,7 +459,7 @@ public UserTask parentTaskId(String parentTaskId) {
* the parent Task id
*
* @return parentTaskId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -485,7 +485,7 @@ public UserTask rootCaseId(String rootCaseId) {
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -510,7 +510,7 @@ public UserTask rootContainerId(String rootContainerId) {
* same as rootCaseId
*
* @return rootContainerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -535,7 +535,7 @@ public UserTask executedBy(String executedBy) {
* the id of the user who performed this task. The task has to be a human task otherwise its value will be 0
*
* @return executedBy
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -560,7 +560,7 @@ public UserTask executedBySubstitute(String executedBySubstitute) {
* the id of the user who did actually performed the task when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -585,7 +585,7 @@ public UserTask actorId(String actorId) {
* the id of the actor that can execute this task null otherwise
*
* @return actorId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -610,7 +610,7 @@ public UserTask assignedId(String assignedId) {
* the user id that this task is assigned to or 0 if it is unassigned
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -635,7 +635,7 @@ public UserTask assignedDate(String assignedDate) {
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -660,7 +660,7 @@ public UserTask isTerminal(Boolean isTerminal) {
* True if the task is the last one in a flow
*
* @return isTerminal
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/UserTaskUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/UserTaskUpdateRequest.java
index 47fcfedc..93e8f790 100644
--- a/src/main/java/org/bonitasoft/web/client/model/UserTaskUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/UserTaskUpdateRequest.java
@@ -30,7 +30,7 @@
UserTaskUpdateRequest.JSON_PROPERTY_STATE,
UserTaskUpdateRequest.JSON_PROPERTY_ASSIGNED_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class UserTaskUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -54,7 +54,7 @@ public UserTaskUpdateRequest state(String state) {
* The UserTask state
*
* @return state
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -79,7 +79,7 @@ public UserTaskUpdateRequest assignedId(String assignedId) {
* The id of the user assign to the UserTask
*
* @return assignedId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
diff --git a/src/main/java/org/bonitasoft/web/client/model/UserUpdateRequest.java b/src/main/java/org/bonitasoft/web/client/model/UserUpdateRequest.java
index cd13bf4b..517d3ac2 100644
--- a/src/main/java/org/bonitasoft/web/client/model/UserUpdateRequest.java
+++ b/src/main/java/org/bonitasoft/web/client/model/UserUpdateRequest.java
@@ -37,7 +37,7 @@
UserUpdateRequest.JSON_PROPERTY_JOB_TITLE,
UserUpdateRequest.JSON_PROPERTY_MANAGER_ID
})
-@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
+@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class UserUpdateRequest implements Serializable {
private static final long serialVersionUID = 1L;
@@ -82,7 +82,7 @@ public UserUpdateRequest enabled(String enabled) {
* if \"true\", user will be activated.
*
* @return enabled
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ENABLED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -107,7 +107,7 @@ public UserUpdateRequest userName(String userName) {
* user name
*
* @return userName
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_USER_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -132,7 +132,7 @@ public UserUpdateRequest firstname(String firstname) {
* user last name
*
* @return firstname
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FIRSTNAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -157,7 +157,7 @@ public UserUpdateRequest lastname(String lastname) {
* user last name
*
* @return lastname
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LASTNAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -182,7 +182,7 @@ public UserUpdateRequest password(String password) {
* user password
*
* @return password
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PASSWORD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -207,7 +207,7 @@ public UserUpdateRequest icon(String icon) {
* bonita icon path (ie. /default/icon_user.png)
*
* @return icon
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ICON)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -232,7 +232,7 @@ public UserUpdateRequest title(String title) {
* user title
*
* @return title
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TITLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -257,7 +257,7 @@ public UserUpdateRequest jobTitle(String jobTitle) {
* user job title
*
* @return jobTitle
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_JOB_TITLE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
@@ -282,7 +282,7 @@ public UserUpdateRequest managerId(String managerId) {
* user manager id
*
* @return managerId
- **/
+ */
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_MANAGER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)