aboutsummaryrefslogtreecommitdiffstats
path: root/docs/offeredapis/listener/apiListener.plantuml
blob: fe5ebc87c6453c133b337940349f6a41621b4f92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@startuml

enum EventType {
   ServiceOrderCreationNotification
   ServiceOrderStateChangeNotification
   ServiceOrderItemStateChangeNotification
}

class ErrorRepresentation {
   code:int
   reason:string
   message:string
   status:int
   referenceError:string
   @type:string
   @schemaLocation:string
}

class Listener {
   eventId:string
   eventDate:dateTime
   event:object
}
   Listener --> "1-1" EventType : eventType

@enduml