-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
616 additions
and
491 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
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
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
25 changes: 25 additions & 0 deletions
25
core/datapool/datapool-core/src/test/resources/db/migrations/V0_0_2__axon_dlq.sql
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,25 @@ | ||
CREATE TABLE dead_letter_entry ( | ||
dead_letter_id VARCHAR(255) NOT NULL, | ||
cause_message VARCHAR(255), | ||
cause_type VARCHAR(255), | ||
diagnostics BLOB, | ||
enqueued_at TIMESTAMP NOT NULL, | ||
last_touched TIMESTAMP, | ||
aggregate_identifier VARCHAR(255), | ||
event_identifier VARCHAR(255) NOT NULL, | ||
message_type VARCHAR(255) NOT NULL, | ||
meta_data BLOB, | ||
payload BLOB NOT NULL, | ||
payload_revision VARCHAR(255), | ||
payload_type VARCHAR(255) NOT NULL, | ||
sequence_number INT8, | ||
time_stamp VARCHAR(255) NOT NULL, | ||
token BLOB, | ||
token_type VARCHAR(255), | ||
type VARCHAR(255), | ||
processing_group VARCHAR(255) NOT NULL, | ||
processing_started TIMESTAMP, | ||
sequence_identifier VARCHAR(255) NOT NULL, | ||
sequence_index INT8 NOT NULL, | ||
PRIMARY KEY (dead_letter_id) | ||
); |
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
31 changes: 31 additions & 0 deletions
31
...tapool/datapool-event/src/main/kotlin/io/holunda/camunda/taskpool/api/business/Mappers.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,31 @@ | ||
package io.holunda.camunda.taskpool.api.business | ||
|
||
fun CreateDataEntryCommand.createdEvent() = DataEntryCreatedEvent( | ||
entryId = this.dataEntryChange.entryId, | ||
entryType = this.dataEntryChange.entryType, | ||
name = this.dataEntryChange.name, | ||
type = this.dataEntryChange.type, | ||
applicationName = this.dataEntryChange.applicationName, | ||
state = this.dataEntryChange.state, | ||
description = this.dataEntryChange.description, | ||
payload = this.dataEntryChange.payload, | ||
correlations = this.dataEntryChange.correlations, | ||
createModification = this.dataEntryChange.modification, | ||
authorizations = this.dataEntryChange.authorizationChanges, | ||
formKey = this.dataEntryChange.formKey | ||
) | ||
|
||
fun UpdateDataEntryCommand.updatedEvent() = DataEntryUpdatedEvent( | ||
entryId = this.dataEntryChange.entryId, | ||
entryType = this.dataEntryChange.entryType, | ||
name = this.dataEntryChange.name, | ||
type = this.dataEntryChange.type, | ||
applicationName = this.dataEntryChange.applicationName, | ||
state = this.dataEntryChange.state, | ||
description = this.dataEntryChange.description, | ||
payload = this.dataEntryChange.payload, | ||
correlations = this.dataEntryChange.correlations, | ||
updateModification = this.dataEntryChange.modification, | ||
authorizations = this.dataEntryChange.authorizationChanges, | ||
formKey = this.dataEntryChange.formKey | ||
) |
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
Oops, something went wrong.