blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
227
content_id
stringlengths
40
40
detected_licenses
listlengths
0
28
license_type
stringclasses
2 values
repo_name
stringlengths
6
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
61 values
visit_date
timestamp[us]date
2015-08-14 10:26:58
2023-09-06 07:53:38
revision_date
timestamp[us]date
2011-01-31 21:28:29
2023-09-05 14:54:58
committer_date
timestamp[us]date
2011-01-31 21:28:29
2023-09-05 14:54:58
github_id
int64
206k
631M
star_events_count
int64
0
108k
fork_events_count
int64
0
34.4k
gha_license_id
stringclasses
13 values
gha_event_created_at
timestamp[us]date
2012-08-01 17:54:24
2023-09-14 21:57:05
gha_created_at
timestamp[us]date
2009-05-21 02:09:00
2023-04-21 10:18:22
gha_language
stringclasses
79 values
src_encoding
stringclasses
12 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
8
1.29M
extension
stringclasses
17 values
code
stringlengths
8
1.29M
non_uml
bool
1 class
uml
bool
1 class
has_non_ascii
bool
2 classes
has_non_latin
bool
1 class
uml_subtype
stringclasses
10 values
6bbdbf5221bbd4ad22d8acb257964063739a4564
6fedb79cb2a26d55ec22595e3a001378b97b8f74
/app/src/main/java/com/alex/kotlin/javadesignmode/meidator/mediator.puml
61512227e0b02ac18cf35c41675a6392d43392de
[]
no_license
AlexTiti/JavaDesignMode
e3b283b9547207a82b3d1ea7e12e617038a5aacb
c605ca319c20d8628d7fa38c42c5776943568e06
refs/heads/master
2020-05-04T19:34:08.751540
2019-09-09T08:44:44
2019-09-09T08:44:44
179,399,468
0
0
null
null
null
null
UTF-8
PlantUML
false
false
245
puml
@startuml interface Action{ action() } class First{ action() } class Second{ action() } class Meidator{ -first -second action() } First ..|> Action Second ..|> Action Meidator o--> First Meidator o--> Second Client --> Meidator @enduml
false
true
false
false
class
12a48b9c00dde9fd1ec5e968129896362c366053
fa2d85c243ca50392c07026a20980c498af80b07
/component-complete.puml
54d9cd7c949954572fb66485ad5014c3eeb6b496
[]
no_license
paulanthonybegley/contract-uml
2407c97e91b5533603d7cbbf103af59159a53ab3
1c0406feb3cc5130ab105dae1a1fc922cab6ad4b
refs/heads/main
2023-07-12T22:58:26.386870
2021-09-01T13:56:18
2021-09-01T13:56:18
402,126,349
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,824
puml
@startuml skinparam componentStyle uml1 interface "Data Access" as ContractDA interface "Data Access" as AuthoringDA interface "Data Access" as AuditDA interface "Data Access" as ReportingDA interface "Data Access" as TendersDA interface "Database" as DatabaseInterface interface "Encryption" as SecurityEncryption interface "Access Control" as SecurityAccessControl interface "Encryption" as PersistanceEncryption interface "Access Control" as PersistanceAccessControl [Contract Management System] ..|> [Contract] [Contract Management System] ..|> [Authoring] [Contract Management System] ..|> [Audit] [Contract Management System] ..|> [Reporting] [Contract Management System] ..|> [Tenders] ContractDA - [Contract] AuthoringDA - [Authoring] AuditDA - [Audit] ReportingDA - [Reporting] TendersDA - [Tenders] SecurityEncryption - [Security] SecurityAccessControl - [Security] PersistanceEncryption - [Persistance] PersistanceAccessControl - [Persistance] DatabaseInterface - [Database] [Contract] --( [SecurityEncryption] [Authoring] --( [SecurityEncryption] [Audit] --( [SecurityEncryption] [Reporting] --( [SecurityEncryption] [Tenders] --( [SecurityEncryption] [Contract] --( [SecurityAccessControl] [Authoring] --( [SecurityAccessControl] [Audit] --( [SecurityAccessControl] [Reporting] --( [SecurityAccessControl] [Tenders] --( [SecurityAccessControl] [Contract] --( [PersistanceEncryption] [Authoring] --( [PersistanceEncryption] [Audit] --( [PersistanceEncryption] [Reporting] --( [PersistanceEncryption] [Tenders] --( [PersistanceEncryption] [Persistance] --( [DatabaseInterface] [Contract] --( [PersistanceAccessControl] [Authoring] --( [PersistanceAccessControl] [Audit] --( [PersistanceAccessControl] [Reporting] --( [PersistanceAccessControl] [Tenders] --( [PersistanceAccessControl] @enduml
false
true
false
false
class
576963f9cbc8a770a8dab69e5a48e6f3396af184
f670d34bede06fe268889adf16d93f1ec0b68363
/autoscale-source-kubernetes/diagrams/Source.puml
ade4c50c4422b6d6b17f864c231a32c1e495ad32
[ "Apache-2.0" ]
permissive
Autoscaler/autoscaler
eb5b7ec6bbbc8c00389b5cf501183c3910cb88c3
f078ebd43fe8fdf087d4d848eb32892e08f5c9d5
refs/heads/develop
2023-08-31T21:48:10.116383
2023-08-24T10:29:06
2023-08-24T10:29:06
85,935,924
2
5
Apache-2.0
2023-09-06T13:32:40
2017-03-23T10:17:33
Java
UTF-8
PlantUML
false
false
1,412
puml
@startuml interface ServiceSource { + Set<ScalingConfiguration> getServices() } interface ServiceSourceProvider { + ServiceSource getServiceSource() } class K8sServiceSourceProvider { + K8sServiceSource getServiceSource() } class K8sServiceSource { - AppsV1Api api; - K8sAutoscaleConfiguration config; + Set<ScalingConfiguration> getServices() } class ScalingConfiguration { Used by the autoscale application in determining how to scale a service. The below methods return the value of labels on a ReplicaSet. + String getId() + String getWorkloadMetric() autoscale.metric + String getScalingTarget() autoscale.scalingtarget + int int getInterval() autoscale.interval + int getMinInstances() autoscale.mininstances + int getMaxInstances() autoscale.maxinstances + String getScalingProfile() autoscale.profile + int getBackoffAmount() autoscale.backoff + int getScaleDownBackoffAmount() autoscale.scaledownbackoff + int getScaleUpBackoffAmount() autoscale.scaleupbackoff } class K8sAutoscaleConfiguration { + int getMaximumInstances() + String getMetric() + String getNamespace() } K8sServiceSource -- ScalingConfiguration K8sServiceSource -- K8sAutoscaleConfiguration K8sServiceSourceProvider -- K8sAutoscaleConfiguration ServiceSource <|.. K8sServiceSource ServiceSourceProvider <|.. K8sServiceSourceProvider @enduml
false
true
false
false
class
ebbcd5f06a425f5e993721aac27648df8cf307d0
e81ab05344cab4c17cf2183ee2804d64322b7458
/diagrams/sequences/networking-process-inbound.puml
ed287d4e1209fe75f82e6c77b370bc80c2b7a82e
[]
no_license
buehler/mse-project-thesis-1
2b3b177b724f19ad6f969d541eb5dc405729df5d
5a1230517aa1dafea47b661a9ffc851fab9ce2f0
refs/heads/master
2023-08-16T04:09:33.174155
2021-08-31T09:22:37
2021-08-31T09:22:37
342,259,878
0
0
null
null
null
null
UTF-8
PlantUML
false
false
420
puml
@startuml skinparam backgroundcolor transparent participant "Proxy" as p participant "Translator" as t participant "Destination" as dest [-> p : Incomming\nCommunication activate p p -> t : Forward HTTP Headers activate t return Translated Credentials p -> dest : Forward Communication\nwith Credentials activate dest dest -> dest : Execute Request return Result return Result @enduml
false
true
false
false
sequence
f755a52c8c58c94c0397f8f29d8c99afb1ea4cbf
16d0235019a85c80156f91eaebf8f4f13fe7f064
/Diagramme.puml
084cd8c71a1aa460211fcfe2da3dc006baa4d40b
[]
no_license
sdeltombe/DroneControllerLib
71d8407dc602e29768f0f3a82b997130f4ddaea8
c2dc89059edc231d2f72f93e002ed959eff2262f
refs/heads/master
2016-09-15T17:55:30.048116
2014-03-26T20:04:31
2014-03-26T20:04:31
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,428
puml
@startuml package dronecontrollerlib #DDDDDD{ DCManager *-- Controller DCManager *-- ArDroneCommander DCManager o-- Factory DCManager o-- Utility ArDroneCommander *-- ArDroneReceiver ArDroneCommander *-- ArDroneCommand ArDroneCommander *-- ArDroneCommander ArDroneReceiver *-- NavData ArDroneCommander o-- NavData ISubscriber <|-- DCManager Controller <|-- MyoController Controller o-- ISubscriber Controller o-- ArDroneCommand class NavData{ -Map<String,Boolean> states +Boolean getState(String stateType) +void SetState(String stateType, Boolean value) +Boolean IsUpdate() +void parseNavData(int state) } class DCManager{ +DCManager(Factory factory,String defaultControllerType, Object[] args) +run() } abstract Factory{ +Controller CreateController(string type,string[] args) +{abstract} Utility CreateUtility(); } abstract Utility{ + void trace(String trace); + void traceError(String trace,Exception ex); } class ArDroneCommand{ +leftRightTilt +frontBackTilt +verticalSpeed +angularSpeed +DroneAction action +ArDroneCommand clone() } class ArDroneCommander{ -socket +static ArDroneCommander getInstance() +void init(Utility utility) +void command(ArDroneCommand cmd) +void takeOff() +void landing() +void run(); } class ArDroneReceiver{ -socket +void sendInitMessage() +void connect() +void run(); } abstract Controller{ -ISubscriber subscriber +void connect() +void diconnect() +void listen() +void subscribe(ISubscriber subscriber) } interface ISubscriber{ +void onReceivedCommand(ArDroneCommand cmd); } class MyoController { } } package dronecontrollerlibstd{ Controller <|-- KeyboardController Factory <|-- StandardFactory Utility <|-- StandardUtility class KeyboardController{ } class StandardFactory{ } class StandardUtility{ } } package dronecontrollerlibandroid{ Controller <|-- SmartPhoneController Factory <|-- AndroidFactory Utility <|-- AndroidUtility class SmartPhoneController{ } class AndroidFactory{ } class AndroidUtility{ } } @enduml
false
true
false
false
class
b323dc1b5425758b7c0d66afd95bff5ab431c9a4
f337912fce5c43d17e0023010af9627bc0c3a9f2
/node_modules/@videojs/http-streaming/docs/images/sources/new-playlist-loader-master-video-alt-audio-sequence.plantuml
c2af5f02e01feebdd4b6381e2b8827412a1e1c2e
[ "MIT", "Apache-2.0", "BSD-2-Clause" ]
permissive
neerajkr007/Sync-Player
daaa22ac708a2b2e2860d51480f3f61c3ec2ec2f
cc894dfb679cd6f88978da1799bd1ac4e95c37cd
refs/heads/main
2023-06-04T06:21:56.119881
2021-06-30T04:23:17
2021-06-30T04:23:17
324,296,214
0
0
MIT
2021-06-06T07:53:58
2020-12-25T05:43:57
HTML
UTF-8
PlantUML
false
false
7,118
plantuml
@startuml header PlaylistLoader sequences title PlaylistLoader sequences: Master Manifest and Alternate Audio Participant "MasterPlaylistController" as MPC #red Participant "MasterPlaylistLoader" as MPL #blue Participant "mainSegmentLoader" as SL #blue Participant "AudioPlaylistLoader" as APL #green Participant "audioSegmentLoader" as ASL #green Participant "external server" as ext #brown Participant "m3u8Parser" as parser #orange Participant "mediaGroups" as MG #purple Participant Tech #lightblue == Initialization == group MasterPlaylistController.constructor() MPC -> MPL : setting up MasterPlaylistLoader note left #lightyellow sets up mediaupdatetimeout handler for live playlist staleness end note note over MPL #lightgray: state = 'HAVE_NOTHING' MPC -> MPL: load() end group MasterPlaylistLoader.load() MPL -> MPL : start() note left #lightyellow: not started yet == Requesting Master Manifest == group start() note over MPL #lightgray: started = true MPL -> ext: xhr request for master manifest ext -> MPL : response with master manifest MPL -> parser: parse master manifest parser -> MPL: object representing manifest MPL -> MPL: set loader's master playlist note over MPL #lightgray: state = 'HAVE_MASTER' note over MPL #lightblue: trigger 'loadedplaylist' on master loader == Requesting Video Manifest == group 'loadedplaylist' handler note over MPL #lightblue: handling loadedplaylist MPL -> MPL : media() note left #lightgray: select initial (video) playlist note over MPL #lightyellow: state = 'SWITCHING_MEDIA' group media() MPL -> ext : request child manifest ext -> MPL: child manifest returned MPL -> MPL: haveMetadata() note over MPL #lightyellow: state = 'HAVE_METADATA' group haveMetadata() MPL -> parser: parse child manifest parser -> MPL: object representing the child manifest note over MPL #lightyellow update master and media playlists end note opt live MPL -> MPL: setup mediaupdatetimeout end note over MPL #lightblue trigger 'loadedplaylist' on master loader. This does not end up requesting segments at this point. end note group MasterPlaylistLoader 'loadedplaylist' handler MPL -> MPL : setup durationchange handler end end == Requesting Video Segments == note over MPL #lightblue: trigger 'loadedmetadata' group 'loadedmetadata' handler note over MPL #lightblue: handling 'loadedmetadata' opt vod and preload !== 'none' MPL -> SL: playlist() note over SL #lightyellow: updates playlist MPL -> SL: load() note right #lightgray This does nothing as mimeTypes have not been set yet. end note end MPL -> MG: setupMediaGroups() == Initializing Media Groups, Choosing Active Tracks == group MediaGroups.setupMediaGroups() group initialize() MG -> APL: create child playlist loader for alt audio note over APL #lightyellow: state = 'HAVE_NOTHING' note left #lightgray setup 'loadedmetadata' and 'loadedplaylist' listeners on child alt audio playlist loader end note MG -> Tech: add audioTracks end MG -> MG: activeGroup and audio variant selected MG -> MG: enable activeTrack, onTrackChanged() note left #lightgray There is no activePlaylistLoader at this point, but there is an audio playlistLoader end note group onTrackChanged() MG -> SL: reset mainSegmentLoader note left #lightgray: Clears buffer, aborts all inflight requests == Requesting Alternate Audio Manifest == MG -> MG: startLoaders() group startLoaders() note over MG #lightyellow activePlaylistLoader = AudioPlaylistLoader end note MG -> APL: load() end group AudioPlaylistLoader.load() APL -> APL: start() group alt start() note over APL #lightyellow: started = true APL -> ext: request alt audio media manifest break MasterPlaylistLoader 'loadedmetadata' handler MPL -> MPC: setupSourceBuffers() note left #lightgray This will set mimeType. Segments can be loaded from now on. end note MPL -> MPC: setupFirstPlay() note left #lightgray Immediate exit since the player is paused end note end ext -> APL: responds with child manifest APL -> parser: parse child manifest parser -> APL: object representing child manifest returned note over APL #lightyellow: state = 'HAVE_MASTER' note left #lightgray: Infer a master playlist APL -> APL: haveMetadata() note over APL #lightyellow: state = 'HAVE_METADATA' group haveMetadata() APL -> parser: parsing the child manifest again parser -> APL: returning object representing child manifest note over APL #lightyellow update master and media references end note == Requesting Alternate Audio Segments == note over APL #lightblue: trigger 'loadedplaylist' group 'loadedplaylist' handler note over APL #lightblue: handling 'loadedplaylist' APL -> ASL: playlist() note over ASL #lightyellow: set playlist end end note over APL #lightblue: trigger 'loadedmetadata' group 'loadedmetadata' handler note over APL #lightblue: handling 'loadedmetadata' APL -> ASL: playlist() APL -> ASL: load() loop audioSegmentLoader.load() ASL -> ext: requests media segments ext -> ASL: response with media segment bytes end end end end end end end end end end @enduml
false
true
false
false
sequence
31ddfab2796f460170721b84abbc430ddac37035
8e8095d9bd1a6dba0dbdeb5589bdc4fa57c2f26b
/doc/modules-global.puml
48c227d15817feb15cc91747b4b3c2d70bfa82ba
[]
no_license
B1zDelNickus/prj-builder-src
c942bd08e419bd6775a6475cffd42229901b7b7b
ade4a483ef9e4560e49e4087cd32c20f595bbc87
refs/heads/master
2020-08-29T11:07:05.293930
2019-10-28T09:52:53
2019-10-28T09:52:53
218,014,551
0
0
null
null
null
null
UTF-8
PlantUML
false
false
184
puml
@startuml [build_src] --> [build_tools] : uses [core] --> [common_externals] [external_adapters] --> [core] [external_adapters] --> [special_externals] [source_core] --> [core] @enduml
false
true
false
false
sequence
dd75a51b05b6ef57576c46796e7442d98d6eb54a
f7389ede7c743b8ce3d174eee24ebcab316354f6
/Diagrammer/Styringsenhed_Bdd/Styringsenhed_Bdd.puml
a6257a94c726434339575c9d1f6377d09df50b45
[]
no_license
Solvgraa-mager/E3PRJ3
7e2b70775c0d8b8312bc893e0c9014fd766af9b0
fb507b5528417459714c00b73c75378d6465af19
refs/heads/master
2023-01-31T11:01:30.966313
2020-12-18T10:28:55
2020-12-18T10:28:55
294,479,612
0
1
null
null
null
null
UTF-8
PlantUML
false
false
391
puml
@startuml skinparam BackgroundColor transparent title BDD for Styringsenhed object "Styringsenhed" as styringsenhed object "Mikrofon" as mikrofon object "Analog filterbehandlig" as filter object "Joystick" as joystick object "Central Computer IF" as centralComputerIF styringsenhed *-- filter filter *-- mikrofon styringsenhed *-- joystick styringsenhed *-- centralComputerIF @enduml
false
true
false
false
class
315a59b37ad3c7959d4aca009d69506a4ff31d00
e3c9bdc1d44b0b43faee2398a6529af87a3f6c7c
/plantuml/azure/cloudify-app.plantuml
7243bb32cfc9906bc8ee99ca6fd353c66bf35756
[]
no_license
tasiomendez/iac-modelling
11c4bc8f146f13db1fa43154f9c9ace317f7d04e
921f2f70a04f4565a750507c5a0443e5df8f4b86
refs/heads/master
2023-04-06T00:45:32.854631
2021-04-14T10:48:05
2021-04-14T10:48:05
351,842,950
1
0
null
null
null
null
UTF-8
PlantUML
false
false
2,777
plantuml
@startuml cloudify-app ' Design Configuration skinparam monochrome true skinparam tabSize 2 database "Database" as database { card vm_database <<cloudify.azure.nodes.compute.VirtualMachine>> [ vm-database --- ] card ip_database <<cloudify.azure.nodes.network.PublicIPAddress>> [ static-ip-database --- ] card nic_database <<cloudify.azure.nodes.network.NetworkInterfaceCard>> [ database --- ] card ip_config_database <<cloudify.azure.nodes.network.IPConfiguration>> [ ip-config-database --- ] } package "Wordpress App 1" as wp_1 { card vm_app_1 <<cloudify.azure.nodes.compute.VirtualMachine>> [ vm-app-1 --- ] card ip_app_1 <<cloudify.azure.nodes.network.PublicIPAddress>> [ static-ip-app-1 --- ] card nic_app_1 <<cloudify.azure.nodes.network.NetworkInterfaceCard>> [ app-1 --- ] card ip_config_app_1 <<cloudify.azure.nodes.network.IPConfiguration>> [ ip-config-app-1 --- ] } package "Wordpress App 2" as wp_2 { card vm_app_2 <<cloudify.azure.nodes.compute.VirtualMachine>> [ vm-app-2 --- ] card ip_app_2 <<cloudify.azure.nodes.network.PublicIPAddress>> [ static-ip-app-2 --- ] card nic_app_2 <<cloudify.azure.nodes.network.NetworkInterfaceCard>> [ app-2 --- ] card ip_config_app_2 <<cloudify.azure.nodes.network.IPConfiguration>> [ ip-config-app-2 --- ] } card subnet <<cloudify.azure.nodes.network.Subnet>> [ internal --- ] card virtual_network <<cloudify.azure.nodes.network.VirtualNetwork>> [ main --- ] card resource_group <<cloudify.azure.nodes.ResourceGroup>> [ main --- ] card availability_set <<cloudify.azure.nodes.compute.AvailabilitySet>> [ availability_set --- ] card storage_account <<cloudify.azure.nodes.storage.StorageAccount>> [ storage_account --- ] vm_database --> nic_database nic_database --> ip_config_database ip_config_database --> ip_database vm_app_1 --> nic_app_1 nic_app_1 --> ip_config_app_1 ip_config_app_1 --> ip_app_1 vm_app_2 --> nic_app_2 nic_app_2 --> ip_config_app_2 ip_config_app_2 --> ip_app_2 vm_database --> availability_set vm_database --> storage_account vm_app_1 --> availability_set vm_app_1 --> storage_account vm_app_2 --> availability_set vm_app_2 --> storage_account ip_config_database --> subnet ip_config_app_1 --> subnet ip_config_app_2 --> subnet subnet --> virtual_network virtual_network --> resource_group storage_account --> resource_group availability_set --> resource_group database --> resource_group wp_1 --> resource_group wp_2 --> resource_group @enduml
false
true
false
false
sequence
6e60cc30f824144782be4436b09fb4203e94190c
6669afd15b835e4029133102cfffbdc63764286e
/docs/diagrams/ListManagerClassDiagram.puml
99a700d947286a40e1a3ef6efbdb44db537a6da5
[]
no_license
jerichochua/tp
852d34673f31b7d728af310a7985d51cd6409c99
d8b562a2aab468abf75cdd0f28b9d64eeb7ca1c1
refs/heads/master
2023-01-21T17:48:15.520953
2020-11-09T15:38:41
2020-11-09T15:38:41
297,093,690
0
0
null
2020-09-20T14:27:09
2020-09-20T14:27:08
null
UTF-8
PlantUML
false
false
531
puml
@startuml skinparam classAttributeIconSize 0 skinparam Shadowing false skinparam MinClassWidth 100 hide circle hide empty members skinparam Class { BorderThickness 1 BorderColor #000000 } class Fitr class ListManager class StorageManager class ExerciseList class FoodList class GoalList Fitr --> "1" ListManager ListManager .r.> StorageManager ListManager --> "1" ExerciseList ListManager --> "1" FoodList ListManager --> "1" GoalList FoodList o-- "*" Food ExerciseList o-- "*" Exercise GoalList o-- "*" Goal @enduml
false
true
false
false
class
591d1f34842fe19ccbf09d4f11367596efd216ec
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/MaxCartDiscountsReachedError.puml
2770570819edc0d9eaebc80aa32a753b57e6e433
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
443
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface MaxCartDiscountsReachedError [[MaxCartDiscountsReachedError.svg]] extends ErrorObject { code: String message: String } interface ErrorObject [[ErrorObject.svg]] { code: String message: String } @enduml
false
true
false
false
class
20c5195ad05881808af186369bc0f0e874e69510
27b8d0b2c89724c687e6d69d14c0e7721d172aa7
/docs/rxbeach-data-flow.plantuml
c2b2422a1adb8f1b73a66810102524b8ee084d59
[ "MIT" ]
permissive
ardoq/rxbeach
8e56bf09462c0656a89ec93e444b830d6031fff3
fc3b87d10fdc1651378b6f75ae8f085a242a6e0f
refs/heads/master
2023-08-31T15:30:53.269150
2023-08-24T08:27:50
2023-08-24T08:27:50
199,864,131
6
1
MIT
2023-09-13T20:01:02
2019-07-31T13:42:08
TypeScript
UTF-8
PlantUML
false
false
848
plantuml
@startuml digraph rxbeach { label="Data flow in RxBeach" { Action [label="Action\n{type, payload?, meta?}"] act_str [label="Action Stream"] red_str [label="Reduced State Stream\nvia persistentReducedStream"] derived [label="Derived Stream"] Reducer [label="Reducer\nfn(state, action) -> state", shape=box] State [shape=cylinder] eff [label="Side-Effect", shape=none] View1 [label="View 1"] View2 [label="View 2"] } Action -> act_str [label=dispatchAction, weight=100] Reducer -> red_str [style=dotted] State -> red_str [style=dotted,dir=both] act_str -> red_str act_str -> Routine [label="subscribe"] Routine -> eff [style=dotted] red_str -> View1 View1 -> Action [label="an Action Creator"] red_str -> derived derived -> View2 red_str -> red_str derived -> red_str } @enduml
false
true
false
false
state
9f373646b906268ed354a3e3ee12ae36410bb2df
332274a5ca5012eabcc24f56d13e4b5c18486f54
/.idea/modules/app/app.plantuml
8f1b0d1e82914cc7d5ce7ba77a7351b456b21420
[]
no_license
anwarch0wdhury/MVVM-Example
1257eb11a2167d14feef9e663c3bf71bdba0e714
93629f389bb219b8abb3d10fa91aa28b836227f5
refs/heads/main
2023-01-05T08:50:48.568055
2020-11-05T22:23:19
2020-11-05T22:23:19
310,166,529
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,363
plantuml
@startuml title __SIMPLE_MVVM_JAVA_EXAMPLE.APP's Class Diagram__\n namespace com.anwar.simplemvvmjavaexample { interface com.anwar.simplemvvmjavaexample.Api { } } namespace com.anwar.simplemvvmjavaexample { class com.anwar.simplemvvmjavaexample.BuildConfig { } } namespace com.anwar.simplemvvmjavaexample { class com.anwar.simplemvvmjavaexample.MainActivity { } } namespace com.anwar.simplemvvmjavaexample { class com.anwar.simplemvvmjavaexample.MainModel { } } namespace com.anwar.simplemvvmjavaexample { class com.anwar.simplemvvmjavaexample.MainModelAdapter { } } namespace com.anwar.simplemvvmjavaexample { class com.anwar.simplemvvmjavaexample.MainViewModel { } } com.anwar.simplemvvmjavaexample.MainActivity -up-|> androidx.appcompat.app.AppCompatActivity com.anwar.simplemvvmjavaexample.MainActivity o-- com.anwar.simplemvvmjavaexample.MainModelAdapter : adapter com.anwar.simplemvvmjavaexample.MainModelAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter com.anwar.simplemvvmjavaexample.MainViewModel -up-|> androidx.lifecycle.ViewModel right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
19bd1773fc260933cd03d4961494455efff2950b
407ca5f664949ecd464146c3e8c717bb84ccc434
/website/docs/development/wrapper_keep_alive_seq.puml
e0711b9412c9ad55ce2a9e1e784edb3e4b6d83e0
[ "MIT" ]
permissive
nodegui/nodegui
8c9934df85e6fdb7f156345db991fe69f8ede259
0328157364e5b12134e430ed8dad707dc748f9ef
refs/heads/master
2023-09-03T17:05:53.800755
2023-08-28T19:10:32
2023-08-28T19:10:32
186,662,363
9,020
363
MIT
2023-08-28T19:09:30
2019-05-14T16:41:17
C++
UTF-8
PlantUML
false
false
2,446
puml
@startuml skinparam object { backgroundColor White borderColor Black arrowColor Black } skinparam note { backgroundColor LightYellow borderColor Black } hide footbox title Lifecycle of a Wrapper participant App as app << ts >> #E3C800 participant "QWindow.ts" as qwindowts << ts>> #E3C800 participant "QScreen.ts" as qscreents << ts>> #E3C800 participant "WrapperCache" as wrappercachets << ts>> #E3C800 participant "QWindowWrap" as qwindowwrap << cpp >> participant "QScreenWrap" as qscreenwrap << cpp >> participant "WrapperCache" as wrappercachecpp << cpp >> participant "QWindow" as qwindow << cpp >> #D5E8D4 participant "QScreen" as qscreen << cpp >> #D5E8D4 == Wrapper construction == activate qscreen app --> qwindowts: QWindow.screen() qwindowts --> qwindowwrap: screen() qwindowwrap --> qwindow: screen() qwindow --> qwindowwrap: QScreen instance qwindowwrap --> wrappercachecpp: get<QScreen, QScreenWrap>() note over wrappercachecpp Checks wrapper cache end note wrappercachecpp --> qscreenwrap: new() activate qscreenwrap qscreenwrap --> wrappercachecpp: QScreenWrap instance wrappercachecpp --> qscreen: connect to destroy signal wrappercachecpp --> qwindowwrap: QScreenWrap instance qwindowwrap --> qwindowts: QScreenWrap instance qwindowts --> wrappercachets: get<QScreen>(QScreenWrap instance) wrappercachets --> qscreents: new(QScreenWrap instance) activate qscreents qscreents --> wrappercachets: QScreen.ts instance wrappercachets --> qwindowts: QScreen.ts instance qwindowts --> app: QScreen.ts instance note across: The app can use the QScreen wrap and run. == Qt object destruction == note over qscreen Qt decides to destroy the QScreen instance end note qscreen --> wrappercachecpp: destroy signal destroy qscreen wrappercachecpp --> wrappercachets: destroy callback note over wrappercachecpp WrapperCache removes references to the wrapper and Qt object from cache. end note wrappercachets --> qscreents: null the ref to QScreenWrap note over wrappercachets WrapperCache.ts removes references to the QScreen.ts instance and QScreenWrap end note destroy qscreenwrap note over qscreenwrap V8's GC will destroy this automatically end note app --> qscreents note over app Any use of QScreen.ts will hit the null reference and throw a JS exception. end note app --> qscreents destroy qscreents note over qscreents V8's GC will destroy this automatically end note @enduml
false
true
false
false
sequence
0c33a4312e98310368fcf0b8047b087ad23b5b38
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/MyCartSetCountryAction.puml
70adcae6f7ddf8e798cf1de2c566395db8a12ffe
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
436
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface MyCartSetCountryAction [[MyCartSetCountryAction.svg]] extends MyCartUpdateAction { action: String country: String } interface MyCartUpdateAction [[MyCartUpdateAction.svg]] { action: String } @enduml
false
true
false
false
class
aa24b67522c14bed9c2454ba565f363169aabbd0
80905daea20f037ad1e90829c67947b7b95816b0
/code/10_UML/Graphs/UseCase.plantUML
f65f427acb0a41227c1a730b2f92b8a309f33290
[]
no_license
Divino21/CsharpCourse
7916b7b892fc3858ea3697f39e1fcd802fa2d475
473d92cd96346d005979770bdcae020cf4bbf0c4
refs/heads/master
2022-11-22T05:43:24.789564
2020-07-31T01:47:22
2020-07-31T01:47:22
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
513
plantuml
@startuml left to right direction skinparam packageStyle rectangle actor Kunde actor ShopManager actor Lagerist rectangle Onlineshop { (Artikel bestellen) as useCase1 (Bestand durchsuchen) as useCase2 Kunde -- useCase2 Kunde -- (Kundendaten ändern) Kunde -- useCase1 (Warenangebot pflegen) -- ShopManager (Bestellung zum Versand vorbereiten) -- Lagerist } rectangle "Banksystem für EC-Karten" as System2 System2 -- useCase1 rectangle "Online Bezahlsystem" as System3 System3 -- useCase1 @enduml
false
true
true
false
usecase
edf65dd4dd0cb84c06c98b2f5aa19f8ff6e4049f
426eb29881a71b80d15771180e3ef7c559d04dc8
/plantuml/GameDirector.puml
b743bc8d7494288fa632d55b90f7fa71a4fd4efa
[ "MIT" ]
permissive
ds202004gp/BlackjackUnity
a9a8aed6c17e1d4faad967606c4d9b7822d4caf9
64f454f3b17b58fd391898f468065fbe229545be
refs/heads/main
2023-01-23T04:36:04.150573
2020-11-20T08:41:04
2020-11-20T08:41:04
302,887,444
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,323
puml
@startuml class GameDirector { maxBet : int MaxBet : int <<set>> minBet : int MinBet : int <<set>> defaultPlayersMoney : int Start() : void + GameStart() : void playerScore : int dealerScore : int Judgement() : void dividendMultiplier : float DividendResult() : void playersMoney : int IsGameFollow() : bool GameOver() : void gameClearMoney : int = 10000 + Stand() : void DividendToPlayer() : void + BetToDealer(bet:int) : void + ResetField() : void BackGround() : void BetLimit() : void Update() : void } enum JudgeEnum { Win, Draw, Lose, } enum StageEnum { Normal, Vip, } MonoBehaviour <|-- GameDirector GameDirector --> "gameOverPanel" GameObject GameDirector --> "gameClearPanel" GameObject GameDirector --> "playerController" PlayerController GameDirector --> "dealerController" DealerController GameDirector --> "trumpController" TrumpController GameDirector --> "buttonController" ButtonController GameDirector --> "judgementText" Text GameDirector --> "dividendText" Text GameDirector --> "judgeEnum" JudgeEnum GameDirector --> "stageEnum" StageEnum GameDirector --> "normalBackGround" GameObject GameDirector --> "vipBackGround" GameObject GameDirector +-- JudgeEnum GameDirector +-- StageEnum @enduml
false
true
false
false
class
2049b73a9d90896dc365b62af8cb11e83fc0ae45
b3c676fb15dcb3f387f0660260098eac52187ecc
/toggles-flow-stream.puml
b6a92c77aa4594b60701460ef783095cbf9d0b4a
[]
no_license
PioneerlabsOrg/git-branching-strategies
e14d9a9ad9f6e1868ccd8282ec9c2eff6e0b2d84
1018ee1614c0034c8c15a1af99b2a8d1d8aac2c0
refs/heads/master
2020-06-14T13:52:59.012193
2019-07-04T22:22:55
2019-07-04T22:22:55
195,020,510
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,072
puml
@startuml actor "Developer 1" as dev1 actor "Developer 2" as dev2 participant "Master branch" as mb participant "Production" as prod participant "Toggles" as tog actor "Release manager" as rm dev1 -> mb: push code for feature 1 Activate mb mb -> prod: github release 1.0 Activate prod rm -> tog: enable feature 1 Activate tog tog -> prod: enable feature 1 Deactivate tog Deactivate prod Deactivate mb dev2 -> mb: push code for feature 2 Activate mb dev2 -> mb: push code for feature 3 mb -> prod: github release 2.0 Activate prod rm -> tog: enable feature 3 Activate tog tog -> prod: enable feature 3 Deactivate tog Deactivate prod mb -> prod: github release 3.0 Activate prod rm -> tog: enable feature 2 Activate tog tog -> prod: enable feature 2 Deactivate tog Deactivate prod Deactivate mb dev1 -> prod: find bug dev1 -> mb: fix bug Activate mb dev2 -> mb: push code for feature 4 mb -> prod: github release 3.1 Deactivate mb Activate prod rm -> tog: enable bug fixed Activate tog tog -> prod: enable bug fixed Deactivate tog Deactivate prod @enduml
false
true
false
false
sequence
24c867ba6d13f6a2c6a00a0cb36639718626fa59
0ab7bf9e87646bd52f745fc9002ef33d29c43ad7
/uml/DSS_editTache.puml
270c07c5340b36c75e77cbb3715a5d0409dd6daa
[]
no_license
Cook01/ToDoList
5b6b8ed762f2c178db77d855fb1897badf1f8d7f
7d76532dd0c3a34e2a3001d8e39228b750defef9
refs/heads/master
2021-01-13T14:11:16.772017
2016-12-11T20:03:28
2016-12-11T20:03:28
72,838,114
3
1
null
null
null
null
UTF-8
PlantUML
false
false
1,204
puml
@startuml title Diagramme de séquence systeme : clique sur le bouton "Edit" d'une tache box "Model" #LightSkyBlue participant Tache end box box "Controller" #LightBlue participant MainController participant TacheListener end box box "View" #LightGreen participant TacheView participant EditTacheView participant MainView end box TacheView -> TacheListener : actionPerformed TacheListener -> MainController : editTache MainController -> Tache : isLate Tache --> MainController MainController -> EditTacheView : create EditTacheView -> EditTacheView : initEditTacheView EditTacheView -> EditTacheView : updateView EditTacheView -> EditTacheView : setCategorie EditTacheView --> MainController MainController -> TacheListener : create TacheListener --> MainController MainController -> EditTacheView : addListenerOnSuppButton EditTacheView --> MainController MainController -> TacheListener : create TacheListener --> MainController MainController -> EditTacheView : addListenerOnSaveButton EditTacheView --> MainController MainController -> MainController : updateView MainController -> MainView : updateView MainView --> MainController MainController --> TacheListener @enduml
false
true
true
false
sequence
db9bbdd25d1fcccb72c5b5ace0b41c7a778f4e3f
967db7f88bdf0e5cb8feca9571b9e85175f7bcc8
/docs/Solution/Control/Security/Encryption/UseCases.puml
954c72b447e536de4274269f672ff7da5af6c715
[]
no_license
CAADE/edgeville
fd0053d749c259029ef4c7791210663ace87be21
6a3dc4791c9adf4915dc38aed3a04d1f1ef4ad65
refs/heads/master
2020-03-28T06:11:31.554585
2019-05-02T17:37:03
2019-05-02T17:37:03
147,819,682
0
0
null
null
null
null
UTF-8
PlantUML
false
false
279
puml
@startuml rectangle "Diagram TBD" @enduml left to right direction actor :User: <<Person>> actor :SubSystem: <<Person>> rectangle "Security Layer/Encryption" #lightBlue { UseCase UC1 as "Use Case1" UseCase UC2 as "Use Case2" User --> UC1 UC1 --> UC2 UC2 --> SubSystem }
false
true
false
false
usecase
0855acc2f6b3d81e1f013b8ddb5457751bde0531
c9442deb608350472fb5fe55a7ad99cebd7b3e7a
/docs/diagrams/src/sequence.puml
fa79d999d1a2ae0bd2c4e32c98c07d9cfd9249c7
[]
no_license
mycaule/shape-up-plant-uml
ab214e8c4ad4dd7c11882efcf5acf13dee26bb93
6a359755b12a8d3d3ad23a29b2e0f7d919128534
refs/heads/master
2023-01-23T05:00:17.824145
2020-11-29T17:57:12
2020-11-29T17:57:12
315,900,534
0
0
null
null
null
null
UTF-8
PlantUML
false
false
481
puml
'https://plantuml.com/sequence-diagram @startuml skinparam sequenceArrowThickness 2 skinparam roundcorner 20 skinparam maxmessagesize 60 skinparam sequenceParticipant underline actor User participant "First Class" as A participant "Second Class" as B participant "Last Class" as C User -> A: DoWork activate A A -> B: Create Request activate B B -> C: DoWork activate C C --> B: WorkDone destroy C B --> A: Request Created deactivate B A --> User: Done deactivate A @enduml
false
true
false
false
sequence
3f79199474b4e4014fd16b7c53d3eb2d24e83557
89634bb006a9df141b85b9d653ed3f9036cebe42
/src/Docs/Resources/current/60-references-internals/10-core/10-erd/_puml/erd-shopware-core-checkout-order.puml
e9ba01248e1a9e7982f6434112d761db280fcf94
[ "LicenseRef-scancode-generic-cla", "MIT" ]
permissive
8mylez/platform
a3290e4e2294dd9d21def95a90c28951084c3a93
14c3bc69c720e82f0d5e4ffc70af5ded2e13efc9
refs/heads/master
2021-01-13T23:30:54.500566
2020-09-18T07:06:25
2020-09-18T07:06:25
296,546,535
1
1
MIT
2020-09-18T07:27:12
2020-09-18T07:27:11
null
UTF-8
PlantUML
false
false
10,044
puml
@startuml ' uncomment the line below if you're using computer with a retina display ' skinparam dpi 300 !define Table(name,desc) class name as "desc" << (T,#FFAAAA) >> !define ForeignTable(name,desc) class name as "desc" << (T,#ada6a6) >> !define TranslationTable(name,desc) class name as "desc" << (I,#4286f4) >> ' we use bold for primary key ' green color for unique ' and underscore for not_null !define primary_key(x) <b>x</b> !define unique(x) <color:green>x</color> !define not_null(x) <u>x</u> ' other tags available: ' <i></i> ' <back:COLOR></color>, where color is a color name or html color code ' (#FFAACC) ' see: http://plantuml.com/classes.html#More hide methods hide stereotypes hide empty members skinparam backgroundColor #FFFFFF ' entities Table(ShopwareCoreCheckoutOrderOrderDefinition, "order\n(Order root table)") { primary_key(id) id primary_key(versionId) version autoIncrement int orderNumber numberRange not_null(billingAddressId) foreignKey not_null(billingAddressVersionId) referenceVersion not_null(currencyId) foreignKey not_null(languageId) foreignKey not_null(salesChannelId) foreignKey not_null(orderDateTime) dateTime orderDate date price cartPrice amountTotal float amountNet float positionPrice float taxStatus string shippingCosts calculatedPrice shippingTotal float not_null(currencyFactor) float deepLinkCode string affiliateCode string campaignCode string customerComment longText not_null(stateId) stateMachineState customFields customFields not_null(createdAt) createdAt updatedAt updatedAt } Table(ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition, "order_address\n(Order address)") { primary_key(id) id primary_key(versionId) version not_null(countryId) foreignKey countryStateId foreignKey not_null(orderId) foreignKey not_null(orderVersionId) referenceVersion not_null(salutationId) foreignKey not_null(firstName) string not_null(lastName) string not_null(street) string not_null(zipcode) string not_null(city) string company string department string title string vatId string phoneNumber string additionalAddressLine1 string additionalAddressLine2 string customFields customFields not_null(createdAt) createdAt updatedAt updatedAt } Table(ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition, "order_customer\n(Order customer)") { primary_key(id) id primary_key(versionId) version customerId foreignKey not_null(orderId) foreignKey not_null(orderVersionId) referenceVersion not_null(email) string not_null(salutationId) foreignKey not_null(firstName) string not_null(lastName) string company string title string customerNumber string customFields customFields remoteAddress remoteAddress not_null(createdAt) createdAt updatedAt updatedAt } Table(ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition, "order_delivery\n(Delivery)") { primary_key(id) id primary_key(versionId) version not_null(orderId) foreignKey not_null(orderVersionId) referenceVersion not_null(shippingOrderAddressId) foreignKey not_null(shippingOrderAddressVersionId) referenceVersion not_null(shippingMethodId) foreignKey not_null(stateId) stateMachineState not_null(trackingCodes) list not_null(shippingDateEarliest) dateTime not_null(shippingDateLatest) dateTime shippingCosts calculatedPrice customFields customFields not_null(createdAt) createdAt updatedAt updatedAt } Table(ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition, "order_delivery_position\n(Delivery position)") { primary_key(id) id primary_key(versionId) version not_null(orderDeliveryId) foreignKey not_null(orderDeliveryVersionId) referenceVersion not_null(orderLineItemId) foreignKey not_null(orderLineItemVersionId) referenceVersion price calculatedPrice unitPrice float totalPrice float quantity int customFields customFields not_null(createdAt) createdAt updatedAt updatedAt } Table(ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition, "order_line_item\n(Order line item)") { primary_key(id) id primary_key(versionId) version not_null(orderId) foreignKey not_null(orderVersionId) referenceVersion productId foreignKey not_null(productVersionId) referenceVersion parentId parentFk not_null(parentVersionId) referenceVersion coverId foreignKey not_null(identifier) string referencedId string not_null(quantity) int not_null(label) string payload json good bool removable bool stackable bool not_null(position) int not_null(price) calculatedPrice priceDefinition priceDefinition unitPrice float totalPrice float description string type string customFields customFields not_null(createdAt) createdAt updatedAt updatedAt } Table(ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition, "order_tag\n(M:N Mapping)") { primary_key(orderId) foreignKey primary_key(orderVersionId) referenceVersion primary_key(tagId) foreignKey } Table(ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition, "order_transaction\n(Order transaction)") { primary_key(id) id primary_key(versionId) version not_null(orderId) foreignKey not_null(orderVersionId) referenceVersion not_null(paymentMethodId) foreignKey not_null(amount) calculatedPrice not_null(stateId) stateMachineState customFields customFields not_null(createdAt) createdAt updatedAt updatedAt } ForeignTable(ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition, "state_machine_state") { } ForeignTable(ShopwareCoreSystemCurrencyCurrencyDefinition, "currency") { } ForeignTable(ShopwareCoreSystemLanguageLanguageDefinition, "language") { } ForeignTable(ShopwareCoreSystemSalesChannelSalesChannelDefinition, "sales_channel") { } ForeignTable(ShopwareCoreCheckoutDocumentDocumentDefinition, "document") { } ForeignTable(ShopwareCoreSystemCountryCountryDefinition, "country") { } ForeignTable(ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition, "country_state") { } ForeignTable(ShopwareCoreSystemSalutationSalutationDefinition, "salutation") { } ForeignTable(ShopwareCoreCheckoutCustomerCustomerDefinition, "customer") { } ForeignTable(ShopwareCoreCheckoutShippingShippingMethodDefinition, "shipping_method") { } ForeignTable(ShopwareCoreContentMediaMediaDefinition, "media") { } ForeignTable(ShopwareCoreContentProductProductDefinition, "product") { } ForeignTable(ShopwareCoreSystemTagTagDefinition, "tag") { } ForeignTable(ShopwareCoreCheckoutPaymentPaymentMethodDefinition, "payment_method") { } ' relationshipd ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreCheckoutOrderOrderDefinition ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemCurrencyCurrencyDefinition ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemLanguageLanguageDefinition ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreCheckoutOrderOrderDefinition ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreCheckoutOrderOrderDefinition ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreCheckoutOrderOrderDefinition ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition --> ShopwareCoreCheckoutOrderOrderDefinition ShopwareCoreCheckoutOrderOrderDefinition --> ShopwareCoreCheckoutDocumentDocumentDefinition ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition --> ShopwareCoreCheckoutOrderOrderDefinition ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemCountryCountryDefinition ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemCountryAggregateCountryStateCountryStateDefinition ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition --> ShopwareCoreSystemSalutationSalutationDefinition ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreCheckoutOrderAggregateOrderAddressOrderAddressDefinition ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition ShopwareCoreCheckoutOrderAggregateOrderCustomerOrderCustomerDefinition --> ShopwareCoreSystemSalutationSalutationDefinition ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition --> ShopwareCoreCheckoutShippingShippingMethodDefinition ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition --> ShopwareCoreCheckoutOrderAggregateOrderDeliveryOrderDeliveryDefinition ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreCheckoutOrderAggregateOrderDeliveryPositionOrderDeliveryPositionDefinition ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreContentMediaMediaDefinition ShopwareCoreCheckoutOrderAggregateOrderLineItemOrderLineItemDefinition --> ShopwareCoreContentProductProductDefinition ShopwareCoreCheckoutOrderAggregateOrderTagOrderTagDefinition --> ShopwareCoreSystemTagTagDefinition ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition --> ShopwareCoreSystemStateMachineAggregationStateMachineStateStateMachineStateDefinition ShopwareCoreCheckoutOrderAggregateOrderTransactionOrderTransactionDefinition --> ShopwareCoreCheckoutPaymentPaymentMethodDefinition @enduml
false
true
false
false
uml-unknown
12001e07b6f92cfa3fb1bdfa2fbf936270a8a9d3
6188ec7b23270890efa3f35cb4bb44e758bb9f7b
/diagrams/auto_edid_negotiation_seq.puml
5feef43a6890ecd8cabec925e838b6fce37a02c6
[]
no_license
SerebryanskiySergei/NMOSXXProposals
43eaba93b2ea9eca1da437e50d0e040ac2bf4da2
437c4a89865ccaa5cda2e2b9259e640730aded1d
refs/heads/master
2022-11-16T13:19:16.136452
2020-07-08T03:52:38
2020-07-08T03:52:38
273,006,693
2
1
null
null
null
null
UTF-8
PlantUML
false
false
1,525
puml
@startuml EDID_Negotiation_sequence autonumber hide footbox skinparam BoxPadding 30 !pragma teoz true actor User box "Receiver Side" participant "Receiver" endbox box "Sender Side" participant "Sender IS-04" participant "Sender IS-XX" participant "HW Source" endbox == Getting a Receiver's EDID file == User -> "Receiver" : Get Receiver's EDID File ||| ref over User, Receiver : The same steps as on \n"Get receiver's params" diagram. ||| "Receiver" -> "User" : Return JSON with EDID representation ||| User -> User: Understanding monitor's capabilities note right { ... "horizontal_screen_size": 1024, "vertical_screen_size": 768 ... } end note == Looking for a Sender's IS-XX Extension == User -> "Sender IS-04" ++ : GET /senders/{id} return Sender object User -> User : Find in Sender object\n an ID of the Device User -> "Sender IS-04" ++ : GET /devices/{id} return Device object ||| User -> User : Verify that device's controls\n includes IS-XX ||| == Sending EDID data to the Sender for negotiation == User -> "Sender IS-XX" ++: POST /senderes/{id}/flow/negotiation "Sender IS-XX" -> "Sender IS-XX": Negotiate received params\n with active params ||| "Sender IS-XX" -> "HW Source" ++: Change resolution form\n 1920x1080 to 1024x768 return Success message "Sender IS-XX" -> "Sender IS-XX": Update flow's active params in storage "Sender IS-XX" --> "Sender IS-04": Update IS-04 flow resource with new values ||| "Sender IS-XX" --> User: Updated flow's params deactivate @enduml
false
true
true
false
sequence
ce613576681f382ff32e745e90277ca40a316230
21607427b056effbb50bbdc7a05d3e26705455af
/app/docs/asciidoc/models/modelui5.puml
081da475ac8d248a18e612a90fb4b162775ff383
[ "Apache-2.0" ]
permissive
Kazetavi/Sonofy
302d17585945847c4eb2972113991cc547823fa6
dbbfe3791bfa1f3d9fef6185d4ea4725789292d6
refs/heads/master
2023-02-08T15:43:15.903753
2020-12-31T20:01:47
2020-12-31T20:01:47
325,859,551
0
0
Apache-2.0
2020-12-31T19:12:49
2020-12-31T19:11:36
null
UTF-8
PlantUML
false
false
1,491
puml
@startuml modelui5 title <size:30><b>Diagramme de classes ui pour la page de connexion</b></size> legend |= Couleur |= Description | | <size:11><back:#grey> </back></size>| Les classes qui ne sont pas encore utilisées | endlegend package app{ package ui{ package login{ class LoggedInUserView #grey{ } class LoginActivity extends AppCompatActivity implements View.OnClickListener{ - TAG : String - loginViewModel : LoginViewModel - usernameEditText : EditText - passwordEditText: EditText - loginButton: Button - new_count:TextView - mdpo: TextView - loadingProgressBar: ProgressBar - auth: FirebaseAuth + onCreate(savedInstanceState : Bundle): void - updateUiWithUser( model: LoggedInUserView): void - showLoginFailed(errorString : @StringRes Integer): void - showLoginFailed(@StringRes Integer errorString): void + onClick(v :View): void - loginUser(): void } class LoginFormState #grey{} class LoginResult #grey{} class LoginViewModel #grey{} class LoginViewModelFactory #grey{} } } } @enduml
false
true
true
false
class
f34329ec8e59649c95ff910d3f1dbdd292d37058
0ce500e94344d17abe1bee853e4f070bdc6a0c1b
/src/test/java/plantuml/a.puml
d9ef9b4b2b6ee8acdccd4b7236fe18784dd11308
[]
no_license
shibo92/exercise
0b65e2d9c7aec34fc4eb7609a821047670bd0ac1
70b3fd0b42c1d128c199e0eaef2c2ce112eaba3d
refs/heads/master
2022-12-11T13:39:58.934353
2022-12-07T05:55:54
2022-12-07T05:55:54
155,800,951
0
0
null
2022-09-01T22:58:46
2018-11-02T02:04:29
Java
UTF-8
PlantUML
false
false
358
puml
@startuml abstract class AbstractList abstract AbstractCollection interface List interface Collection List <|-- AbstractList Collection <|-- AbstractCollection Collection <|- List AbstractCollection <|- AbstractList AbstractList <|-- ArrayList class ArrayList { Object[] elementData size() Object element } enum TimeUnit { DAYS HOURS MINUTES } @enduml
false
true
false
false
class
7f7d303cd4e5853b60f43cd2dc35c7ab1b32c62e
6e977671e2f4d7e3dda4a3259b1ab2a565965a13
/02 Linq/04_GroupBy/classdiagram.puml
d4efed8ff4d82561c1475365a9a4c5b6e430c82b
[]
no_license
schletz/Pos3xhif
65e58b80ed93244bc592a71b2327543220b3fd0f
36f64716d86e5e09349dfc433ccb87d4e3ba4ba9
refs/heads/master
2023-06-26T06:01:10.270943
2023-06-11T15:44:34
2023-06-11T15:44:34
167,781,051
41
34
null
2023-05-03T12:44:53
2019-01-27T07:07:44
C#
UTF-8
PlantUML
false
false
1,688
puml
@startuml hide empty methods left to right direction class Period { + Nr : int + From : DateTime + To : DateTime + Lessons : List<Lesson> + Exams : List<Exam> } class Teacher { + Id : string + Lastname : string + Firstname : string + Email : string + Account : string + Lessons : List<Lesson> + Schoolclasses : List<Schoolclass> + Exams : List<Exam> } class Schoolclass { + Id : string + Department : string + ClassTeacherId : string + ClassTeacher : Teacher + Lessons : List<Lesson> + Pupils : List<Pupil> + Exams : List<Exam> } Teacher <--> Schoolclass : "< Class Teacher\n> Schoolclasses" class Pupil { + Id : int + Lastname : string + Firstname : string + Account : string + SchoolclassId : string + Schoolclass : Schoolclass } Pupil <--> Schoolclass : "< Pupils\n> Schoolclass" class Lesson { + Id : int + UntisId : int + SchoolclassId : string + Schoolclass : Schoolclass + TeacherId : string + Teacher : Teacher + Subject : string + Room : string? + Day : int + PeriodNr : int + Period : Period } Lesson <--> Schoolclass : "< Lessons\n> Schoolclass" Lesson <--> Teacher : "< Lessons\n> Teacher" Lesson <--> Period : "< Lessons\n> Period" class Exam { + Id : int + SchoolclassId : string + Schoolclass : Schoolclass + TeacherId : string + Teacher : Teacher + Subject : string + Date : DateTime + PeriodNr : int + Period : Period } Exam o--> Schoolclass : "< Exams\n> Schoolclass" Exam o--> Teacher : "< Exams\n> Teacher" Exam o--> Period : "< Exams\n> Period" @enduml
false
true
false
false
sequence
18b6f85fc55d734b2d213bceaa52210c90a5fe50
128331354dfdc23feac9288a9d3956480f2b9601
/src/Server/Database/Database.plantuml
e5207e158f265fc53b965ce9ff609bf780f96a25
[]
no_license
SamerAtawna/JavaBank
d812a16e6bdb09f3e62d0236ce866a5e161a0e01
240715f240ebb9035f852d4402d17aaa04d32c95
refs/heads/master
2022-12-14T10:26:04.406020
2020-09-09T11:13:21
2020-09-09T11:13:21
272,089,064
2
0
null
null
null
null
UTF-8
PlantUML
false
false
599
plantuml
@startuml title __DATABASE's Class Diagram__\n namespace Server { namespace Database { class Server.Database.DB { ~ con : Connection + DB() + atmAuth() + authenticate() + createNewAccount() + disponse() + getClients() + getTransactions() + getUsers() + withdraw() } } } right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
75d2681599ff9935f5732f1516c29872f967b37c
2ac74657de3cb81bab734d18094e945a442a167d
/sechub-doc/src/docs/asciidoc/diagrams/diagram_business_context_overview.plantuml
fbb65b334051d4a6c66c56d2ec55e3ea80686fa0
[ "MIT", "ANTLR-PD", "LicenseRef-scancode-generic-exception", "BSD-3-Clause", "LGPL-2.0-or-later", "LGPL-2.1-only", "GPL-1.0-or-later", "LicenseRef-scancode-oracle-openjdk-exception-2.0", "MPL-1.1", "MPL-2.0", "CC-PDDC", "LicenseRef-scancode-warranty-disclaimer", "EPL-2.0", "GPL-2.0-only", ...
permissive
de-jcup/sechub
64055bb7ccd5496e32207c140e5812997e97583b
488d2d23b9ae74043e8747467623d291c7371b38
refs/heads/develop
2023-07-22T18:01:47.280074
2023-07-18T15:50:27
2023-07-18T15:50:27
199,480,695
0
1
MIT
2023-03-20T03:00:02
2019-07-29T15:37:19
Java
UTF-8
PlantUML
false
false
1,074
plantuml
' SPDX-License-Identifier: MIT @startuml 'left to right direction frame external{ frame "User" { [SecHub Client] as Client Developer --> Client BuildTool --> Client } frame "Project" { [Target Website] as website [Target Code] as code [Target Infrastructure] as infra Owner -- website Owner -- code Owner -- infra } } frame "SecHub infrastructure" as internal{ frame "SecHub backend " as backend{ [SecHub Server(s)] as Server } frame "3rd party software" as products{ [Infrastructure scanner] as infrascan [Code scanner] as codescan [Web scanner] as webscan [...] as more } frame "Administration" { [SecHub Admin UI] as AdminUI Admin --> AdminUI } } Client --> Server AdminUI --> Server backend => products ' just for layouting: using hidden field ' see https://mrhaki.blogspot.com/2017/10/plantuml-pleasantness-layout-elements.html Client -[hidden]- Owner backend -[hidden]- products @enduml
false
true
false
false
uml-unknown
8c653316303e388419efcb045e4d09f1e11d3e6c
bf3e610c8668e525aedcca58ddbe9da7c19e427e
/docs/design/applications/update-exclusions.puml
f4bf7f64e62f9601bf03d767478f524b194c0ce3
[ "Apache-2.0" ]
permissive
telstra/open-kilda
874b5204f8c2070860a2e7fc6f8be368a5d18726
686d31220f1033595d7f1d4374544af5ba9c42fe
refs/heads/develop
2023-08-15T21:24:21.294425
2023-08-14T08:51:52
2023-08-14T08:51:52
104,974,693
82
70
Apache-2.0
2023-09-14T19:11:22
2017-09-27T05:13:18
Java
UTF-8
PlantUML
false
false
696
puml
@startuml title Update exclusions for Telescope participant App control kilda.apps participant AppsTopology participant Neo4j control kilda.speaker.flow participant Speaker participant Switch control kilda.flow control apps.notifications.pub App -> kilda.apps: add/remove exclusions kilda.apps -> AppsTopology activate AppsTopology AppsTopology -> kilda.speaker.flow: install/remove exclusion drop request kilda.speaker.flow -> Speaker activate Speaker Speaker -> Switch: install/remove rule Speaker -> kilda.flow: send result deactivate Speaker kilda.flow -> AppsTopology AppsTopology -> apps.notifications.pub: send notification deactivate AppsTopology apps.notifications.pub -> App @enduml
false
true
false
false
sequence
186a21ef2ca403bd37ad650da9cd6290da54bec3
a73a9f5a79597c7bd1d406dfdbf04f0de6114672
/gpstrackapp/gpstrackapp.plantuml
492057fbbf4e72262930847b690d427c6fb4610c
[]
no_license
Antonio9227/proiectscd
b49531138a41769bbecab2db1a87618457231cc3
62ddd9de50e58b548a025a585322f8de2fa39617
refs/heads/master
2023-02-16T22:00:46.420780
2021-01-05T12:28:46
2021-01-05T12:28:46
307,406,033
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,753
plantuml
@startuml title __GPSTRACKAPP's Class Diagram__\n namespace com.anto.gpstrack { class com.anto.gpstrack.ApplicationConfig { } } namespace com.anto.gpstrack { class com.anto.gpstrack.GpsTrackApplication { } } namespace com.anto.gpstrack { namespace api { class com.anto.gpstrack.api.PhoneController { } } } namespace com.anto.gpstrack { namespace api { class com.anto.gpstrack.api.PositionController { } } } namespace com.anto.gpstrack { namespace api { class com.anto.gpstrack.api.WebController { } } } namespace com.anto.gpstrack { namespace dto { class com.anto.gpstrack.dto.DeletePhoneDto { } } } namespace com.anto.gpstrack { namespace dto { class com.anto.gpstrack.dto.GetPositionsDto { } } } namespace com.anto.gpstrack { namespace dto { class com.anto.gpstrack.dto.LoginDto { } } } namespace com.anto.gpstrack { namespace dto { class com.anto.gpstrack.dto.PositionDto { } } } namespace com.anto.gpstrack { namespace dto { class com.anto.gpstrack.dto.RegisterPhoneDto { } } } namespace com.anto.gpstrack { namespace dto { class com.anto.gpstrack.dto.RegisterPhoneResponseDto { } } } namespace com.anto.gpstrack { namespace dto { class com.anto.gpstrack.dto.RequestAccessTokenDto { } } } namespace com.anto.gpstrack { namespace dto { class com.anto.gpstrack.dto.RequestAccessTokenResponseDto { } } } namespace com.anto.gpstrack { namespace dto { class com.anto.gpstrack.dto.ValidateTokenDto { } } } namespace com.anto.gpstrack { namespace entities { class com.anto.gpstrack.entities.AccessToken { } } } namespace com.anto.gpstrack { namespace entities { class com.anto.gpstrack.entities.Phone { } } } namespace com.anto.gpstrack { namespace entities { class com.anto.gpstrack.entities.Position { } } } namespace com.anto.gpstrack { namespace repositories { interface com.anto.gpstrack.repositories.AccessTokenRepository { } } } namespace com.anto.gpstrack { namespace repositories { interface com.anto.gpstrack.repositories.PhoneRepository { } } } namespace com.anto.gpstrack { namespace repositories { interface com.anto.gpstrack.repositories.PositionRepository { } } } namespace com.anto.gpstrack { namespace service { class com.anto.gpstrack.service.AccessTokenService { } } } namespace com.anto.gpstrack { namespace service { class com.anto.gpstrack.service.PhoneService { } } } namespace com.anto.gpstrack { namespace service { class com.anto.gpstrack.service.PositionService { } } } com.anto.gpstrack.ApplicationConfig .up.|> org.springframework.web.servlet.config.annotation.WebMvcConfigurer com.anto.gpstrack.api.PhoneController o-- com.anto.gpstrack.service.PhoneService : phoneService com.anto.gpstrack.api.PhoneController o-- com.anto.gpstrack.service.PositionService : positionService com.anto.gpstrack.api.PhoneController o-- com.anto.gpstrack.service.AccessTokenService : tokenService com.anto.gpstrack.api.PositionController o-- com.anto.gpstrack.service.PositionService : positionService com.anto.gpstrack.api.WebController o-- com.anto.gpstrack.service.PhoneService : phoneService com.anto.gpstrack.api.WebController o-- com.anto.gpstrack.service.PositionService : positionService com.anto.gpstrack.api.WebController o-- com.anto.gpstrack.service.AccessTokenService : tokenService com.anto.gpstrack.entities.Position o-- com.anto.gpstrack.entities.Phone : phoneId com.anto.gpstrack.service.AccessTokenService o-- com.anto.gpstrack.repositories.AccessTokenRepository : repository com.anto.gpstrack.service.PhoneService o-- com.anto.gpstrack.repositories.PhoneRepository : phoneRepository com.anto.gpstrack.service.PhoneService o-- com.anto.gpstrack.repositories.PositionRepository : positionRepository com.anto.gpstrack.service.PositionService o-- com.anto.gpstrack.repositories.PhoneRepository : phoneRepository com.anto.gpstrack.service.PositionService o-- com.anto.gpstrack.repositories.PositionRepository : repository right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
cca9057ec0626d2de6f2be589f35e461576a97f1
784420293504203e0485674947e252b9a884f9cf
/asciidoctor-editor-plugin/examples/plantuml/class-diagram.puml
79da855ef99879eda83a9362f309a5da3f21b793
[ "Apache-2.0" ]
permissive
de-jcup/eclipse-asciidoctor-editor
db5515421613e8ccfec749318fb6366b1f838e76
5dbbb4fdeac0634eec94c1cb6773246457ac2c3f
refs/heads/master
2023-02-16T00:20:39.858165
2023-02-10T21:52:39
2023-02-10T21:52:54
125,332,958
49
18
NOASSERTION
2022-08-21T23:26:15
2018-03-15T08:06:29
Java
UTF-8
PlantUML
false
false
1,233
puml
@startuml 'Hide empty parts: hide empty fields hide empty methods 'You can find more examles at https://plantuml.com/class-diagram package java.util { interface Collection interface List extends Collection abstract class AbstractList extends AbstractCollection implements List abstract AbstractCollection implements Collection class ArrayList extends AbstractList{ Object[] elementData size() } package java.util.concurrent { enum TimeUnit { DAYS HOURS MINUTES } } } package de.jcup.example #cccccc { annotation PathExampleAnnotation { String path String getPath() } class PathFinder{ + int publicField ~ int packagePrivateField - int privateField + List<String> getCollectPathes(); ~ clearCache() - inspectClasspath() } } database DB { } PathFinder *-- List #line:green;line.dashed;text:orange : contains PathFinder ..> PathExampleAnnotation : collects PathFinder --> DB #line:black;line.bold;text:blue : "Writes into\ndatabase." note top of PathFinder You can define notes at classes, interfaces etc. end note @enduml
false
true
false
false
sequence
ea3f7774f97971b610d6f1eb67ad07925ffccaa2
ca6796def41f24f410bcc30a208da57eaf745e76
/docs/UML/statistic.iuml
1fb049f0d3a0da3ca3763a3ffb3b01f4e1be698f
[]
no_license
JustKiddingCode/ASGProjekte
0a55353ddc80c3a4eca29d184c51e683f9d0901b
c0f5ad4f696064ff1356473eb04de5f9e82906cf
refs/heads/master
2021-01-20T22:28:17.044125
2014-12-24T15:04:19
2014-12-24T15:04:19
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
113
iuml
class Statistic { algorithm : SolvingAlgorithm -firstChoice : int -secondChoice : int -thirdChoice : int }
false
true
false
false
class
ca5dc93807d93d1894cda8fc8581a796d429fe78
294473ff5598a0a43f005979e77a0ee5fa522e9f
/VirtualWhiteBoard/backend/doc/backend_login.puml
e62b56fb5a951cb92d6e28010f1c8b37ec01f0fa
[]
no_license
DennisJensen96/CIC-Test
2ec31310eae1b835722ada1e469001ef79981874
ded3b60db3a6acc5678e8b91299367f128296b9f
refs/heads/main
2023-07-21T12:51:06.356529
2021-08-25T17:01:36
2021-08-25T17:01:36
399,782,644
0
0
null
null
null
null
UTF-8
PlantUML
false
false
315
puml
@startuml backend_login participant "Backend API" as BAPI participant "User" as U == Create user == alt If user does not exist U -> BAPI : Create user with provided details BAPI --> U: User created response end == Normal login == U -> BAPI : Authentication Request BAPI --> U : Authentication Response @enduml
false
true
false
false
sequence
8521044bc576ac1dc52eeb194dd6b634347ccff1
25401ecdc0394dfeed79f6ab59b8339d8c1cc74a
/cardreader.provider.usb.tactivo/cardreader.provider.usb.tactivo.plantuml
06e950fa7cbe3944712b6ec6fc3d0a93d39d921b
[ "Apache-2.0" ]
permissive
gematik/ref-CardReaderProvider-USB-Tactivo-Android
f1f6d544358c5d93963ef889cb6281a059678b60
e49e01f305cc3f24fe3544fbe9cdb3077cddcb6f
refs/heads/master
2022-02-07T13:08:30.124094
2022-01-07T07:24:20
2022-01-07T07:24:20
214,091,078
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,390
plantuml
@startuml title __CARDREADER.PROVIDER.USB.TACTIVO's Class Diagram__\n namespace de.gematik.ti.cardreader.provider.usb.tactivo { class de.gematik.ti.cardreader.provider.usb.tactivo.BuildConfig { } } namespace de.gematik.ti.cardreader.provider.usb.tactivo { class de.gematik.ti.cardreader.provider.usb.tactivo.BuildConfig { } } namespace de.gematik.ti.cardreader.provider.usb.tactivo { namespace control { class de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCallback { } } } namespace de.gematik.ti.cardreader.provider.usb.tactivo { namespace control { class de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCardChecker { } } } namespace de.gematik.ti.cardreader.provider.usb.tactivo { namespace control { class de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCardReaderController { } } } namespace de.gematik.ti.cardreader.provider.usb.tactivo { namespace control { class de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCardReaderProvider { } } } namespace de.gematik.ti.cardreader.provider.usb.tactivo { namespace entities { class de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCard { } } } namespace de.gematik.ti.cardreader.provider.usb.tactivo { namespace entities { class de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCardChannel { } } } namespace de.gematik.ti.cardreader.provider.usb.tactivo { namespace entities { class de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCardReader { } } } de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCallback .up.|> com.precisebiometrics.android.mtk.api.PBInitializedCallback de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCallback -up-|> android.content.BroadcastReceiver de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCallback o-- de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCardReaderController : controller de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCardReaderController -up-|> de.gematik.ti.openhealthcard.common.AbstractAndroidCardReaderController de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCardReaderController o-- de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCallback : callback de.gematik.ti.cardreader.provider.usb.tactivo.control.TactivoCardReaderProvider .up.|> de.gematik.ti.cardreader.provider.spi.ICardReaderControllerProvider de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCard .up.|> de.gematik.ti.cardreader.provider.api.card.ICard de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCardChannel .up.|> de.gematik.ti.cardreader.provider.api.card.ICardChannel de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCardChannel o-- de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCard : tactivoCard de.gematik.ti.cardreader.provider.usb.tactivo.entities.TactivoCardReader .up.|> de.gematik.ti.cardreader.provider.api.ICardReader right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
e474743317d55a808a159b97eb5a464cb6b76292
d658077b97f29ee990ee9fb828d8c94934477628
/src/test/resources/classdiagrams/methods-3.puml
c758bce7a493c6a7bac300ece4523da81bea4167
[ "Apache-2.0" ]
permissive
verhage/plantuml-parser
7fd40e8591c1548c5c417a0facf806e8c246a8b0
c792da387dd0a05b9737c69d3454d1f0d3a797a3
refs/heads/master
2022-11-12T02:36:14.941532
2020-07-05T20:29:27
2020-07-05T20:29:27
277,164,332
0
0
null
null
null
null
UTF-8
PlantUML
false
false
98
puml
@startuml class Dummy { {field} A field (despite parentheses) {method} Some method } @enduml
false
true
false
false
class
0d22b35e7097df7cf5b3da7c33fa4feac10b3274
17a6a64d2275c47c9b205f088394b4937292f9f5
/docs/architecture/plantuml/PolicyDesign.puml
6b4b8020b1f45399fc9b2a07505eb4a575432e48
[ "Apache-2.0", "CC-BY-4.0" ]
permissive
onap/policy-parent
2e8db0a82311ed576a2d3166ac293b8b5687987c
b12c67854c70ae410e02af501126ecf8434e5dd9
refs/heads/master
2023-08-16T15:28:59.552318
2023-08-04T13:00:54
2023-08-08T10:14:28
159,416,823
3
1
NOASSERTION
2021-06-29T19:01:07
2018-11-27T23:53:56
null
UTF-8
PlantUML
false
false
1,113
puml
@startuml title Policy Design participant API_User box "PolicyDesign" #LightBlue participant PolicyDesign database PolicyDB end box autonumber API_User --> PolicyDesign : Get Policy Type Reference PolicyDesign --> PolicyDB : Get Policy Type Artifact and Metadata PolicyDesign --> API_User : Return Policy Type Reference and Metadata API_User --> PolicyDesign : Get Policy Reference and Metadata PolicyDesign --> PolicyDB : Get Policy Metadata alt Policy Artifact exists PolicyDesign --> API_User : Return Policy Reference and Metadata else Policy Artifact does not exist PolicyDesign --> API_User : Return Policy Not Found end API_User --> API_User : Policy Editing and Generation Session\nto get Policy Parameters from user activate API_User deactivate API_User loop API_User --> PolicyDesign : Use Policy Type specification API_User --> PolicyDesign : Create Policy PolicyDesign --> PolicyDesign : Create Policy activate PolicyDesign deactivate PolicyDesign PolicyDesign --> PolicyDB : Save Policy Artifact and Metadata PolicyDesign --> API_User : Policy Creation Result end @enduml
false
true
false
false
sequence
bc3c4bb9254dfc44d83d00f24c93926667fe8a64
4a1013498e5cc820b864600fb0ffc3434858bcd7
/ドキュメント類/ngModule.plantuml
45c4f9f6341b0e218b258216972c7dd95ce19a9d
[]
no_license
t-kazari/2020_application_repoitory
271bf43bcbe321233b1ed8f4d31a92594f73ce1e
d892f62760ea8144babd2717a49d1d65106ba810
refs/heads/master
2023-01-10T23:09:34.892677
2020-10-06T09:45:17
2020-10-06T09:45:17
237,214,900
0
2
null
2023-01-07T18:37:41
2020-01-30T13:06:06
TypeScript
UTF-8
PlantUML
false
false
809
plantuml
@startuml left to right direction title food-composer-front package "food-composer-front/src/app" { file "AppModule" file "AppRoutingModule" [AppComponent4Set] folder "composer" { folder "composer/composer" { [ComposerComponent4Set] } file "ComposerModule" } folder "home" { folder "home/home" { [HomeComponent4Set] } file "HomeModule" } folder "login" { folder "login/login" { [LoginComponent4Set] } file "LoginModule" } folder "shared" { folder "shared/header" { [HeaderComponent4Set] } folder "shared/sidebar" { [SidebarComponent4Set] } file "SharedModule" } } AppModule <-- ComposerModule AppModule <-- HomeModule AppModule <-- LoginModule AppModule <-- SharedModule @enduml
false
true
false
false
uml-unknown
051e4ef66f2af9d9e6d300e2153fc924bc23e891
eec795fe8c5846fabbe68b2aa68f87ca7f024ffc
/Diagrams/SequenceDiagrams/seq-fulfil-2.1.0.plantuml
e7fd97484ca756e9f69b92ce098026a12f2a17a8
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
AlbogastAman/docs
933dac710c40be2533bab257f3b13a505d3bdd45
d179f6df93770e8c00bbe168b49f9ee5104faf3b
refs/heads/master
2020-04-22T20:23:12.401158
2019-02-12T14:34:13
2019-02-12T14:34:13
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
7,266
plantuml
/'***** License -------------- Copyright © 2017 Bill & Melinda Gates Foundation The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Contributors -------------- This is the official list of the Mojaloop project contributors for this file. Names of the original copyright holders (individuals or organizations) should be listed with a '*' in the first column. People who have contributed from an organization can be listed under the organization that actually holds the copyright for their contributions (see the Gates Foundation organization for an example). Those individuals should have their names indented and be marked with a '-'. Email address can be added optionally within square brackets <email>. * Gates Foundation - Name Surname <name.surname@gatesfoundation.com> * Georgi Georgiev <georgi.georgiev@modusbox.com> -------------- ******'/ @startuml ' declate title title 2.1.0. DFSP2 sends a Fulfil Success Transfer request autonumber ' Actor Keys: ' boundary - APIs/Interfaces, etc ' collections - Kafka Topics ' control - Kafka Consumers ' entity - Database Access Objects ' database - Database Persistance Store ' declare actors actor "DFSP1\nPayer" as DFSP1 actor "DFSP2\nPayee" as DFSP2 boundary "ML API Adapter" as MLAPI control "ML API Notification Event Handler" as NOTIFY_HANDLER boundary "Central Service API" as CSAPI collections "Fulfil-Topic" as TOPIC_FULFIL control "Fulfil Event Handler" as FULF_HANDLER collections "topic-transfer-position" as TOPIC_TRANSFER_POSITION control "Position Event Handler" as POS_HANDLER collections "Transfer-Topic" as TOPIC_TRANSFERS collections "Event-Topic" as TOPIC_EVENTS control "Transfer Event Handler" as TRANS_HANDLER collections "Notification-Topic" as TOPIC_NOTIFICATIONS box "Financial Service Providers" #lightGray participant DFSP1 participant DFSP2 end box box "ML API Adapter Service" #LightBlue participant MLAPI participant NOTIFY_HANDLER end box box "Central Service" #LightYellow participant CSAPI participant TOPIC_FULFIL participant FULF_HANDLER participant TOPIC_TRANSFER_POSITION participant TOPIC_EVENTS participant POS_HANDLER participant TOPIC_TRANSFERS participant TRANS_HANDLER participant TOPIC_NOTIFICATIONS end box ' start flow activate NOTIFY_HANDLER activate FULF_HANDLER activate POS_HANDLER activate TRANS_HANDLER group DFSP2 sends a Fulfil Success Transfer request DFSP2 <-> DFSP2: Retrieve fulfilment string generated during\nthe quoting process or regenerate it using\n**Local secret** and **ILP Packet** as inputs note right of DFSP2 #yellow Headers - transferHeaders: { Content-Length: <Content-Length>, Content-Type: <Content-Type>, Date: <Date>, X-Forwarded-For: <X-Forwarded-For>, FSPIOP-Source: <FSPIOP-Source>, FSPIOP-Destination: <FSPIOP-Destination>, FSPIOP-Encryption: <FSPIOP-Encryption>, FSPIOP-Signature: <FSPIOP-Signature>, FSPIOP-URI: <FSPIOP-URI>, FSPIOP-HTTP-Method: <FSPIOP-HTTP-Method> } Payload - transferMessage: { "fulfilment": <IlpFulfilment>, "completedTimestamp": <DateTime>, "transferState": "COMMITTED", "extensionList": { "extension": [ { "key": <string>, "value": <string> } ] } } end note DFSP2 -> MLAPI: PUT - /transfers/<ID> activate MLAPI MLAPI -> MLAPI: Validate incoming token and originator matching Payee\n<color #FF0000><b>Error codes:</b> 3000-3002, 3100-3107</color> note right of MLAPI #yellow Message: { id: <ID>, from: <transferHeaders.FSPIOP-Source>, to: <transferHeaders.FSPIOP-Destination>, type: application/json, content: { headers: <transferHeaders>, payload: <transferMessage> }, metadata: { event: { id: <uuid>, type: fulfil, action: commit, createdAt: <timestamp>, state: { status: "success", code: 0 } } } } end note MLAPI -> TOPIC_FULFIL: Route & Publish Fulfil event for Payee\n<color #FF0000><b>Error code:</b> 2003</color> activate TOPIC_FULFIL TOPIC_FULFIL <-> TOPIC_FULFIL: Ensure event is replicated as configured (ACKS=all)\n<color #FF0000><b>Error code:</b> 2003</color> TOPIC_FULFIL --> MLAPI: Respond replication acknowledgements have been received deactivate TOPIC_FULFIL MLAPI --> DFSP2: Respond HTTP - 200 (OK) deactivate MLAPI TOPIC_FULFIL <- FULF_HANDLER: Consume message ref over TOPIC_FULFIL, TOPIC_EVENTS: Fulfil Handler Consume (Success) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-fulfil-2.1.1.svg 2.1.1.]]} \n FULF_HANDLER -> TOPIC_TRANSFER_POSITION: Produce message ||| TOPIC_TRANSFER_POSITION <- POS_HANDLER: Consume message ref over TOPIC_TRANSFER_POSITION, TOPIC_TRANSFERS: Position Handler Consume (Success) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-position-1.3.2-fulfil.svg seq-position-1.3.2-fulfil]]} \n POS_HANDLER -> TOPIC_TRANSFERS: Produce message ||| TOPIC_TRANSFERS <- TRANS_HANDLER: Consume message ref over TOPIC_EVENTS, TOPIC_NOTIFICATIONS: Transfer Handler Consume (Success) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-fulfil-2.1.3.svg 2.1.3.]]} \n TRANS_HANDLER -> TOPIC_NOTIFICATIONS: Produce message ||| TOPIC_NOTIFICATIONS <- NOTIFY_HANDLER: Consume message opt action == 'commit' ||| ref over DFSP1, TOPIC_NOTIFICATIONS: Send notification to Participant (Payer) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-prepare-1.1.4.a.svg 1.1.4.a.]]} \n NOTIFY_HANDLER -> DFSP1: Send callback notification end ||| TOPIC_NOTIFICATIONS <- NOTIFY_HANDLER: Consume message opt action == 'commit' ||| ref over DFSP2, TOPIC_NOTIFICATIONS: Send notification to Participant (Payee) {[[https://github.com/mojaloop/docs/blob/master/CentralServices/seq_diagrams/seq-prepare-1.1.4.a.svg 1.1.4.a.]]} \n NOTIFY_HANDLER -> DFSP2: Send callback notification end ||| end deactivate TRANS_HANDLER deactivate POS_HANDLER deactivate FULF_HANDLER deactivate NOTIFY_HANDLER @enduml
false
true
true
false
usecase
2ccd9e59ccd2c549ac6b007a94b4c2bebef511f1
d0c1fe712a9719011e71e7a289d121a2b7d917d3
/diagramas/DiagramaDeSecuenciaBloqueAlgoritmo_ConMovArribaBajarLapizYMovDerecha.puml
6894a21bfee2b4150a8443174e0a0367f65a5ec5
[ "MIT" ]
permissive
IgnacioGC1/T2-ALGO3-TP2
324a733bb9297b858d2186d1e28a628d997a5039
c512d5f8bb62208ddda6dae70c7168423bc5e0be
refs/heads/main
2023-03-16T15:06:49.184036
2021-03-04T01:34:44
2021-03-04T01:34:44
320,315,655
0
1
null
null
null
null
UTF-8
PlantUML
false
false
1,058
puml
@startuml title Se agregan 3 Bloques: BloqueMovArriba, BloqueBjarLapiz y BloqueMovDerecha actor User activate User User -> BloqueAlgoritmo: agregarBloque(BloqueMovArriba) User -> BloqueAlgoritmo: agregarBloque(BloqueBajarLapiz) User -> BloqueAlgoritmo: agregarBloque(BloqueMovDerecha) User -> BloqueAlgoritmo: ejecutar(Personaje, Dibujo) BloqueAlgoritmo -> BloqueMovArriba:ejecutar(Personaje, Dibujo) BloqueMovArriba -> Personaje : mover(Posicion(0,1)), Dibujo) Personaje -> Posicion : sumar(posInicial) Personaje<-- Posicion : posFinal Personaje -> LapizArriba : pintar(posInicial, posFinal, Dibujo) BloqueAlgoritmo -> BloqueBajarLapiz: ejecutar(Personaje, Dibujo) BloqueBajarLapiz -> Personaje : bajarLapiz() BloqueAlgoritmo -> BloqueMovDerecha : ejecutar(Personaje, Dibujo) BloqueMovDerecha -> Personaje : mover(Posicion(1,0), Dibujo) Personaje -> Posicion : sumar(posInicial) Personaje<-- Posicion : posFinal Personaje -> LapizAbajo : pintar(posInicial, posFinal, Dibujo) LapizAbajo -> Dibujo : crearTramo(posInicio, posFin); hide footbox @enduml
false
true
false
false
usecase
57d6884bf2e08625a5b8160750da8e82f03426c9
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ShippingInfoImportDraft.puml
d8828dd2afab0727042fc6fc893df8446518e2de
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
2,405
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface ShippingInfoImportDraft [[ShippingInfoImportDraft.svg]] { shippingMethodName: String price: [[Money.svg Money]] shippingRate: [[ShippingRateDraft.svg ShippingRateDraft]] taxRate: [[TaxRate.svg TaxRate]] taxCategory: [[TaxCategoryResourceIdentifier.svg TaxCategoryResourceIdentifier]] shippingMethod: [[ShippingMethodResourceIdentifier.svg ShippingMethodResourceIdentifier]] deliveries: [[DeliveryDraft.svg List<DeliveryDraft>]] discountedPrice: [[DiscountedLineItemPriceDraft.svg DiscountedLineItemPriceDraft]] shippingMethodState: [[ShippingMethodState.svg ShippingMethodState]] } interface OrderImportDraft [[OrderImportDraft.svg]] { orderNumber: String purchaseOrderNumber: String customerId: String customerEmail: String customerGroup: [[CustomerGroupResourceIdentifier.svg CustomerGroupResourceIdentifier]] businessUnit: [[BusinessUnitResourceIdentifier.svg BusinessUnitResourceIdentifier]] store: [[StoreResourceIdentifier.svg StoreResourceIdentifier]] lineItems: [[LineItemImportDraft.svg List<LineItemImportDraft>]] customLineItems: [[CustomLineItemImportDraft.svg List<CustomLineItemImportDraft>]] totalPrice: [[Money.svg Money]] taxedPrice: [[TaxedPriceDraft.svg TaxedPriceDraft]] taxRoundingMode: [[RoundingMode.svg RoundingMode]] taxCalculationMode: [[TaxCalculationMode.svg TaxCalculationMode]] inventoryMode: [[InventoryMode.svg InventoryMode]] billingAddress: [[BaseAddress.svg BaseAddress]] shippingAddress: [[BaseAddress.svg BaseAddress]] itemShippingAddresses: [[BaseAddress.svg List<BaseAddress>]] shippingInfo: [[ShippingInfoImportDraft.svg ShippingInfoImportDraft]] paymentInfo: [[PaymentInfo.svg PaymentInfo]] paymentState: [[PaymentState.svg PaymentState]] shipmentState: [[ShipmentState.svg ShipmentState]] orderState: [[OrderState.svg OrderState]] state: [[StateReference.svg StateReference]] country: String origin: [[CartOrigin.svg CartOrigin]] completedAt: DateTime custom: [[CustomFieldsDraft.svg CustomFieldsDraft]] } ShippingInfoImportDraft --> OrderImportDraft #green;text:green : "shippingInfo" @enduml
false
true
false
false
sequence
08078085f1615726f96f49cb06d11a38ba1edab6
bf3e610c8668e525aedcca58ddbe9da7c19e427e
/docs/design/y-flow/update-y-flow.puml
f7f85a6de5fce480105c5c7dcfd8a4d4d2bfb415
[ "Apache-2.0" ]
permissive
telstra/open-kilda
874b5204f8c2070860a2e7fc6f8be368a5d18726
686d31220f1033595d7f1d4374544af5ba9c42fe
refs/heads/develop
2023-08-15T21:24:21.294425
2023-08-14T08:51:52
2023-08-14T08:51:52
104,974,693
82
70
Apache-2.0
2023-09-14T19:11:22
2017-09-27T05:13:18
Java
UTF-8
PlantUML
false
false
4,235
puml
@startuml title Update y-flow boundary Northbound box "Flow HS Topology" #LightGreen participant YFlowUpdateHub participant YFlowValidator participant PathComputer participant FlowUpdateService1 as "FlowUpdateService + FSM 1" participant FlowUpdateService2 as "FlowUpdateService + FSM 2" participant FlowResourcesManager participant RuleManager participant SpeakerWorker end box database OrientDB Northbound -> YFlowUpdateHub : YFlowUpdateRequest activate YFlowUpdateHub YFlowUpdateHub -> OrientDB : Update y-flow status to lock it alt Y-flow is already locked Northbound <- YFlowUpdateHub : Y-flow update error end ==Validate Y-Flow== YFlowUpdateHub -> YFlowValidator : Validate the y-flow activate YFlowValidator YFlowUpdateHub <- YFlowValidator deactivate YFlowValidator alt Validation error Northbound <- YFlowUpdateHub : Y-flow update error end ==Validate sub-flows== YFlowUpdateHub -> FlowUpdateService1 : Initiate the flow update deactivate YFlowUpdateHub activate FlowUpdateService1 YFlowUpdateHub <- FlowUpdateService1 : Callback: validation passed, path is found, resources are allocated activate YFlowUpdateHub YFlowUpdateHub -> FlowUpdateService2 : Initiate the flow update deactivate YFlowUpdateHub activate FlowUpdateService2 YFlowUpdateHub <- FlowUpdateService2 : Callback: validation passed, path is found, resources are allocated activate YFlowUpdateHub alt Flow update failed or timeout Northbound <- YFlowUpdateHub : Y-flow update error YFlowUpdateHub <- YFlowUpdateHub : Rollback end Northbound <- YFlowUpdateHub : Y-flow update is in progress deactivate YFlowUpdateHub ==Complete sub-flow update== FlowUpdateService1 -> SpeakerWorker : Send install/validate rules command deactivate FlowUpdateService1 FlowUpdateService1 <- SpeakerWorker activate FlowUpdateService1 FlowUpdateService2 -> SpeakerWorker : Send install/validate rules command deactivate FlowUpdateService2 FlowUpdateService2 <- SpeakerWorker activate FlowUpdateService2 FlowUpdateService1 -> OrientDB : Update sub-flow entity & ISLs available bandwidth FlowUpdateService2 -> OrientDB : Update sub-flow entity & ISLs available bandwidth FlowUpdateService1 -> SpeakerWorker : Send remove old rules command deactivate FlowUpdateService1 FlowUpdateService1 <- SpeakerWorker activate FlowUpdateService1 FlowUpdateService2 -> SpeakerWorker : Send remove old rules command deactivate FlowUpdateService2 FlowUpdateService2 <- SpeakerWorker activate FlowUpdateService2 FlowUpdateService1 -> FlowResourcesManager : Deallocate resources for old sub-flow paths FlowUpdateService2 -> FlowResourcesManager : Deallocate resources for old sub-flow paths FlowUpdateService1 -> OrientDB : Remove old sub-flow paths FlowUpdateService2 -> OrientDB : Remove old sub-flow paths YFlowUpdateHub <- FlowUpdateService1 : Callback: update completed deactivate FlowUpdateService1 activate YFlowUpdateHub YFlowUpdateHub <- FlowUpdateService2 : Callback: update completed deactivate FlowUpdateService2 alt Flow update failed or timeout YFlowUpdateHub <- YFlowUpdateHub : Rollback end ==Complete y-flow update== YFlowUpdateHub -> PathComputer : Calculate the new y-point activate PathComputer YFlowUpdateHub <- PathComputer deactivate PathComputer YFlowUpdateHub -> FlowResourcesManager : Allocate the new y-point meter (and shared endpoint meter if needed) activate FlowResourcesManager YFlowUpdateHub <- FlowResourcesManager deactivate FlowResourcesManager YFlowUpdateHub -> OrientDB : Save y-flow entities YFlowUpdateHub -> SpeakerWorker : Send install/validate the new y-point meter (and shared endpoint meter if needed) deactivate YFlowUpdateHub YFlowUpdateHub <- SpeakerWorker activate YFlowUpdateHub YFlowUpdateHub -> SpeakerWorker : Send remove the old y-point meter (and shared endpoint meter if needed) deactivate YFlowUpdateHub YFlowUpdateHub <- SpeakerWorker activate YFlowUpdateHub YFlowUpdateHub -> FlowResourcesManager : Deallocate the old y-point meter (and shared endpoint meter if needed) activate FlowResourcesManager YFlowUpdateHub <- FlowResourcesManager deactivate FlowResourcesManager == Completing == YFlowUpdateHub -> OrientDB : Update y-flow status deactivate YFlowUpdateHub @enduml
false
true
false
false
sequence
c85022e0a68e575c202cf8f4296a3b3a92183eca
1423267c7da79f77fdec74f3d6c68f173a7d8326
/Design/Akutuator enhed/Software/Pumpe/SD_Pumpe_conDestructor.puml
a6dadd541d23f862e945e125b503c09b6344a391
[]
no_license
Solvgraa-mager/E4PRJ4
60282c6857f62747ce99aacacab8f7b56efbf28e
3f54f0415dcb1f5f7269db9653860f4071a17082
refs/heads/main
2023-05-08T15:53:25.639820
2021-06-03T12:47:11
2021-06-03T12:47:11
335,742,071
0
0
null
null
null
null
UTF-8
PlantUML
false
false
457
puml
@startuml SD_Pumpe_con_destructor title Pumpe::Pumpe(int GPIO) participant Aktuatorenhed as a participant Pumpe as p actor OS as o == Constructor == create p a -> p : Pumpe(int GPIO) p -> o : inti(GPIO) activate o note right o: Initialisere PWM-GPIO port p <-- o deactivate o p -> o : setDutycycle(0) p <-- o a <-- p == Destructor == a -> p : ~Pumpe() p -> o : terminate(GPIO) note right o: frigiver PWM-GPIO port p <-- o a <-- p destroy p @enduml
false
true
false
false
usecase
3043b62be210d2ca87364d7f4cbf27346cd089c9
d69d7773ee03eb466c7d3cd5260c7deff1746132
/tip/hood/goog/storg/src/site/resources/uml/getObjectWorkflow.puml
ee2a150c4bd0601125a31b50d479e89e97fff058
[]
no_license
max8github/cloudio
ed9e854932031cf4d5b6c272f4150d9088328671
397ef65187393b1dd42fa840ac39ba78ee2b9268
refs/heads/master
2016-09-06T18:35:03.966945
2015-11-18T17:33:55
2015-11-18T17:33:55
26,938,300
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,519
puml
@startuml User --> DataServlet: GET Object request\n<b>without version</b> \n <b>information</b> 'this is something like a curl over GET /bucketname/objectpath DataServlet -> Key: new Key(objectname, bucketName) Key -> DataServlet: versionObjectId -- of type Key 'If a version id is not given to DataServlet, like it is in this use case, 'DataServlet will create the version object id off of it doing: 'Key versionObjectId = new Key(objectname, bucketName); 'Now DataServlet can fetch version object's information saved in the ring. 'The information needed here is the user's meta information of the version 'object. Specifically: latest version id and delete marker. DataServlet --> Sproxyd: fetchUserMetaVersionObject(versionObjectId) Sproxyd -> DataServlet: user meta version object 'Now DS has the version object's meta from which it can get the info of where the object is 'that is, its object id), because the metadata of the version object has the 'convenient field of the last version object id. 'First, check if the object has a delete marker (assume here that is false): DataServlet -> DataServlet: getDeleteMarker() is false {if true, just return "deleted"} 'Now from the user's object name and bucket, recalculate the object id, by 'using Key: DataServlet -> Key: new Key(objectName, bucketname, latestVersionId) Key -> DataServlet: objectID 'Now DS invokes sproxyd to get the actual object DataServlet --> Sproxyd: fetchObject(objectID) Sproxyd --> DataServlet: object DataServlet --> User: object @enduml
false
true
false
false
sequence
7dca5ed1217e251b4bda869d241c6b0167ec9704
bb209a68f1d9336a28270a7afbdcb899c91918df
/p07_template_method/template_method.puml
5d429e7b9d0b8e5945c269349928e51a4a567c83
[]
no_license
CrazyBilipala/Design-Patterns-2019
25376e46641cff4a200b6d594e10b866b182d7b2
17512c6e0e1286e218f139c2ca3fceeeba92e38e
refs/heads/master
2020-07-14T14:42:01.329685
2019-08-30T08:24:26
2019-08-30T08:24:26
205,336,482
0
0
null
null
null
null
UTF-8
PlantUML
false
false
127
puml
@startuml abstract class Template{ abstract method(): any } class Component extends Template{ method(): any } @enduml
false
true
false
false
class
fad676238de4dcb7fce7bdc870ec93801821fe43
35508bd731441b3937a0c85f6e3a41d7f34fb421
/docs/sequencediagrams/put-object-clovis-ops/multi-part-upload.plantuml
f28a9c815739fa473bb5b65beb516887407d19b5
[ "Apache-2.0" ]
permissive
daniarherikurniawan/cortx-s3server
21dd08973f6a14e547ebeef1375b14f74ff1ba74
9fcd4d5006c6febd0a95577bea639568a9b07ac9
refs/heads/main
2023-07-18T01:15:51.923024
2021-08-30T13:09:21
2021-08-30T13:09:21
384,235,867
0
0
Apache-2.0
2021-07-08T20:03:53
2021-07-08T20:03:52
null
UTF-8
PlantUML
false
false
6,513
plantuml
@startuml ' Steps are listed here: ' https://docs.google.com/document/d/15YIzQUnz8MaACBdqKuZMbKSIDjSzBxb7OMhHqVAIgiI/edit#heading=h.dabn95db9jmm header Multi-Part Upload\n By Ivan Tishchenko\n 2019-11-12 footer Page %page% of %lastpage% title Multipart Upload participant "S3 Client" as client participant "S3 Server" as server participant "Motr\nKVS API" as kvs participant "Motr\nObject API" as object autoactivate on == Step 1: CreateMultipartUpload == client -> server: POST /bucket_name/object_name?uploads server -> kvs: get_keyval(global_bucket_index, key = "bucket_name") kvs --> server: value = account_id of bucket owner server -> kvs: get_keyval(global_bucket_md_index, key = "account_id/bucket_name") kvs --> server: value = bucket metadata JSON server -> kvs: get_keyval(BUCKET_nnn_obj_index, key = "object_name") note left * Index OID for this index is stored in bucket metadata JSON. * This call checks if object is present. end note kvs --> server: not found server -> kvs: get_keyval(BUCKET_nnn_multipart_index, key = "object_name") note left * Index OID for this index is stored in bucket metadata JSON. * This call checks if multipart upload for this object is in progress. end note kvs --> server: not found server -> object: create_object object --> server: success (completed) server -> kvs: create index(object_nnn_part_index) note right of server Index Name: BUCKET/<bucket name>/<object name>/<upload id> This index will hold metadata information about each part of the multipart upload as individual key-value pair. end note kvs --> server: success (completed) server -> kvs: sync_index() kvs --> server: success (completed) server -> kvs: put_keyval(BUCKET_nnn_multipart_index, key=object_name, val = object_metadata) kvs --> server: success (completed) server -> kvs: sync_keyval() kvs --> server: success (completed) server --> client: 200 OK, multipart_upload_id newpage == Step 2: First "put part data" request == client -> server: PUT object with partNumber = 1\n uploadId = multipart_upload_id note right: PUT /bucket_name/object_name?partNumber=1&uploadId=...guid server -> kvs: get_keyval(global_bucket_index, key = "bucket_name") kvs --> server: value = account_id of bucket owner server -> kvs: get_keyval(global_bucket_md_index, key = "account_id/bucket_name") kvs --> server: value = bucket metadata JSON server -> kvs: get_keyval(BUCKET_nnn_multipart_index, key = "object_name") kvs --> server: value = object multipart upload metadata JSON server -> kvs: put_keyval(BUCKET_nnn_multipart_index, key = "object_name", value = "JSON") note left: Updates the size of 1st part in metadata. kvs --> server: success (completed) server -> kvs: sync_keyval() note left Needed to propagate the change across cluster. Otherwise other nodes, receiving other parts, will fail. end note kvs --> server: success (completed) server -> object: openobj object --> server: success (completed) loop until all data is written server -> object: Write data (up to 512 blocks per op, 16k each) note left Each write is 512 blocks, size of each block is 16k. Except the last write, which has only remaining blocks (up to 512) and last block up to 16k. end note object --> server: success (completed) end server -> kvs: put_keyval(object_nnn_part_index, key = "1", value = "JSON") note left: Saves metadata on part #1 of the upload. kvs --> server: success (completed) server -> kvs: sync_keyval() note left Needed to propagate the change across the cluster. Otherwise neighbour node, on receiving PostCompleteAction, will fail. end note kvs --> server: success (completed) server --> client: 200 OK newpage == Step 3: Remaining "put part data" requests == loop for each remaining part client -> server: PUT object with partNumber = NNN\n uploadId = multipart_upload_id note right: PUT /bucket_name/object_name?partNumber=NNN&uploadId=...guid server -> kvs: get_keyval(global_bucket_index, key = "bucket_name") kvs --> server: value = account_id of bucket owner server -> kvs: get_keyval(global_bucket_md_index, key = "account_id/bucket_name") kvs --> server: value = bucket metadata JSON server -> kvs: get_keyval(BUCKET_nnn_multipart_index, key = "object_name") kvs --> server: value = object multipart upload metadata JSON server -> object: openobj object --> server: success (completed) loop until all data is written server -> object: Write data (up to 512 blocks per op, 16k each) object --> server: success (completed) end server -> kvs: put_keyval(object_nnn_part_index, key = "part_number_NNN", value = "JSON") note left: Saves metadata of the part #NNN of the upload. kvs --> server: success (completed) server -> kvs: sync_keyval() note left Needed to propagate the change across the cluster. Otherwise neighbour node, on receiving PostCompleteAction, will fail. end note kvs --> server: success (completed) server --> client: 200 OK end newpage == Step 4: PostCompleteAction == client -> server: POST /bucket_name/object_name\n&uploadId=multipart_upload_id server -> kvs: get_keyval(global_bucket_index, key = "bucket_name") kvs --> server: value = account_id of bucket owner server -> kvs: get_keyval(global_bucket_md_index, key = "account_id/bucket_name") kvs --> server: value = bucket metadata JSON server -> kvs: get_keyval(BUCKET_nnn_obj_index, key = "object_name") kvs --> server: value = object multipart upload metadata JSON server -> kvs: get_next(object_nnn_part_index, key = "", count = 30) note left: Loads part metadata to validate and compose\nfinal object metadata. kvs --> server: value = up to 30 pairs of part_number/part_metadata_json server -> kvs: put_keyval(BUCKET_nnn_obj_index, key = "object_name", value = "object metadata JSON") note left: Saves metadata of the newly created object. kvs --> server: success (completed) server -> kvs: sync_keyval() note left Needed to propagate the change across the cluster. To allow instant GET on the object and avoid race conditions. end note kvs --> server: success (completed) server -> kvs: delete_index(object_nnn_part_index) note left: Clean up now unneeded multipart metadata. kvs --> server: success (completed) server -> kvs: sync_index kvs --> server: success (completed) server -> kvs: delete_keyval(BUCKET_nnn_multipart_index, key=object_name) kvs --> server: success (completed) server -> kvs: sync_keyval kvs --> server: success (completed) @enduml
false
true
false
false
sequence
5072b5f05ebd6cb4b9d8d949601c41b7054fb2ef
5419ba65627214efbf640b0643d5524c4f2a646f
/Architecture/08.RPDT#44.present-performance-data/PPDT#175.class.plantuml
bbaec52d6d42872b11512e5e41fcf3e602a03629
[]
no_license
ovidiomanteiga/horuslauncher
3ed7ce5283dd4a267b1284f6bc192c0426b98150
26159c90e70d3042f2ac04d8cb8284c1c8c26de2
refs/heads/master
2020-09-14T05:44:31.073187
2019-07-22T19:55:47
2019-07-22T19:55:47
223,037,096
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,481
plantuml
@startuml PPDT#175.class skinparam monochrome true package Domain { class LauncherPresentation <<VO>> { UUID identifier Date launchTime Date actionTime LauncherPresentationResult result } class LauncherStats <<VO>> { Float averageActionTimeInSeconds Long averageGettingHorusListTimeInMilliseconds Float horusListAccuracyPercentage } class GetLauncherStats <<Interactor>> { + LauncherStats LauncherStats + void perform() } class LauncherPresentationRepository <<Repository>> { + List<LauncherPresentation> all + add(LauncherPresentation) } GetLauncherStats -r-> "1" LauncherPresentationRepository GetLauncherStats .u.> "1" LauncherStats : <<creates>> GetLauncherStats .u.> LauncherPresentation LauncherPresentationRepository o-u-> "*" LauncherPresentation } package Infrastructure { class DBLauncherPresentationRepository <<Repository>> { + List<LauncherPresentation> all + add(LauncherPresentation) } DBLauncherPresentationRepository .u.|> LauncherPresentationRepository } package UI { class MainActivity <<Activity>> { } class StatsActivity <<Activity>> { } class StatsFragment <<Fragment>> { } } MainActivity .u.> StatsActivity : <<launches>> StatsActivity .> StatsFragment : <<presents>> StatsFragment -u-> GetLauncherStats hide empty members @enduml
false
true
false
false
class
71807c1135185cf794bf940b467d78881e214399
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/BusinessUnitAssociateRemovedMessage.puml
359329c87cbae09390c05de440b4d8d569812470
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
1,194
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface BusinessUnitAssociateRemovedMessage [[BusinessUnitAssociateRemovedMessage.svg]] extends Message { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] associate: [[Associate.svg Associate]] } interface Message [[Message.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] sequenceNumber: Long resource: [[Reference.svg Reference]] resourceVersion: Long type: String resourceUserProvidedIdentifiers: [[UserProvidedIdentifiers.svg UserProvidedIdentifiers]] } @enduml
false
true
false
false
class
2a858a389afc6b004124ac786e9de173d89f10f4
83147b64e04741de0403ef88b6c9aeba85d05361
/docs/Iteracao2/UC4_MD.puml
2d514dc65c7b34d26c9263c05b9420148d994839
[]
no_license
antoniodanielbf-isep/ESOFT-2020
3af037382ecf70f5b25448765e841a8733cc3968
a1bcfcbb7951b58afcc9c1f663265091dde3926e
refs/heads/main
2023-06-04T23:48:29.068810
2021-06-20T18:18:38
2021-06-20T18:18:38
378,711,541
0
0
null
null
null
null
UTF-8
PlantUML
false
false
728
puml
@startuml hide methods left to right direction skinparam classAttributeIconSize 0 class Plataforma { -String designacao } class CompetenciaTecnica { -String codigo -String descBreve -String descDetalhada } class AreaAtividade { -String codigo -String descBreve -String descDetalhada } class Administrativo { } class Utilizador { -String nome -String email -String password } Plataforma "1" -- "*" CompetenciaTecnica : possui > CompetenciaTecnica "*" -- "1" AreaAtividade : referente a > Administrativo "1" -- "*" CompetenciaTecnica: especifica > Administrativo "0..1" -- "1" Utilizador: atua como > Plataforma "1" -- "*" Administrativo : tem > Plataforma "1" -- "*" AreaAtividade : possui > @enduml
false
true
false
false
class
69e2390a8f473e71fa9d324bdd0c0d79760e4fcf
952306da4d2f63f5d2bf1ae083755073aae7c0d8
/mojaloop-technical-overview/central-bulk-transfers/assets/diagrams/sequence/seq-bulk-1.3.0-position-overview.plantuml
585049495eff7e824e8c0fa79af9155c3140d2dd
[ "Apache-2.0" ]
permissive
oderayi/documentation
2d39a9cea0bc524b228de323ab06b4d3d8731d3a
5a7d06a2c8e5d330bae063c0f4488587d914f727
refs/heads/master
2021-07-18T01:34:17.448352
2019-09-06T07:00:48
2019-09-06T07:00:48
210,317,065
0
0
null
2019-09-23T09:35:16
2019-09-23T09:35:15
null
UTF-8
PlantUML
false
false
4,856
plantuml
/'***** License -------------- Copyright © 2017 Bill & Melinda Gates Foundation The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Contributors -------------- This is the official list of the Mojaloop project contributors for this file. Names of the original copyright holders (individuals or organizations) should be listed with a '*' in the first column. People who have contributed from an organization can be listed under the organization that actually holds the copyright for their contributions (see the Gates Foundation organization for an example). Those individuals should have their names indented and be marked with a '-'. Email address can be added optionally within square brackets <email>. * Gates Foundation - Name Surname <name.surname@gatesfoundation.com> * Georgi Georgiev <georgi.georgiev@modusbox.com> * Miguel de Barros <miguel.debarros@modusbox.com> * Rajiv Mothilal <rajiv.mothilal@modusbox.com> * Samuel Kummary <sam@modusbox.com> -------------- ******'/ @startuml ' declate title title 1.3.0. Position Handler Consume (single message, includes individual transfers from Bulk) autonumber ' Actor Keys: ' boundary - APIs/Interfaces, etc ' collections - Kafka Topics ' control - Kafka Consumers ' entity - Database Access Objects ' database - Database Persistance Store ' declare actors collections "topic-transfer-position" as TOPIC_TRANSFER_POSITION control "Position Handler" as POS_HANDLER collections "Event-Topic" as TOPIC_EVENTS collections "Notification-Topic" as TOPIC_NOTIFICATIONS box "Central Service" #LightYellow participant TOPIC_TRANSFER_POSITION participant POS_HANDLER participant TOPIC_EVENTS participant TOPIC_NOTIFICATIONS end box ' start flow activate POS_HANDLER group Position Handler Consume alt Consume Prepare message for Payer TOPIC_TRANSFER_POSITION <- POS_HANDLER: Consume Position event message for Payer activate TOPIC_TRANSFER_POSITION deactivate TOPIC_TRANSFER_POSITION break group Validate Event POS_HANDLER <-> POS_HANDLER: Validate event - Rule: type IN ['position','bulk-position'] && action == 'prepare'\n<color #FF0000><b>Error codes:</b> 2001</color> end end group Persist Event Information ||| POS_HANDLER -> TOPIC_EVENTS: Publish event information ref over POS_HANDLER, TOPIC_EVENTS : Event Handler Consume\n ||| end ||| ref over POS_HANDLER: Prepare Position Handler Consume\n POS_HANDLER -> TOPIC_NOTIFICATIONS: Produce message else Consume Fulfil message for Payee TOPIC_TRANSFER_POSITION <- POS_HANDLER: Consume Position event message for Payee activate TOPIC_TRANSFER_POSITION deactivate TOPIC_TRANSFER_POSITION break group Validate Event POS_HANDLER <-> POS_HANDLER: Validate event - Rule: type IN ['position','bulk-position'] && action == 'commit'\n<color #FF0000><b>Error codes:</b> 2001</color> end end group Persist Event Information ||| POS_HANDLER -> TOPIC_EVENTS: Publish event information ref over POS_HANDLER, TOPIC_EVENTS : Event Handler Consume\n ||| end ||| ref over POS_HANDLER: Fulfil Position Handler Consume\n POS_HANDLER -> TOPIC_NOTIFICATIONS: Produce message else Consume Abort message TOPIC_TRANSFER_POSITION <- POS_HANDLER: Consume Position event message activate TOPIC_TRANSFER_POSITION deactivate TOPIC_TRANSFER_POSITION break group Validate Event POS_HANDLER <-> POS_HANDLER: Validate event - Rule: type IN ['position','bulk-position'] &&\naction IN ['timeout-reserved', 'reject', 'abort']\n<color #FF0000><b>Error codes:</b> 2001</color> end end group Persist Event Information ||| POS_HANDLER -> TOPIC_EVENTS: Publish event information ref over POS_HANDLER, TOPIC_EVENTS : Event Handler Consume\n ||| end ||| ref over POS_HANDLER: Abort Position Handler Consume\n POS_HANDLER -> TOPIC_NOTIFICATIONS: Produce message end end deactivate POS_HANDLER @enduml
false
true
true
false
sequence
c670c557d9abb37a26c3a99b880ddc5c09b20af0
67d616bdde1b978f6d43a0d540471ec111a93827
/cpp/inheritance_review/Review-06-CPP-Shapes/Example-9/uml/shapes-2.puml
f1fd110c01041fc3f0c098cb3418613ef38405a2
[]
no_license
Crusaton/cs330fall2020
6efad5dcd0d14bca6a2bba00129c9a43e3964769
282827769eb4f737b6c12ac730cee90f73a2ff45
refs/heads/main
2023-01-30T11:19:04.390813
2020-12-08T01:13:28
2020-12-08T01:13:28
314,138,571
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,062
puml
@startuml skinparam classAttributeIconSize 0 hide empty members class Circle { +Circle() +Circle(double r) +Circle(const Circle& src) +~Circle() +clone() : Shape* -_radius : double +area() : double +diameter() : double +perimeter() : double +radius() : double -{static} PI :const double -{static} TAU :const double +display(std::ostream& outs) : void +radius(double r) : void +read(std::istream& ins) : void } class EquilateralTriangle { +EquilateralTriangle() +EquilateralTriangle(double side) +EquilateralTriangle(const EquilateralTriangle& src) +~EquilateralTriangle() +clone() : Shape* +area() : double +height() : double +side() : double -{static} ROOT_3_DIV_4 :const double +display(std::ostream& outs) : void +read(std::istream& ins) : void +side(double s) : void } class RightTriangle { +RightTriangle() +RightTriangle(double base, double height) +RightTriangle(const RightTriangle& src) +~RightTriangle() +clone() : Shape* +area() : double +base() : double -{static} computeHypotenuse(double base, double height) : double +height() : double +hypotenuse() : double -{static} ONE_HALF :const double +base(double side) : void +display(std::ostream& outs) : void +height(double side) : void +read(std::istream& ins) : void } abstract class Shape { +Shape() +Shape(std::string name) +~Shape() +{abstract} clone() : Shape* +{abstract} area() : double +{abstract} perimeter() : double #{static} WIDTH_LABEL :const int #{static} WIDTH_VALUE :const int #_name : std::string +name() : std::string +display(std::ostream& outs) : void #name(std::string _name) : void +{abstract} read(std::istream& ins) : void } class ShapeFactory { +{static} createShape(std::string name) : Shape* +{static} isKnown(std::string name) : bool +{static} numberKnown() : int -{static} _known_shapes :ShapePair +{static} listKnown(std::ostream& outs) : void } class ShapeFactory::ShapePair { +ShapePair() +ShapePair(std::string name, Shape* shape) +~ShapePair() +_model : Shape* +_name : std::string } class Square { +Square() +Square(double s) +Square(const Square& src) +~Square() +clone() : Shape* -_side : double +area() : double +perimeter() : double +side() : double +display(std::ostream& outs) : void +read(std::istream& ins) : void +side(double s) : void } class Triangle { +Triangle() +Triangle(double _side_a, double _side_b, double _side_c) +Triangle(const Triangle& src) +~Triangle() +clone() : Shape* #_side_a : double #_side_b : double #_side_c : double +area() : double +perimeter() : double +sideA() : double +sideB() : double +sideC() : double +display(std::ostream& outs) : void +read(std::istream& ins) : void +sideA(double side) : void +sideB(double side) : void +sideC(double side) : void } /' Inheritance relationships '/ .Shape <|-- .Circle .Shape <|-- .Square .Shape <|-- .Triangle .Triangle <|-- .EquilateralTriangle .Triangle <|-- .RightTriangle /' Aggregation relationships '/ ShapeFactory::ShapePair o-- .Shape @enduml
false
true
false
false
class
4daa342d12d1b7a3cdbaf0046061991979602d16
a9addcf84f053c5f4d342d0a94dc5c46eac0b101
/analyse/diagrammes/DiagrammeClasse.plantuml
e6036e1992252bc54062a34e70bf869b1406bef7
[]
no_license
IUT-Blagnac/bcoo-retro2021-bcoo-retro2021-g16
28992fca9a1d225398ebd1cc7bd10ca5b8cb1060
45028e1bc96edbbb5af7d844caa430afa2cb0071
refs/heads/master
2023-06-07T22:05:39.653102
2021-06-21T14:11:26
2021-06-21T14:11:26
365,143,142
0
1
null
null
null
null
UTF-8
PlantUML
false
false
664
plantuml
@startuml class Enseignant { idEnseignant nom prénom initiales une photo un descriptif succinct } class formation{ idFormation nom formation } class Module{ idModule nom Module Initiales } class profil { idProfil } class Eleve{ idEleve } class Secretaire{ idSecretaire } class EnseignantVacataire { idEnseignantVa nomentreprise Emailpro } Enseignant "1" -- "1" formation : pratique Enseignant "1..*" -- "1..*" Module : assigner Enseignant "1" -right- "1" profil : appartient Eleve "1..*" -down- "1..*" profil : consulter Secretaire "1..*" -- "1..*" profil : modifier EnseignantVacataire ..> Enseignant : extend @enduml
false
true
true
false
class
e95e009a569591c4243e047e6e888ba140d92376
7028a90e3cc6096e70b06e0d18c51983bf54f4d6
/plantuml/SoundManager.puml
f62509a3d9794dede80487c921a64c8c83cb1aef
[]
no_license
KazukiShimura/AnimalVillage
2d73f459e9df3b839f9328309de890c09f4b1f1d
916c5edc80613ade565b5fe481debf79f890b505
refs/heads/main
2023-05-06T07:27:10.043196
2021-05-27T01:55:47
2021-05-27T01:55:47
358,861,857
0
0
null
null
null
null
UTF-8
PlantUML
false
false
185
puml
@startuml class SoundManager { - Start() : void + OnSound() : void + OffSound() : void } MonoBehaviour <|-- SoundManager SoundManager --> "OnSoundButton" GameObject @enduml
false
true
false
false
class
e1a29aac03badc9b4ecf15a39b1b7ddf620c814b
5acc64e7d8fc033e1005b3f67ba376e09339b1a9
/uml/miscellaneous/objectVsClassDiagrams/images/od-StudentDegree.puml
bb18437f1c270cfe5d0362f0f2260e5893ae8a4a
[]
no_license
se-edu/se-book
51836eae719719997a4a8388531e123a7a1d03f9
41c676c86722fb913b1bcc343e1ca3ebfce6f953
refs/heads/master
2023-09-03T11:44:14.051377
2023-08-29T07:08:22
2023-08-29T07:08:22
91,666,782
38
33
null
2023-01-10T03:19:07
2017-05-18T08:12:42
CSS
UTF-8
PlantUML
false
false
346
puml
@startuml skinparam classAttributeIconSize 0 skinparam roundCorner 0 skinparam shadowing false hide circle hide empty members class a as "<u>adam:Student</u>" class e as "<u>eve:Student</u>" class h as "<u>h1:Hall</u>" class d1 as "<u>history:Degree</u>" class d2 as "<u>english:Degree</u>" a -- d1 a -right- h e -left- h e -- "major" d2 @enduml
false
true
false
false
class
aff8bb793c0d14ab1e646d27081393b02b604fa5
5cf4562f01b174ba235cb3ac5551b247a4c2abcb
/app/src/main/java/com/jxust/tutor/TutorCursorAdapters/TutorCursorAdapters.plantuml
14554e3c73c58e2d6905e06814b9b1429aa41d25
[]
no_license
atanuroy911/JXUST_TUTOR_APP
30c08767b79f141c2903b3a035182f1a3aed3828
fb440a4f0f5ac57f716a5c829177265155b7c157
refs/heads/main
2023-03-03T06:04:36.247741
2021-02-03T13:26:52
2021-02-03T13:26:52
335,628,435
0
0
null
null
null
null
UTF-8
PlantUML
false
false
624
plantuml
@startuml title __TUTORCURSORADAPTERS's Class Diagram__\n namespace com.jxust.tutor { namespace TutorCursorAdapters { class com.jxust.tutor.TutorCursorAdapters.SessionCursorAdapter { - mContext : Context + SessionCursorAdapter() + bindView() + newView() } } } com.jxust.tutor.TutorCursorAdapters.SessionCursorAdapter -up-|> android.widget.CursorAdapter right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
7cedb724181099af0a137689ce31125109761158
1d828cda8dfc2d251ee36fc0c617a95eab03a569
/doc/design/rains_redisProxyComponent.puml
1d7145a45acb6c69d3534532d9454eccd1d62243
[ "Apache-2.0" ]
permissive
hugoDD/rains-redisproxy
df2bdf76a37f5612c8a03092b13ac77c33e872cf
a0aa7e504a06a776e3ffdc9a1fd0be2c658bfcb2
refs/heads/master
2022-05-18T03:30:52.661318
2018-06-15T03:44:18
2018-06-15T03:44:18
131,477,673
8
4
null
null
null
null
UTF-8
PlantUML
false
false
752
puml
@startuml package "rarins-redisproxy-core" { [commons] [threadpool] [deliverycore] } package "rarins-redisproxy-client" { APP - [delivery] [delivery]-redisClient } package "rarins-redisproxy-redis-xpipesvc" { redisDB - xpipe xpipe --> [DB_infterface] xpipe --> [ES_infterface] xpipe --> [MQ_infterface] xpipe --> [HDFS_infterface] } package "rarins-redisproxy-eureka" { [delivery] --> eurekaServer [redisFailOver]--> redisDB } package "rarins-redisproxy-net" { redisClient --> [redisproxy] [redisproxy] --> eurekaServer [redisproxy]-->redisDB } package "rarins-redisproxy-admin" { HTTP - [managerWeb] [managerWeb]-[redisManger] redisFailOver-->[redisManger] } @enduml
false
true
false
false
uml-unknown
8c30753507e5b60f10703d58c174925eba820d35
98db91bbebf1f48bc591bdfbfd16f8615e238374
/specs/vpeng/archive/PH_CN_INIT_AEEA.puml
2dfff970fb17c028670a3bfd8f223b0ec4c2c230
[]
no_license
pengtianyue/Solvay_test
c912ef0bcea28150fd0a0b108992e3612c634982
35d24a2e13c1d44326e65384fa57db08494bbc59
refs/heads/master
2021-01-21T04:50:58.658610
2016-04-13T19:36:57
2016-04-13T19:36:57
49,964,037
0
1
null
null
null
null
UTF-8
PlantUML
false
false
2,457
puml
@startuml [*] --> TaskPointer0: TASK_PTR = 0 TaskPointer0: Message initialize phase state TaskPointer1 { TaskPointer0 --> Diverge Diverge --> ConfirmRecipe: THISUNIT = R_UNIT.CVS Diverge --> ConfirmFormula: THISUNIT != R_UNIT.CVS ConfirmFormula: OARYN - Selected formula does \nnot run on this recipe. \n(R_FORMULA_NAME)\nClick Yes to Abort Recipe ConfirmFormula -up-> ConfirmFormula: NO ConfirmFormula --> [*]: YES ConfirmRecipe: OARYN - Start batch recipe on this unit \n(R_RECIPE_NAME) ConfirmRecipe --> [*]: NO ConfirmRecipe --> SetUnitParameters: YES SetUnitParameters: Timer, THISUNIT/OP001-020 SetUnitParameters --> VerifyBatchSize VerifyBatchSize: OARYN - Is Batch size correct? \n(R_BATCH_SIZE) VerifyBatchSize --> SaveBatchSize: YES VerifyBatchSize --> NewBatchSize: NO NewBatchSize: OAR_INPUT - Enter New Batch Size NewBatchSize --> SaveNewBatchSize } state TaskPointer2 { SaveBatchSize --> AcquireEquipment SaveNewBatchSize --> AcquireEquipment AcquireEquipment --> SetOAR: Acquire Failed SetOAR --> AcquireEquipment AcquireEquipment --> HOLD_REQ: Device Acquired \n & pending confirm = 0 AcquireEquipment --> SetMonitors: Device Acquired \n & pending confirm = 1 HOLD_REQ --> SetMonitors } state TaskPointer3 { SetMonitors --> CloseValves CloseValves: Reset Interlock, Set Mode, \nClose Valve and Motors CloseValves --> InitializeDevices InitializeDevices: Reset Interlocks on EMs, \n Reset Totalizer, Close All on EMs, \n Write Batch info to Historian } state TaskPointer4 { InitializeDevices --> CheckRXWeight CheckRXWeight: OARYN - Is reactor weight > 1000lb? CheckRXWeight --> CheckRawMaterial: YES CheckRXWeight --> [*]: NO CheckRawMaterial: OARYN - Is Raw Material Present in Reactor? CheckRawMaterial --> [*]: NO } state TaskPointer5 { CheckRawMaterial --> RX_OIL_CTRL_EM: YES RX_OIL_CTRL_EM: OFF RX_OIL_CTRL_EM --> RX_JKT_CTRL_EM RX_JKT_CTRL_EM: BLOWDOWN RX_JKT_CTRL_EM --> RX_VLVSTATE_EM RX_VLVSTATE_EM: TBD } state TaskPointer6 { RX_VLVSTATE_EM --> TareWeight TareWeight --> GEROPON_ACT_OFF } state TaskPointer7 { GEROPON_ACT_OFF --> VerifyCleanRX VerifyCleanRX: OAROK - Confirm Reactor Clean. \nOpen AEEA and CFA manual valves. \nOpen CW flow, charge water to decanter. \nSetup decanter pumjp to reflux to column. VerifyCleanRX --> ConfirmStart: OK ConfirmStart: OAROK - Ready to start charging raw materials? } state TaskPointer99 { ConfirmStart --> ClearPHAlarm } ClearPHAlarm --> [*] @enduml
false
true
false
false
sequence
7b65e90386793a4667d215aa4eec6aeb8b1df764
85592c2f8d87903b27b3b6a1dd1f733231f6585c
/guava-tests/test/com/nanyin/test/design/facade/facade.puml
55f2741dab469e5ef173e89ce0d98a47cddf3fad
[ "Apache-2.0" ]
permissive
NanYinIU/guava-with-comments
52aa7248f4eb7f8d7bb8173b0d432de5a327490f
04f402389aadc903ff4c595049dfb01575d3bd71
refs/heads/master
2021-06-27T20:31:52.847594
2019-06-28T03:04:02
2019-06-28T03:04:02
140,093,917
0
0
Apache-2.0
2020-10-13T09:33:12
2018-07-07T15:05:44
Java
UTF-8
PlantUML
false
false
445
puml
@startuml interface Services{ + start():void + stop():void + restart():void } class MysqlService{ + start():void + stop():void + restart():void } class ApacheService{ + start():void + stop():void + restart():void } Services <|.. MysqlService Services <|.. ApacheService class Facade{ + List<Services> services + Facade() + addService():void + start():void + stop():void + restart():void } Facade "1"-->"n" Services :has App --> Facade @enduml
false
true
false
false
sequence
4683e2d41df75fa269784eb79d53a51a1689e4f4
e12b8d4d45b12f7ebf15a369e90c4a664a21f53d
/diagrams/fundable_execute.puml
b0e5a6ab8878aebef5cc70ada5f90e7ccaaf5dbe
[]
no_license
IoBuilders/fundable-token
8d1d5f97c0e9bf1e4bc4c13d3b6588447158dadc
a898f6ca867954387d5e1249daa12b9efd1f6741
refs/heads/master
2023-01-11T16:36:19.085291
2019-07-22T07:56:40
2019-07-22T07:56:40
186,643,717
2
2
null
2023-01-04T05:01:50
2019-05-14T14:50:22
JavaScript
UTF-8
PlantUML
false
false
326
puml
@startuml UserA -> "Fundable Token": orderFund "Fundable Token" --> "Fund Agent": FundOrdered "Fund Agent" -> "Fundable Token": processFund "Fundable Token" --> "UserA": FundInProcess "UserA funds" --> "Fund Agent": transfer funds "Fund Agent" -> "Fundable Token": executeFund "Fundable Token" --> UserA: FundExecuted @enduml
false
true
false
false
sequence
c0eccddccdd2e5459b1984aa33a26ced094417a0
af4ebff03b68cbddb994debba55a14427c4d45e2
/p2_state.puml
2eb987e41322a065007c817a44b256db4fa3664d
[]
no_license
BrunoSilvaFreire/Modelagem
6adda34b5808c84ae83134c58c3ca0e959a04ffc
56f3b47cd7e6eb4c14de50668fd913a0a1948e21
refs/heads/master
2020-08-07T11:06:57.703038
2019-10-09T20:17:46
2019-10-09T20:17:46
213,425,584
0
0
null
null
null
null
UTF-8
PlantUML
false
false
797
puml
@startuml scale 350 width [*] --> AguardandoCompra state AguardandoCompra { AguardandoCompra -->PreparandoCesta : Sistema começa a contar 60 minutos state PreparandoCesta { PreparandoCesta : Usuário pode adicionar,\nremover items da cestas, ou \n limpar a própria } state FinalizandoCompra { FinalizandoCompra : Usuário insere seus dados\n* CPF \n*CPNJ \n*Cartão para pagamento } state ValidandoCartão { ValidandoCartão : FastCard pode completar a compra,\n ou limpar a cesta, cancelando-a\nautomaticamente } } PreparandoCesta --> FinalizandoCompra : Usuário clicou em \n"Finalizar" AguardandoCompra --> [*] : Passaram 60 minutos FinalizandoCompra --> ValidandoCartão : FastCard inicia\n o processo de\n validação ValidandoCartão--> [*] @enduml
false
true
true
false
sequence
6ad1b78df9bc803b1bb571b9217dc32048ffb036
bc73e80ccfef03abd8a988b6a878a762878cb956
/docs/system.puml
d024a2d4ebd301363a745898e75e7ddf2b86fd28
[ "MIT" ]
permissive
jiro4989/nimbot
339aaed55544375902d91592987d6fa093fffd85
d07ff31e317f4e96d47ca471a3e0594b191fb960
refs/heads/master
2021-03-08T15:16:02.853517
2020-08-16T12:59:30
2020-08-16T12:59:30
246,354,510
3
0
MIT
2020-08-16T12:59:32
2020-03-10T16:39:00
Nim
UTF-8
PlantUML
false
false
471
puml
@startuml system actor Developer as dev frame "Port" { (4001) } node "Docker" { [nimbot_server] as server [nimbot_executor] as exec [fluented] as log [nim-compiler] as nim [slack-mock] as mock database MongoDB as db } dev -down-> (4001) : POST http://localhost:4001/paly (4001) -down-> server server -down-> db exec -down-> db exec -down-> nim exec -down-> mock server -down-> log exec -down-> log db -down-> log mock -down-> log @enduml
false
true
false
false
usecase
901814b29e7171151a97a6bd9910f0e1171e05d5
d20c5c47f69154bab730978ab6926273aa912143
/doc/sequencediagrams/fr9.puml
d1c1934a3e6ec63d23f18a96ddd8d9fc0a7bb051
[]
no_license
PolyPong/PolyPong
6343389dfc34c90e017e730e50432b9f190bd0e8
c51a4ad491351f85d1065dab697dc52dacae7e88
refs/heads/master
2023-04-07T02:36:34.103293
2021-04-17T05:46:43
2021-04-17T05:46:43
336,416,757
0
0
null
null
null
null
UTF-8
PlantUML
false
false
373
puml
@startuml actor user participant Leaderboard as L participant DatabaseHelperClass as db activate user user -> L: getGlobalLeaderboard() activate L L -> db: getXPForTopPlayers() activate db db --> L: (usernames, xp)[] deactivate db L --> user: global leaderboard deactivate L @enduml
false
true
false
false
usecase
b1feb64e58bb73c4d8ecb0cbc9636c89900ff53e
da25d6569aa71639699659373865e1f75068f440
/ProgettoGarzoneMacellaio.puml
527ef898141d66c136e6a9d1eeb32cb56d1cb9c4
[]
no_license
salaroglio/GarzoneMacellaio
ccd784ceb1951e0d9b6e3f7f616992de0b6ebdab
cbbb73fcd07404f9076977efbf3aaf98c5352fef
refs/heads/main
2023-03-06T09:21:32.839571
2021-02-21T18:14:21
2021-02-21T18:14:21
340,969,320
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,175
puml
@startuml left to right direction actor "Cliente" as g actor "Macellaio" as mc actor "Macellaio" as mc1 package "Operazioni Abituali su chat" as CurrentChat{ usecase "Ordina la carne" as UC1 usecase "Verifica se l'ordine è stato ricevuto" as UC2 usecase "Aggiunge il cliente nella chat" as UC8 usecase "Attività di promozione carni e\n itinerari mercato" as UC10 } package "Operazioni di configurazione" as ConfigGlobal{ package "configurazione Sito Web" as ConfigWeb{ usecase "Si iscrive al servizio di\n Tracking degli Ordini" as UC6 } package "Chat telegram" as ConfigChat{ usecase "Crea la chat" as UC9 usecase "Inserisce il bot dentro la chat" as UC7 usecase "Configura il bot\nper la sua macelleria" as UC11 } } package "Operazioni abituali su\nSito Web/App mobile" as SitoWeb { usecase "controlla gli ordini\nstampa" as UC4 usecase "conferma la ricezione" as UC5 } mc1 --> UC4 mc1 --> UC5 mc --> UC6: 1 mc --> UC9: 2 mc --> UC7: 3 mc --> UC11: 4 mc1 --> UC8: 4 mc1 --> UC10: 5 g --> UC1 g --> UC2 @enduml
false
true
true
false
usecase
bc4f4284efd4bdd9eac277dc1b43fa58e33a6ebe
48f480c503190d3e7c2196534c9dd9f33dc85e2e
/schemas/rethink-core.puml
316ded3a71f54d44ee75ea464d232068e93bb23c
[ "Apache-2.0" ]
permissive
reTHINK-project/specs
0646ca3bdf34b4d0ef35ce54a90f86ec5a78b1d9
52d52585bfd8cdc783512862b80228506215b0ae
refs/heads/master
2022-11-01T17:53:27.814875
2019-11-04T11:02:25
2019-11-04T11:02:25
67,431,416
3
5
Apache-2.0
2022-10-18T18:51:34
2016-09-05T15:21:40
JavaScript
UTF-8
PlantUML
false
false
1,028
puml
@startuml "../datamodel/Rethink-Core.png" package RethinkCore <<Rect>> { class RethinkObject { } package SyncDataObject { } package GraphConnector <<Rect>> { } package CatalogueDataObject <<Rect>> { } package RegistryDataObject <<Rect>> { } package UserHypertyAccount <<Rect>> { } package Identity <<Rect>> { } package RethinkType <<Rect>> { } package Domain <<Rect>> { } } package Message <<Rect>> { } package URL <<Rect>> { } package Connection <<Rect>> { } package Communication <<Rect>> { } package Context <<Rect>> { } RethinkObject <|-- Identity RethinkObject <|-- GraphConnector RethinkObject <|-- CatalogueDataObject RethinkObject <|-- RegistryDataObject RethinkObject <|-- URL RethinkObject <|-- Message RethinkObject <|-- SyncDataObject SyncDataObject <|-- Connection SyncDataObject <|-- Communication SyncDataObject <|-- Context GraphConnector .down.> URL CatalogueDataObject .down.> URL RegistryDataObject .down.> URL Identity .down.> URL URL <.down. Message @enduml
false
true
false
false
class
1a4c172935fd4f854df8185311fba1ed1f1c72da
8afc3f91c8ee3c9e336e4f4e10458dcb6c937e90
/vars/src/test/java/com/github/robertbachmann/vars/examples/CompanyStatement.puml
34ae93ff2377bed7746363f894f18103dcc6022f
[]
no_license
robertbachmann/vars
384c97364ca5e50c3d7f29309a68f1580c97c8f4
9cdfeac7e8ad5e0274d854385ab0c88bc04c7ff7
refs/heads/master
2021-01-25T12:31:40.150857
2018-05-15T19:48:46
2018-05-15T19:48:46
123,477,286
0
0
null
null
null
null
UTF-8
PlantUML
false
false
696
puml
@startuml class CompanyStatement { + revenue : double + expenses : double + earnings : double } class TaxStatement { + companyStatement : CompanyStatement + taxRate : double + taxes : double + earningsAfterTaxes : double } CompanyStatement " 1 " <--o " 1 " TaxStatement note right of CompanyStatement <b>context CompanyStatement::earnings: double derive:</b> <i>self.revenue - self.expenses</i> end note note right of TaxStatement <b>context TaxStatement::taxes: double derive:</b> <i>self.companyStatement.earnings * self.taxRate</i> <b>context TaxStatement::earningsAfterTaxes: double derive:</b> <i>self.companyStatement.earnings - self.taxes</i> end note @enduml
false
true
false
false
class
fa8b6a88018aecb41fdaf7d0b5c5aa86fe00f910
740ec837551b09f09677854163ecd30ba6ea3cb7
/documents/sd/plantuml/dynamic/Core/InitCore.puml
769d02227bc69d6e046932aacd4c0292a464c613
[ "MIT" ]
permissive
insightmind/MORR
913c0c16d14745cbde40af07322ca339a0373f32
0830f2155fb3b32dc127587e07cbd780deb0e118
refs/heads/develop
2020-12-08T00:23:17.488431
2020-04-05T20:50:44
2020-04-05T20:50:44
232,827,908
5
1
MIT
2020-04-05T20:55:27
2020-01-09T14:28:48
HTML
UTF-8
PlantUML
false
false
3,117
puml
@startuml 'skinparam monochrome true hide footbox title Core initialization from UI actor User create ":App" as UIApp User -> UIApp : starts UI application activate UIApp create ":NotifyIconControl" as TrayIcon UIApp -> TrayIcon : <<create>> UIApp <-- TrayIcon create ":ApplicationViewModel" as ApplicationViewModel UIApp -> ApplicationViewModel : <<create>> activate ApplicationViewModel create ":SessionManager" as SessionManager ApplicationViewModel -> SessionManager : <<create>> activate SessionManager create ":Bootstrapper" as Bootstrapper SessionManager -> Bootstrapper : <<create>> activate Bootstrapper create ":IEnumerable<IModule>" as IModulesImport Bootstrapper [#blue]-> IModulesImport : <<create>> note right Implicitly created through MEF end note create ":IEnumerable<IConfiguration>" as IConfigurationsImport Bootstrapper [#blue]-> IConfigurationsImport : <<create>> note right Implicitly created through MEF end note deactivate Bootstrapper create ":ModuleManager" as ModuleManager SessionManager -> ModuleManager : <<create>> SessionManager <-- ModuleManager create ":ConfigurationManager" as ConfigurationManager SessionManager -> ConfigurationManager : <<create>> SessionManager <-- ConfigurationManager SessionManager -> Bootstrapper : ComposeImports(ModuleManager) activate Bootstrapper Bootstrapper -> ModuleManager : <<Import IModules, GlobalModuleConfiguration through MEF>> deactivate Bootstrapper SessionManager -> Bootstrapper : ComposeImports(ConfigurationManager) activate Bootstrapper Bootstrapper -> ConfigurationManager : <<Import IConfiguration through MEF>> create ":MPEGEncoder" as MPEGEncoder Bootstrapper -> MPEGEncoder : <<create through MEF>> Bootstrapper <-- MPEGEncoder create ":JsonEncoder" as JsonEncoder Bootstrapper -> JsonEncoder : <<create through MEF>> Bootstrapper <-- JsonEncoder create ":JsonDecoder" as JsonDecoder Bootstrapper -> JsonDecoder : <<create through MEF>> Bootstrapper <-- JsonDecoder create ":DesktopCapture" as DesktopCapture Bootstrapper -> DesktopCapture : <<create through MEF>> Bootstrapper <-- DesktopCapture create ":JsonIntermediateFormatSerializer" as JsonIntermediateFormatSerializer Bootstrapper -> JsonIntermediateFormatSerializer : <<create through MEF>> Bootstrapper <-- JsonIntermediateFormatSerializer create ":JsonIntermediateFormatDeserializer" as JsonIntermediateFormatDeserializer Bootstrapper -> JsonIntermediateFormatDeserializer : <<create through MEF>> Bootstrapper <-- JsonIntermediateFormatDeserializer deactivate Bootstrapper SessionManager -> ConfigurationManager : LoadConfiguration(path) activate ConfigurationManager ConfigurationManager -> IConfigurationsImport : <<foreach>> Parse(section) SessionManager <-- ConfigurationManager deactivate ConfigurationManager SessionManager -> ModuleManager : InitializeModules() activate ModuleManager ModuleManager -> IModulesImport : <<foreach>> Initialize() SessionManager <-- ModuleManager deactivate ModuleManager ApplicationViewModel <-- SessionManager deactivate SessionManager UIApp <-- ApplicationViewModel deactivate ApplicationViewModel deactivate UIApp @enduml
false
true
false
false
usecase
c9f9ef98de6262e3747aaa04c475853959942ab9
f8e357daee592f0c24cd2e5778c643a77b4a6404
/06classdiagram/24_classdiagram_notestolink.puml
7ff8cfab096b2241d9834150e88713a0a00cd301
[]
no_license
jahmanitheone/plantuml
bd3914c882d79157f387aa84268510edbebb05c2
dda0a93ca7caabf456c96bd9ef8249c1f3ddf9a1
refs/heads/main
2023-01-01T12:40:34.242849
2020-10-22T17:01:59
2020-10-22T17:01:59
306,404,003
0
0
null
null
null
null
UTF-8
PlantUML
false
false
290
puml
' 'ClassDiagrams: More on notes ' ' '-------------------------------------- ' @startuml class Dummy Dummy --> Foo : A link note on link #red: note that is red Dummy --> Foo2 : Another link note right on link #blue this is my note on right link and in blue end note @enduml
false
true
false
false
sequence
f902ecc79f254041e52d9e3d53e873b618b6ff8c
1403a1d6fba7e765648cb98b1acb8622d7e0ccf1
/ue02_enum1/wordcounter.puml
d375044337b4a72c0aa426ee7646cd11de6a2f2b
[]
no_license
LeqitSebi/sew4_sem1_java
a17be9d4382f8b44af26eb1f26999b5b229e1ca8
a0784099a595004e426848d979e9e28058dba1dd
refs/heads/master
2023-06-03T19:10:03.277187
2021-06-23T06:00:57
2021-06-23T06:00:57
295,330,557
0
0
null
null
null
null
UTF-8
PlantUML
false
false
462
puml
@startuml scale 350 width state wordcounter { [*] --> OUT_WORD : counter = 0 OUT_WORD --> IN_WORD : Buchstabe/Ziffer, counter++ OUT_WORD --> OUT_WORD : * IN_WORD --> IN_WORD : Buchstabe/Ziffer IN_WORD --> OUT_WORD : * OUT_WORD --> IN_TAG : '<' IN_TAG --> OUT_WORD : '>' IN_TAG --> IN_TAG : * IN_TAG --> IN_STRING : '"' IN_STRING --> IN_TAG : '"' IN_STRING --> IGNORE : '\' IGNORE --> IN_STRING : * IN_STRING --> IN_STRING : * } @enduml
false
true
false
false
sequence
642d16db778b7b5a45a5b429be1875dd36d31f38
fdd8ebcb6d5b490afbe617c92778dbe1ee7bb40a
/quarkus-workshop-super-heroes/docs/src/main/plantuml/rest-openapi-architecture-diagram.puml
c4bda72d49af96264658de41a261f3f96affc4ca
[ "Apache-2.0" ]
permissive
FroMage/quarkus-workshops
09c6069ebfa94d17803572ed7566eab7497aa53e
afd493103636d758121ccaa60ee132cdbc40d103
refs/heads/master
2020-08-07T23:12:16.848316
2019-10-08T09:36:29
2019-10-08T09:36:29
213,618,501
0
0
Apache-2.0
2019-10-08T10:56:27
2019-10-08T10:56:26
null
UTF-8
PlantUML
false
false
836
puml
@startuml skinparam dpi 300 allow_mixing hide empty members left to right direction !define exception(name) class name << (E,#FFAAAA) >> node Postgres as postgres <<5433>> { database "heroes-database" as db } node Quarkus as quarkus <<8083>> { package "hero-api" as heroapi { entity Hero class HeroApplication class HeroResource class HeroService artifact "index<U+002E>html" as index artifact "application<U+002E>properties" as properties artifact "import<U+002E>sql" as import HeroResource ..> HeroService HeroResource .> Hero properties .[hidden].> import Hero .[hidden].> index } } package "tests" as tests { class HeroResourceTest class NativeHeroResourceIT } quarkus ....> postgres heroapi .[hidden].> tests @enduml
false
true
false
false
sequence
47bbfb800ec56c89d4eae86092369c684bef309a
8b481d59d147670b6d99b6daef4e4e72b9bca153
/html/doc/Html.puml
bfa7c62dfa0e4c1282e32ee542c65ef76bf36a37
[]
no_license
suzuki-hoge/modeling
d74f9f629eab105ba2d01698b505d582625b6ef8
ebe3f5a38162dafae4fc19badf052ce41e1fd100
refs/heads/master
2020-05-27T03:50:18.800007
2017-02-26T09:09:55
2017-02-26T09:53:40
82,522,649
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,396
puml
@startuml package domain { package attribute { class Id { String value } class Class { String value } class Href { String value } class Value { String value } class MaxLength { Int value } class Name { String value } } package element { package block_element { interface BlockElement class Div { <Id> id [Class] classes [AllElement] elements } class P { <Id> id [Class] classes [ElementWithoutBlockElement] elements } package table { class Table { <Id> id [Class] classes } class Thead { <Id> id [Class] classes Tr<Th> header } class Tbody { <Id> id [Class] classes [Tr<Td>] data } class Tr<T extends RowElement> { <Id> id [Class] classes [T] elements } interface RowElement class Th { <Id> id [Class] classes [AllElement] elements } class Td { <Id> id [Class] classes [AllElement] elements } Table -down->"0..1" Thead Table -down->"0..1" Tbody Table -down->"*" Tr Thead -down->"1..*" Tr Tbody -down->"1..*" Tr Tr -down->"1..*" RowElement Th -up-|> RowElement Td -up-|> RowElement } Div -up-|> BlockElement P -up-|> BlockElement Table -up-|> BlockElement } package inline_element { interface InlineElement class Span { <Id> id [Class] classes [ElementWithoutBlockElement] elements } class A { <Id> id [Class] classes [ElementWithoutBlockElement] elements } class Br { <Id> id [Class] classes } package input { class InputText { <Id> id [Class] classes Name name Value value } class InputCheckBox { <Id> id [Class] classes Name name Value value Check check } class InputRadios { Name name } class InputRadio { <Id> id [Class] classes Value value Check check } Enum Check { Checked NotChecked } InputText -up-|> InlineElement InputCheckBox -up-|> InlineElement InputRadios -up-|> InlineElement InputCheckBox -down-> Check InputRadios -down->"2..*" InputRadio InputRadio -down-> Check } Span -up-|> InlineElement A -up-|> InlineElement Br -up-|> InlineElement } package text { class Text } interface ElementWithoutBlockElement InlineElement -up-|> ElementWithoutBlockElement Text -up-|> ElementWithoutBlockElement interface AllElement { + String toString(Indent) + [AllElement] find(TagNameCondition) + [AllElement] find(ClassCondition) # Bool match(TagNameCondition) # Bool match(ClassCondition) } BlockElement -up-|> AllElement ElementWithoutBlockElement -up-|> AllElement } package list { class AtLeastOne<T> { [T] values - AtLeastOne([T]) + {static} of(T, T...) } class AtLeastTwo<T> { [T] values - AtLeastTwo([T]) + {static} of(T, T, T...) } } package string_convert { class TagConverter { Indent indent TagName tagName Id id [Class] classes + TagConverter(Indent, TagName, Id, [Class]) + {static} open() + {static} noClose() + {static} open(Href) + {static} noClose(Name, Value) + {static} noClose(Name, Value, Check) + {static} close() } class Indent { - Int width - String char - Indent(Int, String) + {static} Indent init(String) + String toString() + Indent deeply() } } package condition { class TagNameCondition { - TagName value + Bool match(TagName) } class ClassCondition { - Class value + Bool match([Class]) } } } @enduml
false
true
false
false
class
efa804de039ed76d9fb406ac6bb1a9369bf73a46
790e0e66a48b1e307fa3bc1d6edcc0b613e3d646
/Admin/admin_parts.puml
8b50b0412237f53ff00bf36494daf95d2b1be8c3
[]
no_license
momenttech/maestro-architecture
381aae75ed4051aae895f31fc22586cb389f96b6
5ac8d208dc6da46d517f619882f1744e1fda2086
refs/heads/master
2023-03-18T12:21:38.601546
2021-03-17T10:29:32
2021-03-17T10:29:32
276,158,302
0
1
null
null
null
null
UTF-8
PlantUML
false
false
7,596
puml
@startuml Admin !includeurl https://raw.githubusercontent.com/momenttech/plantuml/master/globals/commons.puml '!include ./globals/commons.puml 'skinparam linetype ortho 'skinparam linetype polyline 'left to right direction 'top to bottom direction skinparam nodesep 30 skinparam ranksep 20 'scale 1 skinparam Entity<<FINDREP>>{ FontColor black BorderColor $PURPLE BackgroundColor #Yellow/Blue } skinparam Entity<<FAISS>>{ FontColor black BorderColor $PURPLE BackgroundColor #Blue/White } skinparam arrow<<TEST>> { Thickness 1 Color $SUCCESS FontColor $FGCOLOR } skinparam arrow<<INTRA>> { Color $GRAY } !procedure $make_docker_config($display) !if ($display != "") $DockerConfig("AdminModule") { !if ($display == "all") || ($display == "variables") $DockerVariables("AdminModule", \ "RMQ_IP: <i>RMQ broker</i>\n\ GIT_SERVER: <i>Git server address</i>\n\ GIT_BRANCH: <i>Kingdom branch</i>\n\ DOMAIN: <i>Git DOMAIN</i>\n\ GIT_PROJECT: <i>Git project in $GIT_DOMAIN</i>\n\ TARGET: <i>Pod's destination (ex: prod, test ...)</i>", \ \ "RMQ_USER = ...\n\ RMQ_PASSWD = ...\n\ RMQ_EXCHANGE = <i>amq.topic</i>\n\ RMQ_TOPIC = <i>$GIT_DOMAIN.$GIT_PROJECT.$TARGET</i>\n\ ENCODER_QUEUE = <i>tbott-encoder</i>\n\ RMQ_PORT = <i>5672</i>\n\ LOG_LEVEL= <i>INFO</i>") !endif ' !if ($display == "all") || ($display == "ports") ' $DockerPorts("AdminModule",\ ' "127.0.0.1:<b>14001</b>") ' !endif !if ($display == "all") || ($display == "volumes") $DockerVolumes("AdminModule",\ "<b>logs</b> -> /var/log/supervisor\n\ <b>data_dir</b> -> /opt/admin") !endif !if ($display == "all") || ($display == "extra") '$DockerExtra("AdminModule", "test", "content") !endif } !endif !endprocedure !procedure $make_content($display) !if ($display == "all") || ($display == "AdminIndex") frame "Pod communications" as AdminPodCom { component ADM_MSG [ from [[http://10.165.64.205/AI/Messaging Messaging]] import zeromq ---- <color:teal>zeromq.ThreadedWorker(</color> <color:teal> <i><b>callback_func</b></i>,</color> <color:teal> 127.0.0.1,</color> <color:teal> <b>14001</b>)</color> --- ThreadPool ] } AdminPodComInterface o-l-> ADM_MSG<<request>> !endif !if ($display == "all") || ($display == "AdminIndex") frame "Data Access" as AdminDataAccess { component AdminGetData [ get_all_categories() ---- get_questions_from_ids() ] } ADM_MSG o..> AdminGetData: Thread N ADM_MSG o..> AdminGetData: Thread N+1 !endif !if ($display == "all") || ($display == "AdminEntryPoint") frame "Entry Point" as AdminEntryPoint { component ADMIN_MSG_C [ from [[http://10.165.64.205/AI/Messaging Messaging]] import topic_routing ---- <i><color:teal>backend_com(</color></i> <i><color:teal>host=<b>$RMQ_IP</b></color></i> <i><color:teal>username=$RMQ_USER</color></i> <i><color:teal>password=$RMQ_PASSWD</color></i> <i><color:teal>exchange=$RMQ_EXCHANGE</color></i> <i><color:teal>topic=$COMMAND_TOPIC</color></i> <i><color:teal>port=$RPC_PORT)</color></i> ---- on_request(msg) ] } AdminRMQ_IN o-0)-> ADMIN_MSG_C: Get\nCommand\nmsg 'AdminRMQ_OUT <-0)-o ADMIN_MSG_C: Send reply !endif !if ($display == "all") || ($display == "AdminExecCommand") frame "Execute Command" as AdminExecCommand { [Topic routing] as AdminTopicRouting [result] as AdminRes [Test questions] as AdminMasterCmd [Master Election process] as AdminElectMaster [Checkout git project] as AdminCheckout [Get git differences] as AdminGetDiff [Create list of questions] as AdminCreateQuestions [Data augmentation\nwith N1 and N2\ncategories (or contexts)] as AdminDataAugment [Get vectors from Bert encoder] as AdminEncodeSent [Create/Update questions index] as AdminCreateIndex [Send command to create/update FAISS index] as FaissCmd } !if ($display == "AdminExecCommand") interface "request" as ADMIN_MSG_REQ interface "reply" as ADMIN_MSG_REP ADMIN_MSG_REQ -d-> AdminTopicRouting AdminRes -u-> ADMIN_MSG_REP !endif !if ($display == "all") ADMIN_MSG_C -d-> AdminTopicRouting AdminRes -u-> ADMIN_MSG_C !endif $small_notes("AdminTopicRouting",\ "NB: if last msg < X mins\nthen GUI can send\ndirect messages\nfor tests",\ ".d.") AdminTopicRouting --> AdminElectMaster<<INTRA>>: $DOMAIN.\n$PROJECT.\n$TARGET.\n# AdminElectMaster -l-> AdminMasterCmd<<TEST>>: tests AdminMasterCmd o-l-> FindReply<<TEST>>: tests AdminMasterCmd -u-> AdminRes<<TEST>> AdminTopicRouting --> AdminMasterCmd<<TEST>>: $DOMAIN.\n$PROJECT.\n$TARGET.\nmaster AdminElectMaster --> AdminCheckout<<INTRA>>: create/update AdminCheckout o-l-> GitRepo: git checkout AdminCheckout --> AdminGetDiff<<INTRA>> AdminGetDiff --> AdminCreateQuestions<<INTRA>> AdminCreateQuestions --> AdminDataAugment<<INTRA>> AdminDataAugment --> AdminEncodeSent<<INTRA>> AdminEncodeSent o-l0)-> AdminEncoder AdminEncodeSent --> AdminCreateIndex<<INTRA>> AdminCreateIndex --> FaissCmd<<INTRA>> FaissCmd -l-> Faiss FaissCmd ..u-> AdminRes<<INTRA>> !endif !if ($display == "all") || ($display == "AdminIndex") || ($display == "AdminExecCommand") database "Questions Index" as AdminIndex { frame "RWLock¹" as AdminRWLock { !if ($display == "all") || ($display == "AdminIndex") component "read" as admin_read !endif !if ($display == "all") || ($display == "AdminExecCommand") component "<b>write</b>\n<i>prioritized</i>" as admin_write !endif } } 'note bottom of AdminIndex: view example in docs '$small_notes("AdminIndex", "View example in documentation") !if ($display == "all") || ($display == "AdminExecCommand") AdminCreateIndex o-l-> admin_write !endif !if ($display == "all") || ($display == "AdminIndex") AdminGetData o--> admin_read !endif !endif !endprocedure ' legend ' (1) RWLock lib: ' [[https://github.com/elarivie/pyReaderWriterLock]] ' endlegend @enduml
false
true
true
false
sequence
2877f9a5f7b53d86adb6d59fff5a5dafc5245759
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/GraphQLSemanticErrorError.puml
a2cce0ec76784518ffe901f9a98a64f670077619
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
418
puml
@startuml hide empty fields hide empty methods legend |= |= line | |<back:black> </back>| inheritance | |<back:green> </back>| property reference | |<back:blue> </back>| discriminated class | endlegend interface GraphQLSemanticErrorError [[GraphQLSemanticErrorError.svg]] extends GraphQLErrorObject { code: String } interface GraphQLErrorObject [[GraphQLErrorObject.svg]] { code: String } @enduml
false
true
false
false
class
1f5a3e5ed64d6f4d5759a257a09009b5ef932d56
235ba458ef641662bf792edbe559168aad48c7c0
/doc/user-swap-schema.plantuml
c5f6a061911266b45e88e0c877abd566de845c92
[]
no_license
swapmyvote/swapmyvote
497e3e4061eaca7b7d62a8e979c73c397387795d
ff386706c5dade995db3e44c4df7a747340baadb
refs/heads/master
2023-04-18T05:02:52.793935
2023-03-16T13:28:07
2023-03-16T13:28:07
31,332,484
14
24
null
2023-04-12T06:34:11
2015-02-25T19:46:24
Ruby
UTF-8
PlantUML
false
false
1,661
plantuml
@startuml title User / Swap relationship - class diagram / db schema !pragma horizontalLineBetweenDifferentPackageAllowed scale 600 height ' skinparam nodesep 600 left to right direction package "Incoming swap to chosen user" { class "User" as User3 { id \t\t INTEGER .. swap_id \t INTEGER } class "User" as User4 { id \t\t INTEGER .. swap_id \t INTEGER } class "Swap" as Swap3 { id \t\t\t INTEGER .. chosen_user_id \t INTEGER confirmed \t\t BOOLEAN } class "Swap" as Swap4 { id \t\t\t INTEGER .. chosen_user_id \t INTEGER confirmed \t\t BOOLEAN } User3 "0..1" <-- Swap3::chosen_user_id : < belongs_to\n:chosen_user,\nclass_name: "User" User4 -- "1" Swap4::chosen_user_id : has_one\n:incoming_swap,\nclass_name: "Swap",\nforeign_key: "chosen_user_id" > User3 -[hidden]left-> User4 Swap3 -[hidden]left-> Swap4 } package "Outgoing swap by choosing user" { class "User" as User1 { id \t\t INTEGER .. swap_id \t INTEGER } class "User" as User2 { id \t\t INTEGER .. swap_id \t INTEGER } class "Swap" as Swap1 { id \t\t\t INTEGER .. chosen_user_id \t INTEGER confirmed \t\t BOOLEAN } class "Swap" as Swap2 { id \t\t\t INTEGER .. chosen_user_id \t INTEGER confirmed \t\t BOOLEAN } User1::swap_id --> "0..1" Swap1 : belongs_to\n:outgoing_swap,\nclass_name: "Swap",\nforeign_key: "swap_id" > User2::swap_id "1" *-- Swap2 : < has_one :choosing_user,\nclass_name: "User" User1 -[hidden]left-> User2 Swap1 -[hidden]left-> Swap2 } User2 -[hidden]right-> User3 Swap2 -[hidden]right-> Swap3 @enduml
false
true
false
false
sequence
747c91eb3058c18d2f525c01e8a4645b2f0d245d
c8cd2e6205f4bece82252fe719649b325b1851ae
/snsSystemContext2.plantuml
901579db722d6a6f9d6bbf8821a663024aa71023
[]
no_license
muirandy/plant-uml-experiments
888abb240a09d37d7f8eb9332159fcbc3f9b38e8
b2768e8bb0bf0eb24071eed90a7bb03d5bba2aef
refs/heads/master
2022-03-19T10:29:13.810435
2019-12-18T13:40:07
2019-12-18T13:40:07
225,859,461
0
0
null
null
null
null
UTF-8
PlantUML
false
false
701
plantuml
@startuml skinparam rectangleFontColor black skinparam queueFontColor black skinparam databaseFontColor black skinparam rectangleBackgroundColor lightyellow skinparam queueBackgroundColor lightyellow skinparam databaseBackgroundColor lightyellow skinparam rectangleBorderColor blue skinparam queueBorderColor blue skinparam databaseBorderColor blue title Provisioning System Context rectangle "UKIS North" as UkisNorth 'rectangle "OpenReach" rectangle "Genband" rectangle "SPG" rectangle "Provisioning" as Provisioning rectangle Services UkisNorth-down->Provisioning 'OpenReach-right->Provisioning Provisioning-up->UkisNorth Provisioning-->Genband Provisioning-->SPG Provisioning->Services @enduml
false
true
false
false
uml-unknown
f50c4a66b31d26441f5382f29694cae5bda7baf1
1bb1c097237b01cd71de26efa466c24737ff89fe
/diagrammes/src/class.puml
2bec6efd12db602b8d0a627cf2007e67e7b9ef44
[]
no_license
assimhabeek/memoire
4934892d884848692d9bf3f16dbd83ee5fbbcec1
f11fd97c6a7a75dd681cf11408ff519e67656c7f
refs/heads/master
2021-03-22T05:12:20.753268
2018-05-01T16:25:14
2018-05-01T16:25:14
121,604,872
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,141
puml
@startuml skinparam backgroundColor #fff skinparam defaultFontColor #37474f skinparam defaultFontSize 18 skinparam defaultFontName serif skinparam defaultFontStyle normal skinparam classAttributeIconSize 0 skinparam classBackgroundColor #fff skinparam classBorderColor #000 skinparam classArrowColor #000 hide class circle class "Spécialité" as specialty{ -id : long -abb : String -nom : String -DeAnnée : int -JusquAnnée : int trouverParAnnée(annee : int) } class "Module" as module{ -id : long -abb : String -nom : String -annee : int -semestre : int } class "Utilisateur" as user{ -id : long -nomUtilisateur : String -passe : String -prenom : String -nom : String -description : String -email : String -annee : int -spécialité : Specialite -ImageProfil : String -admin : boolean -vérifié : boolean trouverPar(nomUtilisateur:String) trouverPar(nomUtilisateur:String,passe : String) envoyerEmailInscription(id : long,email : String) validerCompte(id : long) envoyerEmailRécupération(id : long , email : String) changerPasse(id: Long, pass: String) MettreÀJourProfil(ut : Utilisateur) } class "Contribution" as contribution { -id : long -description : String -date : Date } class "Publication" as post{ -titre :string -trouverPar(filtre : List()) -supprimer(id: long) } user "0..*" -- "0..*" user (user, user) .. Ami (user, user) .. Chat class Ami{ état : int } class Chat{ message : String date : Timestamp } class "Catégorie" as category{ -id : Long, } class "Commentaires" as comments { trouverAvecPublication(idPub : int) } class "Attachement" as media{ id : long nom : String link : String trouverAvecPublication(idPub : int) } user *-- "0.*" contribution : " est contribué par " user "1.*" --o "1" specialty : "Appartient à" specialty *- "1.*" module : "est enseigné dans " post "0.*" ---o "0.1" module : "Appartient à " post "0.*" --o "0.1" specialty : "Appartient à " post "0.*" --o "1" category : "Appartient à " post "1.*" o-- "0.*" media : "Attaché" contribution <|- post contribution <|- comments post "1" -* "0.*" comments : \tcontient\t @enduml
false
true
true
false
class
6d067179265f338bb549e22eca1a36bf12d8ec4a
c3405c549f64abdca64b8294af2c9d0184136caa
/diagram/nfm_handler.puml
4879fc439d5b1bd9923c845f1be09101a49db733
[]
no_license
erfanw/SDN-distributed-monitoring-as-a-service
ed670c8e43e17314134c2ca5c7fc3b2c55e576d0
12e506cc761cd987ccea99aa9c638841b9e7e022
refs/heads/main
2023-03-17T14:26:03.663365
2021-03-11T19:58:26
2021-03-11T19:58:26
346,821,052
1
0
null
null
null
null
UTF-8
PlantUML
false
false
629
puml
@startuml actor switch actor database boundary port_stats_requester boundary port_stats_handler control monitor entity port_stats_processor control db_api activate monitor monitor -> port_stats_requester : periodically request port statistics activate port_stats_requester port_stats_requester --> switch : send OPFPortStatsRequest switch -> port_stats_handler : send OPFPortStatsReply activate port_stats_handler port_stats_handler --> port_stats_processor : forward stats for further process activate port_stats_processor port_stats_processor --> db_api : push data to db activate db_api db_api -> database @enduml
false
true
false
false
sequence
693a87e880570dc8f18d0c0c7ff1bc877a4d1ab9
8c59fbc94a2ba7fa9a12c10991fe334cda0df128
/metrics/web/docs/features/deep_links/diagrams/deep_links_integration_component_diagram.puml
6c306b2597c9db10086bbe894a796d8fb54ada4b
[ "Apache-2.0" ]
permissive
solid-vovabeloded/flank-dashboard
7e952fa1399585d3f15cae2ed2cab435fb82df3f
15dae0c40823cc12886a1bb0c087442c0697ac89
refs/heads/master
2023-07-11T19:54:58.430004
2021-08-06T10:29:26
2021-08-06T10:29:26
389,593,827
0
0
Apache-2.0
2021-07-26T10:33:52
2021-07-26T10:25:59
null
UTF-8
PlantUML
false
false
1,132
puml
@startuml deep_links_integration_component_diagram skinparam componentStyle rectangle legend top left | Color | Arrow type | |<#B70033>| Existing relationship | |<#Green>| New relationship | endlegend component "Browser History" as History #A9DCDF component Browser #A9DCDF package "Metrics Web" { component RouteInformationProvider component RouteInformationParser component RouterDelegate component NavigationState component NavigationNotifier component ApplicationState } History -right-> Browser: provides URLs Browser -down-> RouteInformationProvider: URL RouteInformationProvider -down-> RouteInformationParser: routeInformation RouteInformationParser -down-> RouterDelegate: routeConfiguration RouterDelegate -down-> NavigationNotifier: delegate handling\n new routeConfiguration NavigationNotifier -right-> NavigationState: updates NavigationNotifier -[#Green]up-> ApplicationState: updates ApplicationState -[#Green]up-> NavigationNotifier: UI events \n (e.g. filtering, searching, \n back button pressed) NavigationNotifier -[#Green]up-> History: updates URL query parameters @enduml
false
true
false
false
sequence
4e35734556eaca9cc53dd30b6778cb920a152aab
bbd445af163123afc512986dc4e69bf39946a718
/UML/arm/iot/spring/dependencyInject/InjectElement.puml
7686a29662f24ddf5557c7dd5d1222929e8456ea
[]
no_license
long437611591/leither-learning
6216e38662e2b045e1784651111f6d1c0765b63d
a9189d9f97f153034de0f972d830681f881ea52f
refs/heads/master
2022-12-04T15:03:05.353300
2020-08-18T15:13:46
2020-08-18T15:13:46
285,238,265
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,764
puml
@startuml class InjectionMetadata{ inject(Object target, @Nullable String beanName, @Nullable PropertyValues pvs); } abstract class InjectedElement{ protected final Member member; protected final boolean isField; inject(Object target, @Nullable String requestingBeanName, @Nullable PropertyValues pvs); checkPropertySkipping(@Nullable PropertyValues pvs); inject(Object target, @Nullable String beanName, @Nullable PropertyValues pvs); } InjectedElement +-- InjectionMetadata InjectedElement o-- InjectionMetadata abstract class InstantiationAwareBeanPostProcessorAdapter{ } interface MergedBeanDefinitionPostProcessor{ void postProcessMergedBeanDefinition(RootBeanDefinition beanDefinition, Class<?> beanType, String beanName); } class AutowiredFieldElement{ private final boolean required; private volatile boolean cached = false; inject(Object bean, @Nullable String beanName, @Nullable PropertyValues pvs); } class AutowiredAnnotationBeanPostProcessor{ public void postProcessMergedBeanDefinition(RootBeanDefinition beanDefinition, Class<?> beanType, String beanName) {...InjectionMetadata metadata = findAutowiringMetadata(beanName, beanType, null)}; } AutowiredFieldElement +-- AutowiredAnnotationBeanPostProcessor InjectedElement <|-- AutowiredFieldElement class AutowiredMethodElement{ private final boolean required; private volatile boolean cached = false; inject(Object bean, @Nullable String beanName, @Nullable PropertyValues pvs); } InjectedElement <|-- AutowiredMethodElement AutowiredMethodElement +-- AutowiredAnnotationBeanPostProcessor MergedBeanDefinitionPostProcessor <|-- AutowiredAnnotationBeanPostProcessor InstantiationAwareBeanPostProcessorAdapter <|.. AutowiredAnnotationBeanPostProcessor @enduml
false
true
false
false
class
3b656eb47486a600a2f8eda87234b2d0b1edb945
e7b7df0cf36cf83e9c440c3a81f4f85193e37a72
/2 Use Case Diagram/12 Complete example.puml
15516e0bb36c64f5433fdd393524e2960e9b32f7
[ "MIT" ]
permissive
jys129/PlantUML
38dd154cc9a45d3206abf26f95bfb45e32d4c186
f0e62bf90332a1a541ded76d2101ebdd9215adaa
refs/heads/master
2023-03-16T15:54:12.053012
2020-10-18T15:49:08
2020-10-18T15:49:08
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
253
puml
@startuml left to right direction skinparam packageStyle rectangle actor customer actor clerk rectangle checkout { customer -- (checkout) (checkout) .> (payment) : include (help) .> (checkout) : extends (checkout) -- clerk } @enduml
false
true
false
false
usecase
93b274fe7c2e6c763b055784d310af6f3d2ca55c
517208273659ef0284fd313068647d7344d0774c
/server/src/main/resources/UI_Interaction.puml
7c51b8bd0cce49bb5df439271842e14f9f12e78e
[ "MIT" ]
permissive
DataBiosphere/welder
f0cc16173eaa64b1aeeca27c85b4758ac0e45189
6648f5cc6ff170b7413c2561e3a8eb1bce76ab6c
refs/heads/master
2023-08-27T06:08:52.159942
2022-12-01T15:51:12
2022-12-01T15:51:12
175,476,487
6
2
MIT
2023-09-14T12:05:23
2019-03-13T18:23:43
Scala
UTF-8
PlantUML
false
false
2,610
puml
@startuml participant TerraUI box "Leo VM" participant JupyterUIExtension participant JupyterServerExtension participant Welder end box participant GCS TerraUI -> GCS ++: isLocked? alt No Lock or locked by current user GCS -> TerraUI: note left: Enable EDIT button else LockBy someone else return note left: Disable EDIT mode button end TerraUI -> Welder: POST /storageLinks note left: update storagelink for a given notebook(both SAFE mode and EDIT mode) TerraUI -> Welder: localize note left: localize file to corresponding location JupyterUIExtension -> Welder ++ #F8C471: /checkMeta (syncMode) alt 200 SyncMode.EDIT Welder -> JupyterUIExtension: EDIT mode JupyterUIExtension -> Welder: /acquireLock alt 200 successfully acquire Lock Welder -> JupyterUIExtension: No Lock or locked by current user loop every 30 seconds? JupyterUIExtension -> Welder ++ #F4D03F: /checkMeta alt SyncStatus.LIVE Welder -> JupyterUIExtension: file is live else SyncStatus.REMOTE_NOT_FOUND Welder -> JupyterUIExtension: remote file deleted or never existed note left: Prompt user whether they want to save the file else SyncStatus.DESYNCHRONIZED Welder -> JupyterUIExtension: file is out of sync and we don't know exactly this is due to local change or remote change note left: prompt user to input (https://projects.invisionapp.com/share/RTQ5TOUH8FB#/screens/367473450) else SyncStatus.LOCAL_CHANGED Welder -> JupyterUIExtension: local notebook changes not saved to GCS note left: prompt user to input (https://projects.invisionapp.com/share/RTQ5TOUH8FB#/screens/367473450) else SyncStatus.REMOTE_CHANGED return: remote copy in GCS has changed note left: prompt user to input (https://projects.invisionapp.com/share/RTQ5TOUH8FB#/screens/367473450) end end else lockedBy someone else Welder -> JupyterUIExtension: Locked by someone else note left: prompt user to choose 1. make a new copy 2. go to safe mode with current file 3. go to SAFE mode with latest remote file end group FileContentsManager.save() hook (whenever a file gets created/deleted/moved/saved via the Jupyter API) JupyterServerExtension -> Welder: /safeDelocalize end else 200 SyncMode.SAFE Welder -> JupyterUIExtension: SAFE mode else 412 StorageLink not found return storagelink not found for this file. end @enduml
false
true
false
false
sequence
dad3212f46ae73a34fddf5b58590284c61eca9ca
afe3dc5d7b1af42f33d4b4277eb99ad7129cb310
/RaiderRoad/Assets/Scripts/docs/Architecture.puml
75abdd719cad58313ce9a43f2efb769a0a0dd4d5
[]
no_license
OutOfHandInteractive/RaiderRoad
d2ea743f29ca82d0428bbc2f6468b44fa6889d6f
aa53607e97e71bf403f1fcca7be93cc252acc1fc
refs/heads/master
2020-03-30T14:46:06.958616
2019-05-10T09:23:51
2019-05-10T09:23:51
151,335,200
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,108
puml
@startuml '' Architecture skinparam backgroundColor transparent skinparam monochrome true skinparam shadowing false actor Player frame Hardware { component Controller component Monitor } frame RaiderRoad { package Unity { component Rewired <<External Plugin>> component Renderer } package Scenes { rectangle MainMenu rectangle Lobby rectangle Game } package GameObjects { component Events component VehicleFactory component PlayerController{ rectangle Drive rectangle Steal } component PlayerPlacement{ component Build rectangle Fight } rectangle RV component EnemyAI{ component Raiders component Vehicles } } } Player -> Controller : Input Player <- Monitor : Visual Controller -> Rewired Monitor <- Renderer Scenes -right-> Renderer MainMenu -> Lobby Lobby -> Game Scenes -down-> GameObjects : Spawns Events -> VehicleFactory VehicleFactory --> Vehicles : Builds VehicleFactory --> Raiders : Builds 'Renderer <-- GameObjects Rewired --> PlayerController PlayerController --> PlayerPlacement Raiders <-> Vehicles : Radio Drive --> RV @enduml
false
true
true
false
sequence
64385c941fee89702452685b42ebaf6813c4a85e
5556113ce914f506bc610dbd2f75994db49be4d6
/Conception/Diagramme de classes.puml
d1311fa11c283a165d9dc41e27a8a8189ab177fa
[]
no_license
flamy39/produits
96c8d1b2d1674f6a80ef074a30ef1fd2570e355d
7ce1e6a6381b8dcbb40e36bcffee75354b0723b7
refs/heads/master
2023-01-15T01:23:02.542718
2020-11-18T17:32:39
2020-11-18T17:32:39
314,009,277
0
0
null
null
null
null
UTF-8
PlantUML
false
false
241
puml
@startuml Produit "*" -- "1..*" Categorie: appartient > class Produit { -id : integer -nom : string -description : text -prix : integer -promo : boolean } class Categorie { -id : integer -nom : string } @enduml
false
true
false
false
class
1bf3437c5a325dab1350965b6873d38eb4bcdca7
7c2a17fd3d19a13fb71558f79900a2908de98c58
/docs/uml-class-diagrams/display01/test/MiddlewareGisInterfaceStub/MiddlewareGisInterfaceStub.puml
30d9f895757c7392a8400e768d1d3f475126295e
[]
no_license
casher-ou/csi-3370-software-project
483b1add9fbab8349f30009eecc123c884bdcc7b
629fb9cce10429c2b80bd1ad33ab898d1466883b
refs/heads/main
2023-01-22T00:44:50.062944
2020-11-29T23:00:50
2020-11-29T23:00:50
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
330
puml
@startuml MiddlewareGisInterfaceStub package edu.oakland.test.display01 { class MiddlewareGisInterfaceStub { __ .. Use Case 1 .. + String receiveGpsSignalStrength(Satellite satelliteSignal) .. Use Case 2 .. + String receiveGpsSignalStrength(Satellite satelliteSignal) } } @enduml
false
true
false
false
class
901dc94f6f9b1b8c707f96405ec2fc9fa3ed93bc
495bd76445eafbf55ff3a3ff30f57d6d887d0697
/out/production/DesignPatterns/adapterpattern/UML/ClassDiagram.puml
c565d44682961e1e7906ddc91229f06f0f56d71c
[]
no_license
alexfoglia/DesignPatterns
62a5da12f3fe2ddd7eca37f52f6eb0f0e49093ef
89bf7e552a7d91d25b903d4db5f68ccdef9be9a7
refs/heads/main
2023-03-14T22:26:28.144741
2021-02-25T15:38:19
2021-02-25T15:38:19
314,671,175
0
0
null
null
null
null
UTF-8
PlantUML
false
false
227
puml
@startuml title Adapter Pattern class Client { } interface Target { request() } class Adapter implements Target { request() } class Adaptee { specificRequest() } Client --> Target Adapter --> Adaptee @enduml
false
true
false
false
class
cbbea8a642fd8b75261c4938e81e615ce01c5e54
d66eb1032384929151f9708f040e333ee53aa9d2
/docs/sequencediagrams/put-object-clovis-ops/multipart-completemultipartupload.plantuml
d6ecbf7ec2c51755f0fd8887b78b34def1d33560
[ "Apache-2.0" ]
permissive
Seagate/cortx-s3server
2762cbbe352590cdd06e39d8fab5c33e553f0be8
b1987967aec7e24530c9703db6f100d2c8289624
refs/heads/main
2023-07-06T09:04:44.435137
2023-06-26T06:32:53
2023-06-26T06:32:53
254,163,200
38
157
Apache-2.0
2023-06-26T06:32:55
2020-04-08T18:02:07
C++
UTF-8
PlantUML
false
false
1,949
plantuml
@startuml header Multi-Part Upload\n title CompleteMultipartUpload participant "S3 Client" as client participant "S3 Server" as server participant "Motr\nKVS API" as kvs participant "Motr\nObject API" as object autoactivate on client -> server: POST /bucket_name/object_name\n&uploadId=multipart_upload_id server -> kvs: get_keyval(global_bucket_index, key = "bucket_name") kvs --> server: value = account_id of bucket owner server -> kvs: get_keyval(global_bucket_md_index, key = "account_id/bucket_name") kvs --> server: value = bucket metadata JSON server -> kvs: get_keyval(BUCKET_nnn_obj_index, key = "object_name") kvs --> server: value = object multipart upload metadata JSON server -> kvs: get_next(object_nnn_part_index, key = "", count = 30) note left: Loads parts metadata to validate and compose\nextended metadata (for each parts) and final object metadata. kvs --> server: value = up to 30 pairs of part_number/part_metadata_json server -> kvs:put_keyval(BUCKET_nnn_ExtendedMetadata_index, extended_key_value_list) note left: Saves extended metadata of all parts,\nextended metadata index OID is obtained from bucket metadata kvs --> server: success (completed) server -> kvs: put_keyval(BUCKET_nnn_obj_index, key = "object_name", value = "object metadata JSON") note left: Saves metadata of the newly created object. kvs --> server: success (completed) server -> kvs: delete_keyval(BUCKET_nnn_multipart_index, key=object_name|multipart_upload_id) note left: Clean up now unneeded multipart metadata. kvs --> server: success (completed) server -> kvs:delete_index(object_nnn_part_index) note left: remove part index kvs --> server: success (completed) server->client: 200 Ok note over server StartCleanup: * Overwrite case: If state is successful then register/unregister old_object_oid with probable_delete_index and delete old_object its version metadata and extended metadata end note @enduml
false
true
false
false
sequence
a9f933c3a478534961fb4253664eb8c804e765a9
df9103a6deaac8a3ec2955d5f67b94ad7742f898
/images/mediator-pattern.puml
999ba4385958dcecced38637723e3d05e796937c
[ "MIT" ]
permissive
monkiyang/monkiyang.github.io
99090c9e93a002e221477813c6856c2945a50eef
a6232ec205956d410bd403c55ebffb17379a65c9
refs/heads/master
2022-10-10T06:54:48.778322
2022-09-23T09:26:04
2022-09-23T09:26:04
84,815,057
1
0
null
null
null
null
UTF-8
PlantUML
false
false
328
puml
@startuml abstract class Mediator class ConcreteMediator abstract class Colleague class ConcreteColleague1 class ConcreteColleague2 Mediator <|.. ConcreteMediator Colleague <|.. ConcreteColleague1 Colleague <|.. ConcreteColleague2 Mediator <-- Colleague ConcreteColleague1 <-- Mediator ConcreteColleague2 <-- Mediator @enduml
false
true
false
false
class
8f39a20c8841d47c53e15ebe94e4c249d08f2c04
2023eaf5d26a303fd122058dad30f8479700eb08
/uml/expand-all.puml
80e7a4c782c79686de61a2a167f6980316452f39
[]
no_license
elishields/atlas
8216afaf95ee201ff7b5b3d88252ed2c6818a87b
10ac5e6785e7fedf066d79dd45d0f81791d6b31a
refs/heads/master
2021-10-03T10:44:02.552089
2018-12-02T22:42:02
2018-12-02T22:42:02
147,987,956
0
0
null
null
null
null
UTF-8
PlantUML
false
false
608
puml
@startuml title Expand All Actor User Participant ServiceNow Participant View Participant ClientController Participant ServerController Participant GlideSystem Participant GlideRecord User -> View: Click "Expand All" button View -> ClientController: Expand all ClientController -> ServerController: Get all employees ServerController -> GlideRecord: Get all employees GlideRecord -> ServerController: Queried data ServerController -> ClientController: Data object with queried data ClientController -> ClientController: Append queried data to GoJS graph ClientController -> View: Re-render graph @enduml
false
true
false
false
sequence
6c0a60507a1d504e0f07cbb3ba30545397575928
6685224b72d13b0142db384984c3687df0a72511
/content/backend/aspnetcore-todo-api/request-response.puml
ea64902b19ce3a9647f6b2e347ffdf7c7a46dccf
[ "MIT" ]
permissive
semanticlink/howtohypermedia
1cf70be9aa0e06078f464832088d6b8a49198cea
86057a6c6c8c1f3ee0d872339e384c874c9e1ca1
refs/heads/master
2023-01-20T23:59:45.317486
2019-05-27T13:22:44
2019-05-27T13:22:44
156,147,210
4
0
MIT
2023-01-12T09:58:01
2018-11-05T02:06:51
TypeScript
UTF-8
PlantUML
false
false
2,305
puml
@startuml ' Request/Response actor HTTP boundary Controller control UriFactory control RepresentationFactory entity Representation entity Model == Initialisation == Controller --> UriFactory : Map Uri \nto Action note left: RouteAttribute\n(on Action \nwith RouteName \nand params) note right: RouteName == Request == HTTP -> Controller: Matched URI to action activate Controller 'alt Request with optional body (ie POST/PUT/PATCH) case 'Controller -> RepresentationFactory : deserialised representation 'activate RepresentationFactory ' From Representation 'RepresentationFactory --> Model : map representation to model 'deactivate RepresentationFactory 'activate Model 'Model --> RepresentationFactory : return model 'deactivate Model 'activate RepresentationFactory 'RepresentationFactory --> Controller : return model 'deactivate RepresentationFactory 'else Request with params (ie GET/DELETE and also POST/PUT/PATCH) ' From Persistence Controller --> Model : fetch on criteria activate Model Model --> Controller : return model deactivate Model note right Model: Persistence hydration \nof model 'end == Response == Controller -> RepresentationFactory : construct representation deactivate Controller activate RepresentationFactory RepresentationFactory -> Representation activate Representation note right Representation : Serialisable \nrepresentation RepresentationFactory -> RepresentationFactory : build up links activate RepresentationFactory #DarkSalmon RepresentationFactory -> UriFactory : context + params to build uri activate UriFactory note left UriFactory : Map RouteName to params \nback into Controller RepresentationFactory <- UriFactory : return URI deactivate UriFactory deactivate RepresentationFactory RepresentationFactory -> RepresentationFactory : map model to representation activate RepresentationFactory #DarkSalmon RepresentationFactory -> UriFactory : context + params to build uri activate UriFactory RepresentationFactory <- UriFactory : return URI deactivate UriFactory deactivate RepresentationFactory deactivate UriFactory Representation --> RepresentationFactory deactivate Representation RepresentationFactory -> Controller : return representation deactivate RepresentationFactory Controller --> HTTP : Serialise response to media type @enduml
false
true
false
false
usecase
3e4a4d81571ef68b18cd89471cb320e007e35c16
4ac425b5a07f9a8ddcc124a51e62d7dd24e9bba3
/Clase/Prototype/crtpPrototype.puml
3d419a7fd856525b9106750d76e153e19ef8e79e
[]
no_license
jehor737/AYMSSHR2017
d809b68a0798036a66add36c27b441a0549b4fbf
9a2de20a11257274dec781e3c08f82b8db476abb
refs/heads/master
2021-01-15T19:06:35.932984
2017-10-28T02:42:13
2017-10-28T02:42:13
99,808,290
0
0
null
null
null
null
UTF-8
PlantUML
false
false
839
puml
@startuml abstract Class Personaje{ +Personaje()= default; +string nombre; +int telefono; +string correo; +Mundo * mundo; +virtual Personaje * clone() +Personaje(string nombre) : nombre(nombre) } Class Princesa{ +Princesa(string n) +Princesa(const Princesa& p) +void grita() +Personaje * clone() } Class Villano{ +Villano(string n) +Villano(const Villano& p) +void grita() +Personaje * clone() } Class Mundo{ +Mundo(string nm) : nombreMundo(nm) +string nombreMundo } Class Heroe{ +Heroe(string n) +Heroe(const Heroe& p) +void salvar() +Personaje * clone() } Class ClonPersonaje{ +<<template>>Personaje * clone() } ClonPersonaje<|--Princesa ClonPersonaje<|--Villano ClonPersonaje<|--Heroe Mundo--*Personaje Personaje <|..ClonPersonaje @enduml
false
true
false
false
class
710f78c76c6a50431b6584cb8edf47f0c39f85f2
29b798261c06a8276245d94720e1e996ec6ca5f2
/documents/ci cd flow.puml
3888ac76e255953fc76f36f2afdc9cfd2c3c4529
[ "MIT" ]
permissive
anitadewitt-va/notification-api
fde7f529f054c77763458a7481533ba2af249860
e405c5aaed52c0448ad1bc818b05aee7acfa6e0c
refs/heads/master
2023-03-07T11:18:55.943894
2021-02-15T18:33:44
2021-02-15T18:34:17
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,760
puml
@startuml hide footbox skinparam ParticipantPadding 10 skinparam BoxPadding 20 skinparam sequence { ActorBackgroundColor purple ActorFontColor purple ActorFontSize 17 ActorFontName Arial } title build and deployment flow actor Developer #purple participant Github #lightgreen Developer -> Github: Commit changes activate Github Github -> CI: push destroy Github participant CI activate CI CI -> CI: run unit tests CI -> "Github": build notification container image\n and tag with git sha CI -> Github: broadcast status activate Github Github -> Github: handle deployment status Github -> "deployment": deploy dev deactivate Github deactivate CI box "Deployment" #lightblue participant "deployment" activate "deployment" #lightgray "deployment" -> "AWS dev": run migrations "deployment" -> "AWS dev": deploy API "deployment" -> "AWS dev": deploy celery "deployment" -> "AWS dev": deploy celery beat "deployment" -> "AWS dev": smoke tests "deployment" -> "AWS dev": run user flows activate Github "deployment" -> Github: tag container image with staging version "deployment" -> Github: broadcast status deactivate "deployment" end box Github -> Github: handle deployment status Github -> "Staging flow": deploy Staging deactivate Github box "deployment" #lightblue participant "Staging flow" activate "Staging flow" #lightgray "Staging flow" -> "AWS staging": run migrations "Staging flow" -> "AWS staging": deploy API "Staging flow" -> "AWS staging": deploy celery "Staging flow" -> "AWS staging": deploy celery beat "Staging flow" -> "AWS staging": smoke tests "Staging flow" -> "AWS staging": run user flows "Staging flow" -> Github: tag container image with version "Staging flow" -> Github: broadcast status deactivate "Staging flow" end box @enduml
false
true
false
false
sequence
4c61e872166e84e965431a495566056c2777808c
82f395f6b8ae45e302b5fbcae5470a6ce9c3134f
/src/main/asciidoc/models/analysis/SequenceDiagrams/SequenceDiagram5.puml
7a68d6d0a52cc0363efa46824b64ce354b537469
[]
no_license
LimitlessGreen/swt18w43
e9e8cab5cd770fbf7ce3e80b7eb8bd20cccd2924
93bab1a0fb650be08c4fc8ceb17f7eaa6bb0c09f
refs/heads/master
2023-04-13T00:33:42.222346
2019-01-18T02:28:20
2019-01-18T02:28:20
360,514,326
0
0
null
null
null
null
UTF-8
PlantUML
false
false
691
puml
@startuml skinparam linetype ortho 'skinparam groupInheritance 3 'skinparam handwritten true hide circle autonumber hide footbox skinparam participant{ BorderColor darkgreen BackgroundColor white FontStyle bold padding 30 } skinparam Actor{ BorderColor black BackgroundColor white } skinparam arrow{ Color darkgreen } skinparam sequence{ LifeLineBorderColor black } actor Manager activate Manager activate UserList activate Customer Manager -> UserList: add Customer UserList -> Customer: initialize (with name, \naddress, email, phoneNr) UserList <-- Customer Manager <-- UserList Manager -> Customer: set customer type Manager <-- Customer @enduml
false
true
false
false
usecase
4af9259dea9e6886c196db830a834aedcfad42f9
768725548baaa2108c1232aa580a9a7c5c81f97e
/NetCore/SequenceDiagram.puml
7f1c0141e0565ba244d0879b99c69939a67bde67
[]
no_license
SteveTsao/OOP
f75c8b3e7d5dfc7c88cb9aa1b6c1ca04e61fc29a
47aa6d7377a508fabaf9b6057633fbae60bad6d6
refs/heads/master
2021-08-23T04:16:14.131275
2017-12-03T07:45:02
2017-12-03T07:45:02
107,424,484
0
0
null
null
null
null
UTF-8
PlantUML
false
false
526
puml
@startuml actor User create MyBackupService activate MyBackupService User -> MyBackupService : SimpleTask() create TaskDispatcher MyBackupService -> TaskDispatcher : SimpleTask() activate TaskDispatcher TaskDispatcher -> TaskFactory : Create() activate TaskFactory create SimpleTask TaskFactory -->> SimpleTask : new activate SimpleTask TaskDispatcher <<-- TaskFactory : ITask deactivate TaskFactory TaskDispatcher -> SimpleTask : Execute() deactivate SimpleTask deactivate TaskDispatcher deactivate MyBackupService @enduml
false
true
false
false
sequence
3425dd2efc5c65d089e3b9b38e5b5a9084858cbd
6c369b570f222c894964989ee63b706c69e8174d
/docs/dev/intro_to_react/core_model.puml
91ea0e4a740ea713447eb26ae89f688c638b959d
[]
no_license
k2works/etude_for_rails
f74eae1844a9430d3c81047203ffc5d384e995ed
e728291c99ad4e34f144deedc44617bb796ac275
refs/heads/master
2021-01-20T01:46:29.373716
2018-04-26T08:53:20
2018-04-26T08:53:20
89,328,180
0
0
null
2017-06-08T02:25:58
2017-04-25T07:00:29
HTML
UTF-8
PlantUML
false
false
143
puml
@startuml Game "1" --> "1"Board Board "1" *-- "9" Square class Game { calculateWinner(squares) } class Board { renderSquare(i) } @enduml
false
true
false
false
class
b7e08147f4259f449f0273bdf8d972c0ececa604
22c062df90adff61becb66216348f35b57920adb
/DesignPatern/src/Creational/diagrams/bullet_prototype.puml
4c3fcc2854ceda454be10847171e557c6f2528d1
[ "BSD-3-Clause" ]
permissive
zainmehdi/software_engineering
0ca30f6daf526434fbec9ae0240da0685dc5977a
9b655590d05246d6e859673161de05ecde788b14
refs/heads/master
2022-12-29T14:33:41.798904
2020-10-12T13:57:20
2020-10-12T13:57:20
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,131
puml
@startuml skinparam classAttributeIconSize 0 enum BulletType { SIMPLE, EXPLOSIVE } class Bullet { name:string - speed:double - firePower:double - damgePower:double - direction:double - id:int + fire(double direction):void + {abstract} clone():unique_ptr<Bullet> + virtual ~Bullet() + Bullet(string name, double speed, double firePower, double damgePower) } class ExplosiveBullet { + clone():unique_ptr<Bullet> } note "return make_unique<ExplosiveBullet>(*this)" as ExplosiveBulletclone ExplosiveBulletclone -up--ExplosiveBullet class SimpleBullet { + clone():unique_ptr<Bullet> } ExplosiveBullet -up--|> Bullet SimpleBullet -up--|> Bullet class BulletFactory { -unordered_map<BulletType, unique_ptr<Bullet>,hash<int> > bullets std::unique_ptr<Bullet> createBullet(BulletType type) } note "Unordered map is an associative container that contains key-value pairs with unique keys" as unordered_map note "return bullets[BulletType]->clone()" as BulletFactoryCreateBullet BulletFactoryCreateBullet -up--BulletFactory unordered_map -down--BulletFactory @enduml
false
true
false
false
class
b15788811767c80f042bc0c196c0fc15173aa5ef
644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc
/docs/uml/software/essentials/commandline_parser/interfaces/ICommandLineParser.puml
3795aa9e178112dbc23b89d04c7cadc573836602
[]
no_license
tzAcee/photonized
c929a6c04bedd0304a4e427d6c2895cdf73568d3
aa53ed7bda18959c58467fe4560dc3ff4e1ae422
refs/heads/main
2023-05-03T15:13:31.148910
2021-05-25T13:55:17
2021-05-25T13:55:17
316,536,113
0
0
null
null
null
null
UTF-8
PlantUML
false
false
120
puml
@startuml interface ICommandLineParser { DirPath : string <<get>> <<set>> parse(path:string[]) : void } @enduml
false
true
false
false
class
1c06aa69a63c6f4a2357549129b886a0034d5cfb
94054a7e70fcef0259d2c0f82768fcef2e4d416d
/diagrams/Class.puml
9c97462aa9830e5954ce66e89fe48e14658289c9
[ "MIT" ]
permissive
michaskruzelka/lacinka
85c557d4f7920f61b450668bb9c52b9b183b68ed
569e3ffe22c3d5b6498df93dc398c41211893a25
refs/heads/master
2020-04-17T10:12:31.079679
2016-10-09T10:13:41
2016-10-09T10:13:41
67,931,541
2
0
null
null
null
null
UTF-8
PlantUML
false
false
2,380
puml
@startuml skinparam classAttributeIconSize 0 class Converter { TO_LATIN_DIRECTION : String = 'forth' TO_CYRILLIC_DIRECTION : String = 'back' #rules : Array #renderers : Array #config : Array #direction : String #version : String #orthography : String +__construct(init) +initRules(fileName) : Converter +convert(text) : String +getDirection() : String +directToLation() : Converter +directToCyrillic() : Converter +getVersion() : String +setVersion(version) : Converter +getOrthography() : String +setOrthography(orthography) : Converter #initConfig() : Converter #initRule(rule) : Converter #applyRule(rule, &text) : Converter #addRenderer(rendererName) : Converter #setDirection(direction) : Converter #getDefaultRulesConfigFile() : String #sortRules() : Converter } class Rule { +getRuleName() : String +validate() : Rule +apply(renderer, direction, version, orthography, &text) : Rule +getRenderer() : String|Bool +getSearch() : String +getReplace() : String|Bool #collectPatterns(&search, &replace, direction, version, orthography) : Rule #checkDirection(direction) : Bool #checkVersion(version) : Bool #checkOrthography(orthography) : Bool } class Parser << (S,#FF7700) Singleton >> { {static} #instance : Parser #l_delim : String #r_delim : String #pairTag : String {static} +getInstance() : Parser +parsePairTag(replace, text) : String #replace(tag, replace, text) : String } class lib\AdvancedXMLElement << (T,orchid) Trait >> { +parentNode() : SimpleXMLElement +checkNodeName(name) : lib\AdvancedXMLElement +asArray() : Array } class Factory as "Renderers\Factory" { {static} +getInstance(className) : Renderers\Interface } interface Interface as "Renderers\Interface" { +render(search, replace, text) : String } class ReplaceByPattern as "Renderers\ReplaceByPattern" { +render(search, replace, text) : String } class SimpleReplace as "Renderers\SimpleReplace" { +render(search, replace, text) : String } ReplaceByPattern ..|> Interface SimpleReplace ..|> Interface Converter ..> Factory: use Rule ..> Parser: use Rule --|> \SimpleXMLElement Rule --|> lib\AdvancedXMLElement Factory ..> Interface: create Converter "1" *-- "*" Rule Converter "1" *-- "*" Interface @enduml
false
true
false
false
class
72eb9da1b17a77c751e404f09674c76ff1b3f283
6b6abef623fcadf697c8172f49aafaee8ac8df18
/uml/flows.puml
3b150592186ff5c35a393feaaa2182b9c9a9a551
[]
no_license
MistreanuIonutCosmin/posecore-srv-electron
da2598635cac20515315f370861182c25baf0075
fcd3fa71215de218e24839a1419cf076f73c1483
refs/heads/master
2022-04-26T09:22:17.423713
2020-04-26T17:53:20
2020-04-26T17:53:20
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,524
puml
@startuml posecorestartflow actor "user" as user participant "Client app" as client participant "PoseCore Electron server" as pes user -> pes : Start PoseCore server app pes -> client: send broadcast response with srv access info alt there is already an active client client -> pes : Connect to MQTT srv or websocket end @enduml @startuml poseclientstartflow actor "user" as user participant "Client app" as client participant "PoseCore Electron server" as pes user -> client : Start client app client -> pes : Send brodacast msg alt there is already an active server pes -> client: send broadcast response with srv access info client -> pes : Connect to MQTT srv or websocket end @enduml @startuml poseeventflow actor "user" as user participant "Camera" as camera participant "Pose server" as pose_srv participant "MQTT Srv" as mqtt_srv participant "Client app" as client user -> camera : Camera tracks user camera -> pose_srv: PoseNet tensorflow lib \n decodes user skeleton pose_srv -> pose_srv: Extract the pose with highest probability alt MQTT is used as transport layer pose_srv -> mqtt_srv : Post Pose event msg alt there is at least one active client mqtt_srv -> client: Pose event is pushed \n to subscribing client end end alt Websocket is used as transport layer pose_srv -> client : Send Pose event msg to client end @enduml
false
true
false
false
sequence
20673fe3037958198490fbf2cbbc34993f99cb59
a7db7f381f681f7b863a0d8fafab1c7be61f07ff
/reponses/visitableImpl.puml
2e51af55241814f6f1413d4258be1933e619d263
[]
no_license
Ramin-Erwyn/mapc-cc1
03b0af4fc06a629c3362bfe0ebf5084c626d514b
04c434f122c324775ca2225a1f0d791147a3b298
refs/heads/master
2023-01-03T02:30:50.606721
2020-11-03T16:35:35
2020-11-03T16:35:35
309,746,429
0
0
null
null
null
null
UTF-8
PlantUML
false
false
166
puml
@startuml package visitable.impl { abstract class visitable.impl.VisitableImpl implements Visitable { + accept(Visitor visitor) :void } } @enduml
false
true
false
false
class
806c435008849298b18e739d9b84dc63ff8e54bd
c481deca71e280757563e4843c5da4fa1c2087ca
/src/main/java/ex46/WordFrequencyFinder.puml
5fcaccffcfe9163ebe7518748a5edc983b3dc8f8
[]
no_license
AlejanPelaez9004/Pelaez-COP3330-assignment3
9f8dda8ded969a6e1c10539ee80263de95b56775
655f761c4398dbf8663d8397ccc2ca0cb22c7d5e
refs/heads/main
2023-08-17T05:46:22.453606
2021-10-07T20:59:34
2021-10-07T20:59:34
413,249,538
0
0
null
null
null
null
UTF-8
PlantUML
false
false
228
puml
@startuml WordFrequencyFinder <|- InputFile class WordFrequencyFinder { Map<String, Integer> wordCounts CountWords(ArrayList<String> words) PrintOutput(Map<String, Integer> wordCounts) } class InputFile { File input } @enduml
false
true
false
false
class
c37c0a50ea6f72c618b78f9df5e31970024952ca
618414d7666e67b9535ebd975e1de61e9c01e095
/QLSV/app/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/drawerlayout/drawerlayout.plantuml
fd13cad2554b36c8f4afe33ee6b0d1ce87781485
[]
no_license
h2312/Do-an-TTLTA-03-TIN230DV01-0100
a0792724add3844de35d48a2bd87d3eeb8de8a93
e9f01e84b45042bd6192333842fb80feabb74707
refs/heads/master
2022-06-30T21:56:05.032422
2020-04-25T10:33:44
2020-04-25T10:33:44
258,747,594
0
0
null
null
null
null
UTF-8
PlantUML
false
false
8,112
plantuml
@startuml title __DRAWERLAYOUT's Class Diagram__\n package android.support.drawerlayout { class R { - R() } } package android.support.drawerlayout { class attr { {static} + alpha : int {static} + font : int {static} + fontProviderAuthority : int {static} + fontProviderCerts : int {static} + fontProviderFetchStrategy : int {static} + fontProviderFetchTimeout : int {static} + fontProviderPackage : int {static} + fontProviderQuery : int {static} + fontStyle : int {static} + fontVariationSettings : int {static} + fontWeight : int {static} + ttcIndex : int - attr() } } package android.support.drawerlayout { class color { {static} + notification_action_color_filter : int {static} + notification_icon_bg_color : int {static} + ripple_material_light : int {static} + secondary_text_default_material_light : int - color() } } package android.support.drawerlayout { class dimen { {static} + compat_button_inset_horizontal_material : int {static} + compat_button_inset_vertical_material : int {static} + compat_button_padding_horizontal_material : int {static} + compat_button_padding_vertical_material : int {static} + compat_control_corner_material : int {static} + compat_notification_large_icon_max_height : int {static} + compat_notification_large_icon_max_width : int {static} + notification_action_icon_size : int {static} + notification_action_text_size : int {static} + notification_big_circle_margin : int {static} + notification_content_margin_start : int {static} + notification_large_icon_height : int {static} + notification_large_icon_width : int {static} + notification_main_column_padding_top : int {static} + notification_media_narrow_margin : int {static} + notification_right_icon_size : int {static} + notification_right_side_padding_top : int {static} + notification_small_icon_background_padding : int {static} + notification_small_icon_size_as_large : int {static} + notification_subtext_size : int {static} + notification_top_pad : int {static} + notification_top_pad_large_text : int - dimen() } } package android.support.drawerlayout { class drawable { {static} + notification_action_background : int {static} + notification_bg : int {static} + notification_bg_low : int {static} + notification_bg_low_normal : int {static} + notification_bg_low_pressed : int {static} + notification_bg_normal : int {static} + notification_bg_normal_pressed : int {static} + notification_icon_background : int {static} + notification_template_icon_bg : int {static} + notification_template_icon_low_bg : int {static} + notification_tile_bg : int {static} + notify_panel_notification_icon_bg : int - drawable() } } package android.support.drawerlayout { class id { {static} + action_container : int {static} + action_divider : int {static} + action_image : int {static} + action_text : int {static} + actions : int {static} + async : int {static} + blocking : int {static} + chronometer : int {static} + forever : int {static} + icon : int {static} + icon_group : int {static} + info : int {static} + italic : int {static} + line1 : int {static} + line3 : int {static} + normal : int {static} + notification_background : int {static} + notification_main_column : int {static} + notification_main_column_container : int {static} + right_icon : int {static} + right_side : int {static} + tag_transition_group : int {static} + tag_unhandled_key_event_manager : int {static} + tag_unhandled_key_listeners : int {static} + text : int {static} + text2 : int {static} + time : int {static} + title : int - id() } } package android.support.drawerlayout { class integer { {static} + status_bar_notification_info_maxnum : int - integer() } } package android.support.drawerlayout { class layout { {static} + notification_action : int {static} + notification_action_tombstone : int {static} + notification_template_custom_big : int {static} + notification_template_icon_group : int {static} + notification_template_part_chronometer : int {static} + notification_template_part_time : int - layout() } } package android.support.drawerlayout { class string { {static} + status_bar_notification_info_overflow : int - string() } } package android.support.drawerlayout { class style { {static} + TextAppearance_Compat_Notification : int {static} + TextAppearance_Compat_Notification_Info : int {static} + TextAppearance_Compat_Notification_Line2 : int {static} + TextAppearance_Compat_Notification_Time : int {static} + TextAppearance_Compat_Notification_Title : int {static} + Widget_Compat_NotificationActionContainer : int {static} + Widget_Compat_NotificationActionText : int - style() } } package android.support.drawerlayout { class styleable { {static} + ColorStateListItem : int[] {static} + ColorStateListItem_android_color : int {static} + ColorStateListItem_android_alpha : int {static} + ColorStateListItem_alpha : int {static} + FontFamily : int[] {static} + FontFamily_fontProviderAuthority : int {static} + FontFamily_fontProviderCerts : int {static} + FontFamily_fontProviderFetchStrategy : int {static} + FontFamily_fontProviderFetchTimeout : int {static} + FontFamily_fontProviderPackage : int {static} + FontFamily_fontProviderQuery : int {static} + FontFamilyFont : int[] {static} + FontFamilyFont_android_font : int {static} + FontFamilyFont_android_fontWeight : int {static} + FontFamilyFont_android_fontStyle : int {static} + FontFamilyFont_android_ttcIndex : int {static} + FontFamilyFont_android_fontVariationSettings : int {static} + FontFamilyFont_font : int {static} + FontFamilyFont_fontStyle : int {static} + FontFamilyFont_fontVariationSettings : int {static} + FontFamilyFont_fontWeight : int {static} + FontFamilyFont_ttcIndex : int {static} + GradientColor : int[] {static} + GradientColor_android_startColor : int {static} + GradientColor_android_endColor : int {static} + GradientColor_android_type : int {static} + GradientColor_android_centerX : int {static} + GradientColor_android_centerY : int {static} + GradientColor_android_gradientRadius : int {static} + GradientColor_android_tileMode : int {static} + GradientColor_android_centerColor : int {static} + GradientColor_android_startX : int {static} + GradientColor_android_startY : int {static} + GradientColor_android_endX : int {static} + GradientColor_android_endY : int {static} + GradientColorItem : int[] {static} + GradientColorItem_android_color : int {static} + GradientColorItem_android_offset : int - styleable() } } R +-down- attr R +-down- color R +-down- dimen R +-down- drawable R +-down- id R +-down- integer R +-down- layout R +-down- string R +-down- style R +-down- styleable right footer PlantUML diagram generated by SketchIt! (https://bitbucket.org/pmesmeur/sketch.it) For more information about this tool, please contact philippe.mesmeur@gmail.com endfooter @enduml
false
true
false
false
class
83afc69dcb077ec25b271d82d3fdaac8c8f3fcee
8e0e85b3875e06a4d76b4298decb879026847d7f
/docs/bead07/Diagrams/SolarFlare/solar-flare.puml
373b5d9236b1680c23fec06efbe63fa6a4bf9bae
[]
no_license
viseguard-studios/Documentation
fba5030594be0303374d70019c7ea759316a96fe
290312ddbeab9cf9a28147c868f3330475aebd6d
refs/heads/main
2023-05-13T12:00:34.417075
2021-06-06T07:52:49
2021-06-06T07:52:49
338,383,487
0
0
null
null
null
null
UTF-8
PlantUML
false
false
457
puml
@startuml hide footbox autonumber "0:" skinparam sequenceMessageAlign center participant gm as gm <<GameManager>> participant sc as Scene <<Scene>> participant Entity as "en" <<Entity>> gm -> Scene ++ : solarFlare(pos, radius) loop for each ent in entities Scene -> Entity ++ : getPos(); return : position opt if position is inside circle(pos,radius) Scene -> Entity ++ : solarFlare(); return end end return @enduml
false
true
false
false
sequence