forked from camunda-community-hub/zeeqs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from HMubaireek/feat/return-extension-propertie…
…s-documentation-group-elements feat: return group elements, and return extension properties with documentation for elements
- Loading branch information
Showing
8 changed files
with
90 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
data/src/main/kotlin/io/zeebe/zeeqs/data/service/BpmnElementExtensionProperties.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package io.zeebe.zeeqs.data.service | ||
|
||
data class BpmnElementExtensionProperties ( | ||
val name: String? = null, | ||
val value: String? = null, | ||
) |
6 changes: 5 additions & 1 deletion
6
data/src/main/kotlin/io/zeebe/zeeqs/data/service/BpmnElementInfo.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
package io.zeebe.zeeqs.data.service | ||
|
||
import io.camunda.zeebe.model.bpmn.instance.Documentation | ||
import io.camunda.zeebe.model.bpmn.instance.zeebe.ZeebeProperty | ||
import io.zeebe.zeeqs.data.entity.BpmnElementType | ||
|
||
data class BpmnElementInfo( | ||
val elementId: String, | ||
val elementName: String?, | ||
val elementType: BpmnElementType, | ||
val metadata: BpmnElementMetadata | ||
val metadata: BpmnElementMetadata, | ||
val extensionProperties: Collection<BpmnElementExtensionProperties>?, | ||
val documentation: String? | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters