|
| 1 | +@startuml |
| 2 | + |
| 3 | +hide empty fields |
| 4 | +hide empty methods |
| 5 | +legend |
| 6 | +|= |= line | |
| 7 | +|<back:black> </back>| inheritance | |
| 8 | +|<back:green> </back>| property reference | |
| 9 | +|<back:blue> </back>| discriminated class | |
| 10 | +endlegend |
| 11 | +interface Event [[Event.svg]] { |
| 12 | + id: String |
| 13 | + notificationType: String |
| 14 | + resourceType: [[EventSubscriptionResourceTypeId.svg EventSubscriptionResourceTypeId]] |
| 15 | + type: [[EventType.svg EventType]] |
| 16 | + data: [[Object.svg Object]] |
| 17 | + createdAt: DateTime |
| 18 | +} |
| 19 | + |
| 20 | + |
| 21 | +interface ImportContainerCreatedEvent [[ImportContainerCreatedEvent.svg]] { |
| 22 | + id: String |
| 23 | + notificationType: String |
| 24 | + resourceType: [[EventSubscriptionResourceTypeId.svg EventSubscriptionResourceTypeId]] |
| 25 | + type: [[EventType.svg EventType]] |
| 26 | + data: [[ImportContainerCreatedEventData.svg ImportContainerCreatedEventData]] |
| 27 | + createdAt: DateTime |
| 28 | +} |
| 29 | +interface ImportContainerDeletedEvent [[ImportContainerDeletedEvent.svg]] { |
| 30 | + id: String |
| 31 | + notificationType: String |
| 32 | + resourceType: [[EventSubscriptionResourceTypeId.svg EventSubscriptionResourceTypeId]] |
| 33 | + type: [[EventType.svg EventType]] |
| 34 | + data: [[ImportContainerDeletedEventData.svg ImportContainerDeletedEventData]] |
| 35 | + createdAt: DateTime |
| 36 | +} |
| 37 | +interface ImportOperationRejectedEvent [[ImportOperationRejectedEvent.svg]] { |
| 38 | + id: String |
| 39 | + notificationType: String |
| 40 | + resourceType: [[EventSubscriptionResourceTypeId.svg EventSubscriptionResourceTypeId]] |
| 41 | + type: [[EventType.svg EventType]] |
| 42 | + data: [[ImportOperationRejectedEventData.svg ImportOperationRejectedEventData]] |
| 43 | + createdAt: DateTime |
| 44 | +} |
| 45 | +interface ImportUnresolvedEvent [[ImportUnresolvedEvent.svg]] { |
| 46 | + id: String |
| 47 | + notificationType: String |
| 48 | + resourceType: [[EventSubscriptionResourceTypeId.svg EventSubscriptionResourceTypeId]] |
| 49 | + type: [[EventType.svg EventType]] |
| 50 | + data: [[ImportUnresolvedEventData.svg ImportUnresolvedEventData]] |
| 51 | + createdAt: DateTime |
| 52 | +} |
| 53 | +interface ImportValidationFailedEvent [[ImportValidationFailedEvent.svg]] { |
| 54 | + id: String |
| 55 | + notificationType: String |
| 56 | + resourceType: [[EventSubscriptionResourceTypeId.svg EventSubscriptionResourceTypeId]] |
| 57 | + type: [[EventType.svg EventType]] |
| 58 | + data: [[ImportValidationFailedEventData.svg ImportValidationFailedEventData]] |
| 59 | + createdAt: DateTime |
| 60 | +} |
| 61 | +interface ImportWaitForMasterVariantEvent [[ImportWaitForMasterVariantEvent.svg]] { |
| 62 | + id: String |
| 63 | + notificationType: String |
| 64 | + resourceType: [[EventSubscriptionResourceTypeId.svg EventSubscriptionResourceTypeId]] |
| 65 | + type: [[EventType.svg EventType]] |
| 66 | + data: [[ImportWaitForMasterVariantEventData.svg ImportWaitForMasterVariantEventData]] |
| 67 | + createdAt: DateTime |
| 68 | +} |
| 69 | + |
| 70 | +Event --> ImportContainerCreatedEvent #blue;text:blue : "type : ImportContainerCreated" |
| 71 | +Event --> ImportContainerDeletedEvent #blue;text:blue : "type : ImportContainerDeleted" |
| 72 | +Event --> ImportOperationRejectedEvent #blue;text:blue : "type : ImportOperationRejected" |
| 73 | +Event --> ImportUnresolvedEvent #blue;text:blue : "type : ImportUnresolved" |
| 74 | +Event --> ImportValidationFailedEvent #blue;text:blue : "type : ImportValidationFailed" |
| 75 | +Event --> ImportWaitForMasterVariantEvent #blue;text:blue : "type : ImportWaitForMasterVariant" |
| 76 | + |
| 77 | +@enduml |
0 commit comments