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
36b2fe7bea56a82ab0de84d4876a46005192d1b9
82395399e18144a2f495c47cf33517c44df2364e
/backend/uml/status.puml
feb03012df5689529c215bffb0a4aea393098ebb
[]
no_license
roxana-andreea/BachelorProject
945218f7ec6c34a988b6b1d4ad306c8b4dcb58ac
44ce97466ec82fd23cddcc2b2531994c828882d3
refs/heads/master
2021-01-01T05:57:36.481475
2017-07-23T08:13:03
2017-07-23T08:13:03
97,319,237
0
0
null
null
null
null
UTF-8
PlantUML
false
false
276
puml
@startuml actor User database Server control VSS entity OBD autonumber VSS -> OBD: Information Request OBD -> VSS: Information Response VSS -> Server: Upload Information Smartphone <-- Server: Download Information Smartphone --> User: Display Information in Dashboard @enduml
false
true
false
false
sequence
ce23fab748216d9f92090421f2c28ec9224fae08
8d91ff31e22d4f0f2082ebba0c6da8ec4391e8f4
/src/doc/sequenceDiagram/userAccountApproval.puml
5dc12518bf94e61e1693bc92a7f7c48ea6b6ab03
[]
no_license
suraj903/sportsgeek_backend-1
fe54372687c96ac6a92a8e76d913bf60f44ffee7
99fe51fa81a9df4599f2b3eeac299846d5bf835d
refs/heads/master
2023-07-28T02:16:51.481764
2021-09-13T14:43:12
2021-09-13T14:43:12
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,962
puml
@startuml header SportsGeek title User Account Approval skinparam ParticipantPadding 10 skinparam BoxPadding 20 actor User box "SportsGeek System" participant sportsGeek end box box "Account Approval Service" participant accountApproval end box box "database" database database end box User -> sportsGeek: Get All User Details with Status False activate sportsGeek #lightblue alt #white User Details sportsGeek -> "accountApproval" : Get All User Details with Status False activate accountApproval #lightblue accountApproval -> "database" : Get All User Details with Status False activate "database" #lightblue "database" --> "accountApproval" : <font color=darkblue><b>Response Get All User Details deactivate "database" "accountApproval" --> "sportsGeek" : <font color=darkblue><b>Response Get All User Details deactivate "accountApproval" "sportsGeek" --> User : <font color=darkblue><b>Response Get All User Details deactivate "sportsGeek" end alt User -> sportsGeek: Update User Status activate sportsGeek #lightblue alt #white Update User Status sportsGeek -> "accountApproval" : Update User Status activate accountApproval #lightblue accountApproval -> "database" : Update User Status activate "database" #lightblue "database" --> "accountApproval" : <font color=darkblue><b>Response User Status Updated Successfully "accountApproval" --> "sportsGeek" : <font color=darkblue><b>Response User Status Updated Successfully "sportsGeek" --> User : <font color=darkblue><b>Response User Status Updated Successfully else #pink Unable to Add Contest "database" --> "accountApproval" : <font color=darkblue><b>Response Unable to Update Status deactivate "database" "accountApproval" --> "sportsGeek" : <font color=darkblue><b>Response Unable to Update Status deactivate "accountApproval" "sportsGeek" --> User : <font color=darkblue><b>Response Unable to Update Status deactivate "sportsGeek" end alt @enduml
false
true
false
false
sequence
35d5136d18ac3faf173a6351f4bbaca1a3db53ab
844665d08d1be5dacc41d8495725d881c68dba71
/Conferencias/Conferencia 3_ Patrones de Diseño Estructurales/PrincipleAndPatternDesign/src/cu/datys/patterns/gof/structural/flyweight/font/class-diagram.puml
ba67e41fa77f800e5b496ab68222b000f11be361
[ "MIT" ]
permissive
alexescalonafernandez/curso-patrones-diseno
ec1cf0a993707d78c294208e04604a3a0ffd164e
f586e27791e1281087df6cc137da87f407179e65
refs/heads/master
2021-01-25T13:35:26.659206
2018-03-02T20:18:06
2018-03-02T20:18:06
123,588,331
0
0
null
null
null
null
UTF-8
PlantUML
false
false
851
puml
@startuml skinparam backgroundcolor transparent skinparam classFontSize 18 skinparam noteFontSize 18 skinparam arrowFontSize 18 skinparam classAttributeFontSize 18 skinparam titleFontColor #5cb85c Title Flyweight Pattern Example class FontAwesomeIcon { - final String code - final byte[] data } class FontAwesomeIconRegistry{ - final HashMap<String, FontAwesomeIcon> icons + FontAwesomeIcon lookup(String code) - byte[] loadIcon(String code) } FontAwesomeIconRegistry "1" o-- "many" FontAwesomeIcon note right of FontAwesomeIconRegistry::lookup FontAwesomeIcon icon = icons.get(code); if(icon == null){ byte[] data = loadIcon(code); icon = new FontAwesomeIcon(code, data); icons.put(code, icon) } return icon; end note class Main Main --> FontAwesomeIconRegistry:lookup icon @enduml
false
true
false
false
sequence
2fee45e253e7ec8251a08290d2520116db99677a
4ee46c4f82ed1aaa4a22cedd34c158e119f0a15f
/payment-response-class.puml
3dac30539438f58e6a6c53b06ba1677ecd113fd3
[]
no_license
evgueni-spb/bootcamp
72ee0254cdd55cfeb6c817f194c3283fae0744c8
15793448d3c17576d0dd8aef5490a982ef94115b
refs/heads/master
2020-08-30T08:53:37.046485
2019-11-26T21:12:08
2019-11-26T21:12:08
218,325,256
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,544
puml
@startuml allowmixing left to right direction skinparam package { BackgroundColor<<LIB>> olive BorderColor<<LIB>> olive } skinparam artifact { BackgroundColor lightgreen BorderColor brown } interface EISUPaymentStagingService class EISUPaymentResponseJob { +doExecute(map,auditor) -processCheckResponse } note "asynchronous" as S S . EISUPaymentResponseJob note as PR Reads file, updates staging table, backs up file, reads staging data, processes each record in async task end note PR .. EISUPaymentResponseJob EISUPaymentResponseJob o--> EISUReceiveCheckPaymentService EISUPaymentResponseJob o--> EISUReceiveEFTPaymentService interface EISUReceiveCheckPaymentService { +processFile(jobUid) } note "Camel producer marker interfaces" as P P .. EISUReceiveCheckPaymentService P . EISUReceiveEFTPaymentService interface EISUReceiveEFTPaymentService { +processFile(jobUid) } EISUReceiveCheckPaymentService ..> EISUPaymentResponseRouteBuilder EISUReceiveEFTPaymentService ..> EISUPaymentResponseRouteBuilder package Camel <<LIB>> { component "SFTP component" interface RouteBuilder interface Processor } class EISUPaymentResponseRouteBuilder { +configure() -processException() } note as B Builds two routes, one for check payments and the other for EFT payments end note B . EISUPaymentResponseRouteBuilder EISUPaymentResponseRouteBuilder ..|> RouteBuilder EISUPaymentResponseRouteBuilder *--> EISUPaymentResponseProcessor EISUPaymentResponseRouteBuilder o--> "SFTP component" interface ClaimsAutomaticCloseFacade #moccasin{ +closeClaimAutomatically(claimsEntity) } interface PaymentLifecycleService #moccasin{ +executeAction(action) } interface ProcessManagementService #moccasin{ +create(manualTaskCreateInfo) } EISUPaymentResponseProcessingAdapter o--> ProcessManagementService EISUPaymentResponseProcessingAdapter o--> ClaimsAutomaticCloseFacade EISUPaymentResponseProcessingAdapter o--> PaymentLifecycleService interface EISUPaymentResponseMapper { } class EISUPaymentResponseMapperImpl { +validateResponseRecord(paymentTransferEntity) +mapResponseRecord(paymentTransferEntity) } EISUPaymentResponseMapperImpl ..|> EISUPaymentResponseMapper class EISUPaymentResponseProcessor{ process(exchange) } note as PRP Reads the file, validates, updates staging records with responseBatchNo,processingStatus, updated,declineReason in the same transaction. Creates async tasks to process each record in the current response batch end note PRP . EISUPaymentResponseProcessor interface AsyncTaskManager<<BASE>> { addTaskToQueue(taskInfo, date) } EISUPaymentResponseProcessor o--> AsyncTaskManager class EISUPaymentResponseProcessingAdapter { +handleTask(taskInfo, auditor) } EISUPaymentResponseProcessor o--> EISUPaymentStagingService note as PRA invokes BASE services to clear or decline payment, closes the claim, triggers DocGen, etc end note PRA . EISUPaymentResponseProcessingAdapter AsyncTaskManager ..> EISUPaymentResponseProcessingAdapter EISUPaymentResponseProcessor ..|> Processor EISUPaymentResponseProcessor *-> EISUPaymentResponseMapperImpl package BeanIO <<LIB>> { abstract class BeanIOStreamFactory interface BeanReader BeanIOStreamFactory --> "creates" BeanReader } artifact "EFT payment response mapping xml file" artifact "check payment response mapping xml file" BeanIOStreamFactory *--> "EFT payment response mapping xml file" BeanIOStreamFactory *--> "check payment response mapping xml file" EISUPaymentResponseMapperImpl o--> BeanReader @enduml
false
true
false
false
class
5486d590cde10ce0506c65a4d84f87b6dbb1ee3d
f8e357daee592f0c24cd2e5778c643a77b4a6404
/06classdiagram/44_classdiagram_lollipop_interface.puml
b8894814fd07a3b56bc863030f46a82d6aa5cda8
[]
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
210
puml
' 'ClassDiagrams: Lollipop interface ' 'You can also define lollipops interface on classes, using the following syntax: ' '-------------------------------------- ' @startuml class foo bar ()- foo @enduml
false
true
false
false
class
0dd03978e6b8e58967b63137e3ab6e49c26cc904
1cecf263f15ed1bcb5edc74b95f0487436f92707
/images/2020-02-10-Broadcast-源码分析/activity.puml
c66badd92820f2967ebcee8d3f197d0e67f415ff
[]
no_license
solarqiang/solarqiang.github.io
d8903ac39552468b229d62688b38b74d30982dd3
441764e1af9ebf4ee7a8252139c2242b45b790c5
refs/heads/master
2022-04-12T08:25:46.346809
2020-03-21T16:02:51
2020-03-21T16:02:51
245,729,922
0
0
null
null
null
null
UTF-8
PlantUML
false
false
6,727
puml
@startuml SendBroadcast [-> Context: sendBroadcast activate Context Context -> ActivityManagerService ++: broadcastIntent ActivityManagerService -> ActivityManagerService ++: broadcastIntentLocked ActivityManagerService -> ActivityManagerService ++: collectReceiverComponents deactivate ActivityManagerService ActivityManagerService -> ActivityManagerService ++: queryIntent deactivate ActivityManagerService ActivityManagerService -> ActivityManagerService ++: broadcastQueueForIntent deactivate ActivityManagerService ActivityManagerService --> ActivityManagerService: new BroadcastRecord ActivityManagerService -> BroadcastQueue: enqueueParallelBroadcastLocked ActivityManagerService -> BroadcastQueue: scheduleBroadcastLocked ActivityManagerService -> BroadcastQueue: enqueueOrderedBroadcastLocked ActivityManagerService -> BroadcastQueue: scheduleBroadcastLocked ActivityManagerService -->[: return SUCCESS deactivate ActivityManagerService deactivate ActivityManagerService deactivate Context @enduml @startuml SendRegisteredBroadcast2 ActivityManagerService -> BroadcastQueue: enqueueOrderedBroadcastLocked ActivityManagerService -> BroadcastQueue: scheduleBroadcastLocked BroadcastQueue -> BroadcastQueue ++: processNextBroadcast BroadcastQueue -> BroadcastQueue ++: processNextBroadcastLocked BroadcastQueue -> BroadcastQueue ++: deliverToRegisteredReceiverLocked BroadcastQueue -> BroadcastQueue ++: performReceiveLocked BroadcastQueue -> ApplicationThread --:   scheduleRegisteredReceiver deactivate BroadcastQueue deactivate BroadcastQueue deactivate BroadcastQueue deactivate BroadcastQueue activate ApplicationThread ApplicationThread -> ReceiverDispatcher ++: performReceive ReceiverDispatcher --> Args **: new ReceiverDispatcher -> Args --:  post activate Args deactivate ApplicationThread Args -> BroadcastReceiver: setPendingResult Args -> BroadcastReceiver ++: onReceive return Args -> Args ++: sendFinished Args -> ActivityManagerService --: finishReceiver activate ActivityManagerService deactivate Args ActivityManagerService -> BroadcastQueue ++: finishReceiverLocked return @enduml @startuml SendRegisteredBroadcast [-> Context: sendBroadcast activate Context Context -> ActivityManagerService ++: broadcastIntent ActivityManagerService -> ActivityManagerService ++: broadcastIntentLocked ActivityManagerService -> ActivityManagerService ++: collectReceiverComponents deactivate ActivityManagerService ActivityManagerService -> ActivityManagerService ++: queryIntent deactivate ActivityManagerService ActivityManagerService -> ActivityManagerService ++: broadcastQueueForIntent deactivate ActivityManagerService ActivityManagerService --> ActivityManagerService: new BroadcastRecord ActivityManagerService -> BroadcastQueue: enqueueParallelBroadcastLocked ActivityManagerService -> BroadcastQueue --:    scheduleBroadcastLocked deactivate ActivityManagerService deactivate Context activate BroadcastQueue BroadcastQueue -> BroadcastQueue ++: processNextBroadcast BroadcastQueue -> BroadcastQueue ++: processNextBroadcastLocked BroadcastQueue -> BroadcastQueue ++: deliverToRegisteredReceiverLocked BroadcastQueue -> BroadcastQueue ++: performReceiveLocked BroadcastQueue -> ApplicationThread --:   scheduleRegisteredReceiver deactivate BroadcastQueue deactivate BroadcastQueue deactivate BroadcastQueue deactivate BroadcastQueue activate ApplicationThread ApplicationThread -> ReceiverDispatcher ++: performReceive ReceiverDispatcher --> Args **: new ReceiverDispatcher -> Args --:  post activate Args deactivate ApplicationThread Args -> BroadcastReceiver: setPendingResult Args -> BroadcastReceiver ++: onReceive return Args -> BroadcastReceiver ++: sendFinished BroadcastReceiver -> ActivityManagerService --: finishReceiver activate ActivityManagerService deactivate Args ActivityManagerService -> BroadcastQueue ++: finishReceiverLocked return @enduml @startuml sendOrderedBroadcast ActivityManagerService -> BroadcastQueue: enqueueOrderedBroadcastLocked ActivityManagerService -> BroadcastQueue: scheduleBroadcastLocked BroadcastQueue -> BroadcastQueue ++: processNextBroadcast BroadcastQueue -> BroadcastQueue ++: processNextBroadcastLocked BroadcastQueue -> BroadcastQueue ++: processCurBroadcastLocked BroadcastQueue -> ApplicationThread --:   scheduleReceiver deactivate BroadcastQueue deactivate BroadcastQueue deactivate BroadcastQueue activate ApplicationThread ApplicationThread --> ApplicationThread: new ReceiverData ' activate ApplicationThread ApplicationThread -> ActivityThread --:   handleReceiver activate ActivityThread ActivityThread -> BroadcastReceiver: setPendingResult ActivityThread -> BroadcastReceiver ++: onReceive return ActivityThread -> BroadcastReceiver ++: sendFinished BroadcastReceiver -> ActivityManagerService --: finishReceiver activate ActivityManagerService deactivate ActivityThread ActivityManagerService -> BroadcastQueue ++: finishReceiverLocked return @enduml @startuml registerBroadcast [-> ContextImpl: registerReceiver ContextImpl -> ContextImpl ++: registerReceiverInternal ContextImpl -> LoadedApk ++: getReceiverDispatcher LoadedApk --> LoadedApk: new receiverDispatcher return IIntentReceiver ContextImpl -> ActivityManagerService ++: registerReceiver ActivityManagerService --> ActivityManagerService: new BroadcastFilter ActivityManagerService -> IntentResolver ++: addFilter return opt AllSticky != null ActivityManagerService -> ActivityManagerService ++: broadcastQueueForIntent deactivate ActivityManagerService ActivityManagerService --> ActivityManagerService: new BroadcastRecord ActivityManagerService -> BroadcastQueue: enqueueParallelBroadcastLocked ActivityManagerService -> BroadcastQueue: scheduleBroadcastsLocked end ActivityManagerService --> ContextImpl --: return sticky ContextImpl -->[: return sticky deactivate ContextImpl @enduml @startuml startActivity [->ActivityThread: main activate ActivityThread participant ApplicationThread ActivityThread -> ActivityThread ++: attach ActivityThread -> ActivityManagerService --:   attachApplication deactivate ActivityThread activate ActivityManagerService ActivityManagerService -> ActivityManagerService ++: attachApplicationLocked ActivityManagerService -> BroadcastQueue ++: sendPendingBroadcastsLocked BroadcastQueue -> BroadcastQueue ++: processCurBroadcastLocked BroadcastQueue -> ApplicationThread --: scheduleReceiver deactivate BroadcastQueue deactivate ActivityManagerService deactivate ActivityManagerService activate ApplicationThread ApplicationThread --> ApplicationThread: new ReceiverData ApplicationThread -> ActivityThread --:  handleReceiver deactivate ApplicationThread deactivate ApplicationThread @enduml
false
true
true
false
sequence
a292fbc2598713ea858281ef10c4f37009762089
e6600146cf8ac966d9ea7309329c71adc0d777a6
/documentation/uml/crd.puml
f68a8a83c24706ef9950984370c9530ccc146479
[ "Apache-2.0", "LicenseRef-scancode-free-unknown" ]
permissive
phantompunk/casskop
745d757a4b1515b616ccdd4cc910e65edfae91e3
4211d88894761514832f1983f73c49a16155276c
refs/heads/master
2023-03-31T11:55:13.068409
2020-09-16T04:41:12
2020-09-16T04:41:12
278,437,029
0
0
Apache-2.0
2020-07-09T18:08:17
2020-07-09T18:08:17
null
UTF-8
PlantUML
false
false
2,620
puml
@startuml object CassandraCluster CassandraCluster : TypeMeta CassandraCluster : ListMeta CassandraCluster : Spec CassandraCluster : Status object CPUAndMem CPUAndMem : CPU CPUAndMem : Memory object CassandraResources CassandraResources : Requests CassandraResources : Limits object PodPolicy PodPolicy : Resources object CassandraClusterSpec CassandraClusterSpec : nodesPerRacks CassandraClusterSpec : baseImage CassandraClusterSpec : version CassandraClusterSpec : runAsUser CassandraClusterSpec : readOnlyRootFileSystem CassandraClusterSpec : initContainerImage CassandraClusterSpec : initContainerCmd CassandraClusterSpec : bootstrapImage CassandraClusterSpec : resources CassandraClusterSpec : hardAntiAffinity CassandraClusterSpec : deletePVC CassandraClusterSpec : autoPilot CassandraClusterSpec : autoUpdateSeedList CassandraClusterSpec : gcStdout CassandraClusterSpec : maxPodUnavailable CassandraClusterSpec : dataCapacity CassandraClusterSpec : dataStorageClass CassandraClusterSpec : configMapName CassandraClusterSpec : imagePullSecret CassandraClusterSpec : imageJolokiaSecret CassandraClusterSpec : topology object topology topology : DCList object DCList DCList : name DCList : labels DCList : NodesPerRacks DCList : NumTokens DCList : RackList object RackList RackList : name RackList : labels RackList : rollingRestart RackList : rollingPartition RackList *-- DCList DCList *-- topology topology *-- CassandraClusterSpec object CassandraClusterStatus CassandraClusterStatus : phase CassandraClusterStatus : lastClusterAction CassandraClusterStatus : lastClusterActionStatus CassandraClusterStatus : SeedList CassandraClusterStatus : CassandraRackStatusList object CassandraLastAction CassandraLastAction : status CassandraLastAction : name CassandraLastAction : startTime CassandraLastAction : endTime CassandraLastAction : updateNodes object PodLastOperation PodLastOperation : name PodLastOperation : status PodLastOperation : startTime PodLastOperation : endTime PodLastOperation : pods PodLastOperation : podsOK PodLastOperation : podsKO PodLastOperation : OperatorName CassandraClusterSpec *-- CassandraCluster CassandraClusterStatus *-- CassandraCluster object CassandraRackStatusList CassandraRackStatusList : DCRackName CassandraRackStatusList : CassandraLastAction CassandraRackStatusList : PodLastOperation CassandraRackStatusList *-- CassandraClusterStatus CassandraLastAction *-- CassandraRackStatusList PodLastOperation *-- CassandraRackStatusList CPUAndMem *-- CassandraResources CassandraResources *-- CassandraClusterSpec PodPolicy *-- CassandraClusterSpec @enduml
false
true
false
false
class
af7b4b237bcb39829850be02dc64b2b777e79a1a
83147b64e04741de0403ef88b6c9aeba85d05361
/docs/Iteracao3/MD/MD_a2.puml
8ff5cee95f9de6a8b1c7284c32e144cab4e36f30
[]
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
4,142
puml
@startuml skinparam classAttributeIconSize 0 hide methods left to right direction class Plataforma { -String designacao } class AreaAtividade { -String codigo -String descBreve -String descDetalhada } class CompetenciaTecnica { -String codigo -String descBreve -String descDetalhada } class GrauProficiencia { -Integer valor -String designacao } class Categoria { -String id -String descricao } class CaraterCT { -Boolean obrigatoria } class Organizacao { -String nome -String NIF -String website -String telefone -String email } class Colaborador { -String nome -String funcao -String telefone -String email } class EnderecoPostal { -String local -String codPostal -String localidade } class Tarefa { -String referencia -String designacao -String descInformal -String descTecnica -Integer duracaoEst -Double custoEst } class TipoRegimento { -String designacao -String descricaoRegras } class Administrativo { } class Freelancer { -String nome -String NIF -String telefone -String email } class ReconhecimentoCT { -Date dataReconhecimento } class HabilitacaoAcademica { -String grau -String designacaoCurso -String nomeInstituicao -Double mediaCurso } note right Por simplificação, não se considerou Instituição, Curso e Grau como conceitos. Contudo, tal poderá ser feito mais tarde se se vier a revelar importante para o negócio. end note class Anuncio { -Date dtInicioPublicitacao -Date dtFimPublicitacao -Date dtInicioCandidatura -Date dtFimCandidatura -Date dtInicioSeriacao -Date dtFimSeriacao } class Candidatura { -Date dataCandidatura -Double valorPretendido -Integer nrDias -String txtApresentacao -String txtMotivacao } class Classificacao { -Integer lugar } class ProcessoSeriacao { -Date dataRealizacao } class Utilizador { -String nome -String email -String password } class AlgoritmoGeradorPasswords { } Plataforma "1" -- "*" AreaAtividade : possui > Plataforma "1" -- "*" CompetenciaTecnica : possui > Plataforma "1" -- "*" Categoria : possui > Plataforma "1" -- "*" Organizacao : tem registadas > Plataforma "1" -- "*" TipoRegimento : suporta > Plataforma "1" -- "*" Anuncio : publicita > Plataforma "1" -- "*" Freelancer : tem/usa > Plataforma "1" -- "*" Administrativo : tem > Plataforma "1" -- "1" AlgoritmoGeradorPasswords : recorre a > Organizacao "1" -- "1..*" Colaborador: tem > Organizacao "1" -- "1" Colaborador: tem gestor > Organizacao "0..1" -- "1" EnderecoPostal: localizada em > Organizacao "1" -- "*" Tarefa: possui > CompetenciaTecnica "*" -- "1" AreaAtividade : referente a > CompetenciaTecnica "1" --- "*" GrauProficiencia : aplica > Categoria "*" -- "1" AreaAtividade: enquadra-se em > Categoria "*" -- "*" CompetenciaTecnica: requer > (Categoria, CompetenciaTecnica) .. CaraterCT CaraterCT "*" -- "1" GrauProficiencia: exige (como mínimo) > Tarefa "*" -- "1" Categoria: enquadra-se em > Tarefa "*" -- "1" Colaborador: especificada por > Anuncio "0..1" -- "1" Tarefa: publicita > Anuncio "0..1" -- "1" Tarefa: dá origem < Anuncio "*" -- "1" TipoRegimento: rege-se por > Anuncio "*" -- "1" Colaborador: publicado por > Anuncio "1" -- "*" Candidatura: recebe > Anuncio "1" -- "0..1" ProcessoSeriacao: espoleta > Candidatura "*" -- "1" Freelancer: realizada por > ProcessoSeriacao "*" -- "1" TipoRegimento: decorre em concordância com > ProcessoSeriacao "1" -- "1..*" Colaborador: realizado por > ProcessoSeriacao "1" -- "*" Classificacao: gera > Classificacao "0..1" -- "1" Candidatura: tem < Administrativo "0..1" -- "1" Utilizador: atua como > Colaborador "0..1" -- "1" Utilizador: atua como > Freelancer "0..1" -- "1" Utilizador: atua como > Freelancer "0..1" -- "1" EnderecoPostal: tem > Freelancer "1" -- "*" HabilitacaoAcademica: tem > Freelancer "1" -- "*" ReconhecimentoCT : recebe(u) > ReconhecimentoCT "*" -- "1" CompetenciaTecnica: relativa a > ReconhecimentoCT "*" -- "1" GrauProficiencia: reconhe > AlgoritmoGeradorPasswords "1" -- "*" Utilizador : gera password > @enduml
false
true
true
false
class
abff66e7fcaa674a2e0b8f725f672b9da3f638ae
d23570a7eb909eaea459bb116561d7422453edaf
/src/Docs/Resources/current/2-internals/1-core/10-erd/_puml/erd-shopware-core-checkout-promotion.puml
b1799c485d4b446c881f6a395744b9b3ba5abff6
[ "LicenseRef-scancode-generic-cla", "MIT" ]
permissive
renebitter/platform
3ffdf76dae3122378da8181a33fb1616af3cce4c
a31a01b2ada6b425b586f0f8f4635e7706e652d7
refs/heads/master
2020-06-29T06:52:37.127167
2019-08-02T15:12:55
2019-08-02T15:12:55
200,465,805
1
0
MIT
2019-08-04T08:02:57
2019-08-04T08:02:57
null
UTF-8
PlantUML
false
false
5,808
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(ShopwareCoreCheckoutPromotionPromotionDefinition, "promotion\n(Discounts with settings)") { primary_key(id) id name translated not_null(active) bool validFrom date validUntil date not_null(maxRedemptionsGlobal) int not_null(maxRedemptionsPerCustomer) int not_null(exclusive) bool not_null(useCodes) bool code string orderCount int ordersPerCustomerCount json not_null(createdAt) createdAt not_null(updatedAt) updatedAt translated json } Table(ShopwareCoreCheckoutPromotionAggregatePromotionSalesChannelPromotionSalesChannelDefinition, "promotion_sales_channel\n(Promotion configuration)") { primary_key(id) id not_null(promotionId) foreignKey not_null(salesChannelId) foreignKey not_null(priority) int not_null(createdAt) createdAt not_null(updatedAt) updatedAt } Table(ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPromotionDiscountDefinition, "promotion_discount\n(Discounts)") { primary_key(id) id not_null(promotionId) foreignKey not_null(scope) string not_null(type) string not_null(value) float not_null(considerAdvancedRules) bool not_null(createdAt) createdAt not_null(updatedAt) updatedAt } Table(ShopwareCoreCheckoutPromotionAggregatePromotionOrderRulePromotionOrderRuleDefinition, "promotion_order_rule\n(M:N Mapping)") { primary_key(promotionId) foreignKey primary_key(ruleId) foreignKey } Table(ShopwareCoreCheckoutPromotionAggregatePromotionPersonaCustomerPromotionPersonaCustomerDefinition, "promotion_persona_customer\n(M:N Mapping)") { primary_key(promotionId) foreignKey primary_key(customerId) foreignKey } Table(ShopwareCoreCheckoutPromotionAggregatePromotionPersonaRulePromotionPersonaRuleDefinition, "promotion_persona_rule\n(M:N Mapping)") { primary_key(promotionId) foreignKey primary_key(ruleId) foreignKey } Table(ShopwareCoreCheckoutPromotionAggregatePromotionCartRulePromotionCartRuleDefinition, "promotion_cart_rule\n(M:N Mapping)") { primary_key(promotionId) foreignKey primary_key(ruleId) foreignKey } Table(ShopwareCoreCheckoutPromotionAggregatePromotionDiscountRulePromotionDiscountRuleDefinition, "promotion_discount_rule\n(M:N Mapping)") { primary_key(discountId) foreignKey primary_key(ruleId) foreignKey } TranslationTable(ShopwareCoreCheckoutPromotionAggregatePromotionTranslationPromotionTranslationDefinition, "promotion_translation\n((Translations))") { not_null(name) string not_null(createdAt) createdAt not_null(updatedAt) updatedAt primary_key(promotionId) foreignKey primary_key(languageId) foreignKey } ForeignTable(ShopwareCoreSystemSalesChannelSalesChannelDefinition, "sales_channel") { } ForeignTable(ShopwareCoreContentRuleRuleDefinition, "rule") { } ForeignTable(ShopwareCoreCheckoutCustomerCustomerDefinition, "customer") { } ForeignTable(ShopwareCoreFrameworkLanguageLanguageDefinition, "language") { } ' relationshipd ShopwareCoreCheckoutPromotionAggregatePromotionSalesChannelPromotionSalesChannelDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPromotionDiscountDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition ShopwareCoreCheckoutPromotionAggregatePromotionPersonaRulePromotionPersonaRuleDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition ShopwareCoreCheckoutPromotionAggregatePromotionPersonaCustomerPromotionPersonaCustomerDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition ShopwareCoreCheckoutPromotionAggregatePromotionOrderRulePromotionOrderRuleDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition ShopwareCoreCheckoutPromotionAggregatePromotionCartRulePromotionCartRuleDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition ShopwareCoreCheckoutPromotionAggregatePromotionTranslationPromotionTranslationDefinition --> ShopwareCoreCheckoutPromotionPromotionDefinition ShopwareCoreCheckoutPromotionAggregatePromotionSalesChannelPromotionSalesChannelDefinition --> ShopwareCoreSystemSalesChannelSalesChannelDefinition ShopwareCoreCheckoutPromotionAggregatePromotionDiscountRulePromotionDiscountRuleDefinition --> ShopwareCoreCheckoutPromotionAggregatePromotionDiscountPromotionDiscountDefinition ShopwareCoreCheckoutPromotionAggregatePromotionOrderRulePromotionOrderRuleDefinition --> ShopwareCoreContentRuleRuleDefinition ShopwareCoreCheckoutPromotionAggregatePromotionPersonaCustomerPromotionPersonaCustomerDefinition --> ShopwareCoreCheckoutCustomerCustomerDefinition ShopwareCoreCheckoutPromotionAggregatePromotionPersonaRulePromotionPersonaRuleDefinition --> ShopwareCoreContentRuleRuleDefinition ShopwareCoreCheckoutPromotionAggregatePromotionCartRulePromotionCartRuleDefinition --> ShopwareCoreContentRuleRuleDefinition ShopwareCoreCheckoutPromotionAggregatePromotionDiscountRulePromotionDiscountRuleDefinition --> ShopwareCoreContentRuleRuleDefinition ShopwareCoreCheckoutPromotionAggregatePromotionTranslationPromotionTranslationDefinition --> ShopwareCoreFrameworkLanguageLanguageDefinition @enduml
false
true
false
false
uml-unknown
5e4d5453947947a04d1e14b276de7b23e391dab5
cc6b5940d80553bf8a178e8f3108167945fcfb12
/efesto/documentation/puml/ComponentDiagram_CurrentRepo.puml
a0989eea55e67abcda633f112936150c00c080a7
[ "Apache-2.0" ]
permissive
yesamer/drools
f0f9889f212a1becb1144ed704e58649f2555bcd
92b5f4e57755bfd1f4e52af34dfcbf0d608f33c9
refs/heads/master
2023-07-06T14:50:31.161516
2023-06-27T01:00:28
2023-06-27T01:00:28
185,600,193
0
0
Apache-2.0
2022-02-15T11:22:48
2019-05-08T12:19:09
Java
UTF-8
PlantUML
false
false
970
puml
@startuml 'https://plantuml.com/component-diagram node Drools_repo { [Rule eng.] <-- [Efesto] [Decision eng.] <-- [Efesto] [Prediction eng.] <-- [Efesto] } note bottom of Drools_repo * Having both engines and Efesto code in same repository force dependency on snapshots, even downward (e.g. Kogito), because the repo is built atomically * This situation should be transitory end note [Workflow eng.] <-- [Efesto] [? eng.] <-- [Efesto] node "Kogito repo" { component Kogito [ * REST Endpoints * Platform specific infra requirements ** Messaging ** Audit ** Persistence ** etc… ] } [Efesto] <-- [Kogito] node "Serverless Workflow repo" { component Serverless_Workflow [ * Spec Implementation * Specific set of cloud native reqs * Java Framework opinionated * Kubernetes Deployment Interface ] } [Workflow eng.] <... [Serverless_Workflow] [Kogito] <- [Serverless_Workflow] @enduml
false
true
true
false
component
797660a1074382dca04e27da416a761a9f406781
8fa905321a39bedabc324d305c615e17061d0e03
/src/main/java/ex42/ex42.puml
cece12f62410235dd09f9c9514267b4be1676ac2
[]
no_license
K-Schiffli/Schiffli-cop3330-assignment03
04cfa418d737b2ff593390884b11d8db71c741a1
9938948224249fa66ebab55fc6104091a31af1a3
refs/heads/master
2023-06-05T18:26:47.716862
2021-06-21T04:02:37
2021-06-21T04:02:37
378,800,422
0
0
null
null
null
null
UTF-8
PlantUML
false
false
312
puml
/* * UCF COP3330 Summer 2021 Assignment 3 Solutions * Copyright 2021 Kevin Schiffli */ @startuml 'https://plantuml.com/class-diagram Class App { --Inputs-- +getDataFromFile() --Outputs-- -printOutput(List<String[]>) } Class DataParser { --Computations-- parseData(List<String>) } App -> DataParser @enduml
false
true
false
false
class
9174dcd8ecf6e2e338f4adef49bf1e5a227454a7
00cf22cb2b6656174b131dfe9bc99798fe440a3c
/docs/diagrams/DisplayStatisticsActivityDiagram.puml
f58e5a0d0f66bd0926d08066ab22f834f980311d
[ "MIT", "LicenseRef-scancode-other-permissive" ]
permissive
AY1920S1-CS2103T-F12-4/main
c3924ee74e4a34f65e27bd757db5bccf78d3e410
0496b49f47ed7d500fde8b982c6b1feada2fd0c1
refs/heads/master
2020-07-24T17:08:25.885049
2019-11-11T15:52:05
2019-11-11T15:52:05
207,989,504
4
6
NOASSERTION
2019-11-11T15:52:06
2019-09-12T07:21:48
Java
UTF-8
PlantUML
false
false
1,035
puml
@startuml (*) -down-> "Command is parsed and executed" if "" then -left-> [DisplayStatsCommand is executed] "Observables of StatisticsFormat and\n StatisticsFormatOptions updated" --> [Notify listeners] "On update of listeners in ChartBox" --> ===B1=== if "" then --> [StatisticsFormat changed] "ChartBox creates desired concrete\n Chart and renders it" --> ===B2=== else --> [else] ===B2=== endif ===B1=== --> if "" then --> [StatisticsFormatOptions changed] "ChartBox demultiplexes relevant\n updated options to update current Chart" --> [Notify listeners] "Chart generates statistics based on new data" --> ===B2=== else --> [else] ===B2=== endif else --> [else] if "" then -left-> [Displayed chart is updated] "ObservableList of Expenses\n updated" --> [Notify listeners] "Chart generates statistics based on new data" else -left-> [else] ===B2=== ===B2=== --> "End command" --> (*) @enduml
false
true
false
false
activity
d2290e6be0e799bef4beb3b9d20dd9a72a263efa
a76dc646122c0d40f063cdbf8b25735f598ecd9c
/doc/Author-Book.puml
a4dc6e748ae9762da77196deb03a4d8055e22fbf
[]
no_license
Konast376/tz
7893a0815f36ccd1a65208ae493c3673a006d62f
f002dfa9c87a9b236357a602e1b604cab6c90466
refs/heads/master
2020-12-30T03:43:18.613883
2020-05-18T00:00:45
2020-05-18T00:00:45
240,517,499
0
1
null
2020-05-18T00:00:46
2020-02-14T13:44:47
Java
UTF-8
PlantUML
false
false
231
puml
@startuml class Author { id: Long fullName : String dateOfBirth : Date nationality : String } class Book { id : Long bookName : String numberOfPages : int publicationYear : Date author : Author } Book "*"--> "1" Author @enduml
false
true
false
false
class
d6a8ffb327d91d1d6367b6eef58e30e762004dec
13565a0b6077f78b773576035cbd2752871240bc
/Babenko/BabenkoDydykDiplomaProject/src/GeneticRace/execution/execution.plantuml
4c9074ce70d7d4bab0189f71ff8054c575f407b3
[ "Apache-2.0" ]
permissive
vbabenk/GeneticRace
92ff1da794f7a83fba01e3dbeca91c1b36b7fcbd
37f1731fc003755b1c1d03caaa09b0ace55bedd6
refs/heads/master
2021-08-02T19:02:15.575865
2021-07-30T15:26:45
2021-07-30T15:26:45
218,497,240
0
0
null
null
null
null
UTF-8
PlantUML
false
false
390
plantuml
@startuml title __EXECUTION's Class Diagram__\n package GeneticRace.execution { class Program { + start() {static} + main() } } Program -up-|> Application 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
dc672bd25d5af1bf641167ca512a3dd55590223e
d6374fe9363a41031c51eb622cb0cb5e75b78380
/website/versioned_docs/v1.0.1/api/thirdparty/assets/diagrams/linking/1-discovery.puml
c719fb2afbf89de008248a3d3d65773be10503a0
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
mojaloop/documentation
18a1e58443956b9c718f5f85590f652f803f4748
6ad904da0293bb259bd9f5140bcecd719d8c8024
refs/heads/master
2023-07-26T17:13:14.811484
2023-06-26T15:18:57
2023-06-26T15:18:57
170,135,923
24
98
NOASSERTION
2023-09-01T14:57:33
2019-02-11T13:45:44
JavaScript
UTF-8
PlantUML
false
false
2,063
puml
@startuml ' declaring skinparam skinparam shadowing false skinparam defaultFontName Verdana skinparam monochrome true skinparam SequenceLifeLineBackgroundColor WhiteSmoke skinparam SequenceLifeLineBorderColor Black skinparam ParticipantFontStyle Bold skinparam ParticipantFontSize 20 skinparam ParticipantBackgroundColor WhiteSmoke skinparam ArrowColor Black hide footbox title PISP Linking: Discovery box "Mobile device" participant App end box box "PISP" participant PISP end box box "Mojaloop" participant Switch end box participant DFSP autonumber 1 "<b>DISC-#</b>" activate PISP ... note over App, DFSP The user will be prompted in the PISP App for the unique ID they use with their DFSP, and the type of identifier they use. This could be a an account ALIAS, MSISDN, email address, etc. end note ... PISP -> Switch ++: ""GET /accounts/username1234""\n\ "" FSIOP-Source: pispa""\n\ "" FSIOP-Destination: dfspa"" Switch --> PISP: ""202 Accepted"" deactivate PISP Switch -> DFSP ++: ""GET /accounts/username1234""\n\ "" FSIOP-Source: pispa""\n\ "" FSIOP-Destination: dfspa"" DFSP --> Switch: ""202 Accepted"" deactivate Switch DFSP -> Switch ++: ""PUT /accounts/username1234""\n\ "" FSIOP-Source: dfspa""\n\ "" FSIOP-Destination: pispa""\n\ ""[""\n\ "" { accountNickname: "Chequing Account", id: "dfspa.username.1234", currency: "ZAR" },""\n\ "" { accountNickname: "Everyday Spend", id: "dfspa.username.5678", currency: "USD" }""\n\ ""]"" Switch --> DFSP: ""200 OK"" deactivate DFSP Switch -> PISP ++: ""PUT /accounts/username1234""\n\ "" FSIOP-Source: dfspa""\n\ "" FSIOP-Destination: pispa""\n\ ""[""\n\ "" { accountNickname: "Chequing Account", id: "dfspa.username.1234", currency: "ZAR" },""\n\ "" { accountNickname: "Everyday Spend", id: "dfspa.username.5678", currency: "USD" }""\n\ ""]"" PISP --> Switch: ""200 OK"" deactivate Switch deactivate PISP ... note over App, DFSP The PISP can now present a list of possible accounts to the user for pairing. end note ... @enduml
false
true
false
false
sequence
46bc633419026ee216d27a74c24cdc11ceca5da6
b19e1cd9af26a9f3cb65823e1a7885ce278337fe
/documentation/productApi/billing/media/src/CustomerBillStates.puml
46a40c87de84bc2f41ec0c398d4d87e5847ff17b
[ "Apache-2.0" ]
permissive
MEF-GIT/MEF-LSO-Sonata-SDK
969c3717fba3fffa009bf3a5de65337b2caccaaf
6d66bc0778fe0f5a96cdbcb3579e47513b7fd62f
refs/heads/working-draft
2023-07-07T02:17:11.649855
2023-06-23T09:30:18
2023-06-23T09:30:18
90,886,429
33
32
Apache-2.0
2023-01-05T23:58:23
2017-05-10T16:38:08
null
UTF-8
PlantUML
false
false
433
puml
@startuml 'skinparam Linetype polyline 'skinparam Linetype ortho skinparam state { BackgroundColor White BorderColor Black } hide empty description '''decisions''' state Full_Payment <<choice>> note left of Full_Payment : Full Payment made? ''' diagram''' [*] -d-> generated generated -d-> Full_Payment Full_Payment -d-> paymentDue: No paymentDue -u-> Full_Payment Full_Payment -r-> settled: Yes settled -d-> [*] @enduml
false
true
false
false
sequence
c349a6d40eea515d0e023184357c1c17858f6cd6
3656b9512914e5ce9513cc8cc30fe552021f6e01
/ClassDiagram.puml
fb562c584e1b9f0d510959efa7f554efd3b57c28
[]
no_license
daffashafwan/project_resonator
5404fea0e44560c59548f0be136927e5a2dd81ed
577fcacad04e56e5b65b0edc25ea6dfa124180b4
refs/heads/master
2023-08-04T09:59:57.545380
2021-09-18T03:50:22
2021-09-18T03:50:22
288,103,823
2
0
null
null
null
null
UTF-8
PlantUML
false
false
7,924
puml
@startuml set namespaceSeparator :: class "project_resonator::main.dart::MyApp" { +Widget build() } "flutter::src::widgets::framework.dart::StatelessWidget" <|-- "project_resonator::main.dart::MyApp" class "project_resonator::main.dart::MyHomePage" { +dynamic title +_MyHomePageState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::main.dart::MyHomePage" class "project_resonator::main.dart::_MyHomePageState" { +int currentTab +Widget build() } "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::main.dart::_MyHomePageState" class "project_resonator::models::saved-item.dart::SavedItem" { {static} +String table +int id +String kalimat +Map toMap() {static} +SavedItem fromMap() } "project_resonator::models::model.dart::Model" <|-- "project_resonator::models::saved-item.dart::SavedItem" abstract class "project_resonator::models::model.dart::Model" { +int id {static} +dynamic fromMap() +dynamic toMap() } class "project_resonator::models::history-item.dart::HistoryItem" { {static} +String table +int id +String kalimat +String timestamp +Map toMap() {static} +HistoryItem fromMap() } "project_resonator::models::model.dart::Model" <|-- "project_resonator::models::history-item.dart::HistoryItem" class "project_resonator::pages::history.dart::TtsState" { +int index {static} +List<TtsState> values {static} +TtsState playing {static} +TtsState stopped } "project_resonator::pages::history.dart::TtsState" o-- "project_resonator::pages::history.dart::TtsState" class "project_resonator::pages::history.dart::History" { +_HistoryState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::history.dart::History" class "project_resonator::pages::history.dart::_HistoryState" { +FlutterTts flutterTts +TtsState ttsState +dynamic voice -List<HistoryItem> _kalimat -TextStyle _style -TextStyle _style_2 +dynamic dropdownValue +dynamic isPlaying +dynamic isStopped -List<Widget> _items +Widget format() -void _deleteDialog() +void initState() +dynamic initTts() -Future _speak() -void _delete() +Future refresh() +Widget build() } "project_resonator::pages::history.dart::_HistoryState" o-- "flutter_tts::flutter_tts.dart::FlutterTts" "project_resonator::pages::history.dart::_HistoryState" o-- "project_resonator::pages::history.dart::TtsState" "project_resonator::pages::history.dart::_HistoryState" o-- "flutter::src::painting::text_style.dart::TextStyle" "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::history.dart::_HistoryState" class "project_resonator::pages::penyimpanan.dart::TtsState" { +int index {static} +List<TtsState> values {static} +TtsState playing {static} +TtsState stopped } "project_resonator::pages::penyimpanan.dart::TtsState" o-- "project_resonator::pages::penyimpanan.dart::TtsState" class "project_resonator::pages::penyimpanan.dart::Penyimpanan" { +_PenyimpananState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::penyimpanan.dart::Penyimpanan" class "project_resonator::pages::penyimpanan.dart::_PenyimpananState" { +FlutterTts flutterTts +TtsState ttsState +dynamic voice +dynamic kalimat -List<SavedItem> _kalimat -TextStyle _style +dynamic isPlaying +dynamic isStopped -List<Widget> _items +Widget format() +void start() -void _delete() -void _save() -void _create() +void initState() +dynamic initTts() -Future _speak() +void refresh() +Widget build() } "project_resonator::pages::penyimpanan.dart::_PenyimpananState" o-- "flutter_tts::flutter_tts.dart::FlutterTts" "project_resonator::pages::penyimpanan.dart::_PenyimpananState" o-- "project_resonator::pages::penyimpanan.dart::TtsState" "project_resonator::pages::penyimpanan.dart::_PenyimpananState" o-- "flutter::src::painting::text_style.dart::TextStyle" "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::penyimpanan.dart::_PenyimpananState" class "project_resonator::pages::penyimpananStack.dart::PenyimpananStack" { +dynamic title +_PenyimpananStackState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::penyimpananStack.dart::PenyimpananStack" class "project_resonator::pages::penyimpananStack.dart::_PenyimpananStackState" { +int currentTab +dynamic dropdownValue +Widget build() } "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::penyimpananStack.dart::_PenyimpananStackState" class "project_resonator::pages::speak.dart::TtsState" { +int index {static} +List<TtsState> values {static} +TtsState playing {static} +TtsState stopped } "project_resonator::pages::speak.dart::TtsState" o-- "project_resonator::pages::speak.dart::TtsState" class "project_resonator::pages::speak.dart::Speak" { +List litems +List litems2 +List litems3 +_SpeakState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::speak.dart::Speak" class "project_resonator::pages::speak.dart::_SpeakState" { +FlutterTts flutterTts -dynamic _newVoiceText -dynamic _newDateText +TtsState ttsState -Map<dynamic, HighlightedWord> _highlights -bool _turn +List litems +List litems2 +List litems3 +List litems4 +TextEditingController eCtrl -SpeechToText _speech -bool _isListening -dynamic _text -double _confidence -TextStyle _style +dynamic isPlaying +dynamic isStopped -void _save() +void initState() +dynamic initTts() -Future _speak() -void _getDate() -void _onChange() -void _create() -void _saveDialog() +Widget setupAlertDialoadContainer() +Widget build() -void _listen() } "project_resonator::pages::speak.dart::_SpeakState" o-- "flutter_tts::flutter_tts.dart::FlutterTts" "project_resonator::pages::speak.dart::_SpeakState" o-- "project_resonator::pages::speak.dart::TtsState" "project_resonator::pages::speak.dart::_SpeakState" o-- "flutter::src::widgets::editable_text.dart::TextEditingController" "project_resonator::pages::speak.dart::_SpeakState" o-- "speech_to_text::speech_to_text.dart::SpeechToText" "project_resonator::pages::speak.dart::_SpeakState" o-- "flutter::src::painting::text_style.dart::TextStyle" "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::speak.dart::_SpeakState" class "project_resonator::pages::learn.dart::Learn" { +_LearnState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::learn.dart::Learn" class "project_resonator::pages::learn.dart::_LearnState" { +dynamic assett +Widget svg -TextStyle _style +Widget build() } "project_resonator::pages::learn.dart::_LearnState" o-- "flutter::src::widgets::framework.dart::Widget" "project_resonator::pages::learn.dart::_LearnState" o-- "flutter::src::painting::text_style.dart::TextStyle" "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::learn.dart::_LearnState" class "project_resonator::pages::awal.dart::Awal" { +_AwalState createState() } "flutter::src::widgets::framework.dart::StatefulWidget" <|-- "project_resonator::pages::awal.dart::Awal" class "project_resonator::pages::awal.dart::_AwalState" { +Widget build() } "flutter::src::widgets::framework.dart::State<T>" <|-- "project_resonator::pages::awal.dart::_AwalState" abstract class "project_resonator::services::db.dart::DB" { {static} -Database _db {static} -int _version {static} +Future init() {static} +void onCreate() {static} +Future query() {static} +Future insert() {static} +Future update() {static} +Future delete() } "project_resonator::services::db.dart::DB" o-- "sqflite_common::sqlite_api.dart::Database" @enduml
false
true
false
false
class
904c674e426da4160652011c26160c5801d19f1f
eca69cb6d5116f722816db8d50ed663afe5cd88b
/src/main/java/com/mpoom/designpattern/creational/builder/example1/game-role-builder.puml
b19e6af217e196e5e224050ad22cf2a641d3a5c9
[]
no_license
flyfrank/design-pattern
a21d7d23d02582397f9abe6f34dc298a95490721
6ede240ebecf259abf1fad8987e2a9094d5835d8
refs/heads/main
2023-01-11T18:30:51.829851
2020-11-08T13:44:40
2020-11-08T13:44:40
303,077,396
0
0
null
null
null
null
UTF-8
PlantUML
false
false
297
puml
@startuml class Actor { - String type - String sex - String face - String costume - String hairStyle } abstract class ActorBuilder { - Actor actor = new Actor() + void buildType() + void buildSex() + void buildFace() + void buildCostume() + void buildHairStyle() + Actor createActor() } @enduml
false
true
false
false
class
be0c91ece788ce4dfd683450cf58374938e5e460
27a045c374d7118b8019e71c6a166ccfef66a4cc
/JavaBasics/src/com/threadpool/threadpool.puml
749f22da96b4aed1520959fc053d1736ca1b44ef
[]
no_license
colonel8377/code
6f422c687226bae928ab6e377e321e4671d70d18
07ee8b4fc0d325341c6866395b5bda6d44271707
refs/heads/master
2022-01-04T20:09:21.777194
2018-12-26T14:15:39
2018-12-26T14:15:39
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
251
puml
@startuml class Executors { } interface ExecutorService extends Executor { } abstract class AbstractExecutorService implements ExecutorService { } class ThreadPoolExecutor extends AbstractExecutorService { } Executors ..> ExecutorService @enduml
false
true
false
false
class
4b8f7dc357e1eddf05b6e9979fa2d7558f22cfe4
e8f327b2aa41f6ee546541cbe4260a22fb59c75c
/src/doc/DomainModel/DomainModel.puml
d59db1a27661a76b46e92eb652bd3cfebd2088bb
[]
no_license
DanielOl1veira/units
5160065c3cd327332bd0aeb9a289ea742f112087
ada7ea59d295efc29d6122e747e5c5da67e8ba37
refs/heads/master
2020-05-04T09:06:59.991606
2019-04-02T15:20:04
2019-04-02T15:20:04
179,061,264
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,551
puml
@startuml title Domain Model skinparam titleBorderRoundCorner 10 skinparam titleBorderThickness 2 skinparam titleBorderColor indianred skinparam titleBackgroundColor ivory skinparam FontName verdana skinparam class { BorderColor indianred BackgroundColor indianred BackgroundColor ivory roundcorner 10 ArrowFontName Verdana ArrowColor indianred ArrowFontColor darkslategrey } class House House "1" -- "1" GeographicArea : has > House "1" -- "0,n" Room : may have 4 > House "1" -- "0,n" EnergyGrid: may have > EnergyGrid "1" -- "1" PowerSource: has > EnergyGrid "1" -- "0,n" Room: may have > Room "1" -- "0,n" Device : may have > House "1" -- "1" Location : is in > Location "1" -- "1" GeographicArea: is in > GeographicArea "0,n" -- "1" AreaType: is of > GeographicArea "1" -- "0,n" Sensor: may have> Sensor "n" -- "1" SensorType: is of > Device "1" .. "1" WaterHeater Device "1" .. "1" Fridge Device "1" .. "1" etc class Room { name; floor; width; length; height; } class House { id; address; deviceTypeList; } class Location { latitude; longitude; altitude; } class EnergyGrid{ name; nominal power; } class PowerSource{ name; max output; max storage; } Interface Device{ name; active; } class GeographicArea{ id; description; } class Sensor{ name; starting date; } class AreaType{ name; } class SensorType{ name; units; } class WaterHeater{ nominal power; volume; hot water temperature; efficiency coefficient; } class Fridge{ nominal power; freezer capacity; refrigerator capacity; } @enduml
false
true
false
false
class
dd6e6399207469590332f7c6d9103e7b82cd8a20
cbae2c225bd245204a40e41a25415c41604e6219
/design_document/diagrams/sequence_diagram/sequence-diagram_editTravelPreferences.plantuml
d2fa0f974e16d74904b16900df9301ecdf70aafe
[]
no_license
fcremo/AlfonsoCarsenzuolaCremonese-ingsw2
c15da77f1c33c9cdd0dd1dbe0c79bfe7bfea3903
931288cf6f6e98e177432e5445c6361a0c3443c4
refs/heads/master
2021-03-30T17:25:41.027189
2017-11-26T20:43:18
2017-11-26T20:43:18
105,372,279
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,574
plantuml
@startuml actor User participant WebServer participant UserManagementService participant DatabaseService activate User #FFBBBB User -> WebServer: PersonalArea activate WebServer #FFBBBB WebServer -> WebServer: LoadPersonalArea WebServer --> User: ShowPersonalAreaPage deactivate WebServer User -> WebServer: EditTravelPreferences activate WebServer #FFBBBB WebServer -> UserManagementService: RequestUserTravelPreferences activate UserManagementService #FFBBBB UserManagementService -> DatabaseService: RequestUserPreferences activate DatabaseService #FFBBBB DatabaseService -> UserManagementService: UserPreferences deactivate DatabaseService UserManagementService -> WebServer: UserTravelPreferences deactivate UserManagementService WebServer --> User: ShowEditablePreferencesForm deactivate WebServer User -> WebServer: InsertEditatedPreferences activate WebServer #FFBBBB WebServer -> UserManagementService: EditatedPreferences deactivate WebServer activate UserManagementService #FFBBBB UserManagementService -> UserManagementService: VerifyData deactivate UserManagementService alt correct data UserManagementService -> DatabaseService: UploadPreferences activate DatabaseService #FFBBBB UserManagementService -> WebServer: CorrectInsertedPreferences deactivate DatabaseService activate WebServer #FFBBBB WebServer --> User: ShowNewTravelPreferences deactivate WebServer else incorrect data UserManagementService -> WebServer: IncorrectInsertedPreferences activate WebServer #FFBBBB WebServer --> User: Error deactivate WebServer end @enduml
false
true
false
false
sequence
359fcd3cbca5b6386168df04c8f433d7e6128617
a3769b4806d0b48bfaf25aaa7b56fa46671e78c2
/app/src/main/java/com/myapp/organizeteam/MyService/MyService.plantuml
dec08ace811c52965297322b2b474e2ebf283058
[]
no_license
ofekgani/OrganizeTeam
6197e777b897f3c43c0e1987555e42aa4c374356
684b01601133fcf17313a3ed44c51ca6fda1f0d7
refs/heads/master
2023-06-04T17:23:47.310007
2021-06-23T00:51:45
2021-06-23T00:51:45
292,112,888
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,574
plantuml
@startuml title __MYSERVICE's Class Diagram__\n namespace com.myapp.organizeteam.MyService { interface com.myapp.organizeteam.MyService.APIService { {abstract} + sendNotification() } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.Client { {static} - retrofit : Retrofit {static} + getClient() } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.Data { - body : String - sented : String - title : String - user : String + Data() + getBody() + getSented() + getTitle() + getUser() + setBody() + setSented() + setTitle() + setUser() } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.MeetingAlarmReceiver { ~ bundle : Bundle + onReceive() - sendNotification() - updateMeetingStatus() } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.MyFirebaseMessagingService { - CHANNEL_ID : String + MyFirebaseMessagingService() + onMessageReceived() + onNewToken() - showNotification() } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.Notification { + createClient() + createNotificationChannel() + sendNotification() } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.Sender { + data : Data + to : String + Sender() + getData() + getTo() + setData() + setTo() } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.TaskAlarmReceiver { ~ bundle : Bundle + onReceive() - updateTaskStatus() } } namespace com.myapp.organizeteam.MyService { class com.myapp.organizeteam.MyService.Token { - token : String - userID : String + Token() + getToken() + getUserID() + setToken() + setUserID() } } com.myapp.organizeteam.MyService.Data .up.|> java.io.Serializable com.myapp.organizeteam.MyService.Token .up.|> java.io.Serializable 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
18de0a923e76fa8f6cb7a8a15927d5c9e993f4c9
2748577960ba36091dba79b507521c92dba723c8
/src/Portal/Network/Network.plantuml
6055289bd7a3b7167fe1e5d29547b2d529fdc7b9
[]
no_license
MartinEmilEshack/Portal
a6e3c25b421afef854bd576d97ce9019e597f700
8ac77fd31dcd3d7f7b74524f60da32259141b09d
refs/heads/master
2022-02-21T09:47:12.538411
2019-10-16T17:51:16
2019-10-16T17:51:16
213,708,757
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,332
plantuml
@startuml title __NETWORK's Class Diagram__\n package Portal.Network { class ReceivePort { {static} - LOGIN_DATA_PORT : int {static} - FILES_PORT : int {static} - password : int {static} + fileInputThread : Thread {static} + startLoginDataReceiver() {static} + generatePassword() {static} + getPassword() } } package Portal.Network { class LoginDataReceiver { + run() } } package Portal.Network { class FileDataReceiver { + run() } } package Portal.Network { class SendPort { {static} - LOGIN_DATA_PORT : int {static} - FILES_PORT : int {static} - IP : String {static} - fileBytes : FileBytes {static} + sendRequest() {static} + getLocalIP() } } package Portal.Network { class FileDataSender { + run() } } ReceivePort +-down- LoginDataReceiver ReceivePort +-down- FileDataReceiver LoginDataReceiver -up-|> Runnable FileDataReceiver -up-|> Runnable SendPort +-down- FileDataSender FileDataSender -up-|> Runnable 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
82ebae906ccdf4824e70d00a85a2b35c9c5d7722
f5114859c96b61103f81b6f8e93a4a236c674928
/java-security/iasApplication.puml
62a227f25a9a2f004e2d51d1706cce2ad1ea1829
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ravirao1208/cloud-security-xsuaa-integration
35c2a531120efa6f82ccdf7b465c5e8a86a129a7
cc928b4d338a80b19ac8db80b68a37de72131262
refs/heads/master
2020-12-20T10:42:23.469337
2020-01-24T16:03:57
2020-01-24T16:03:57
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
547
puml
@startuml -> Application: setup() Application --> Environments: getCurrent().getIasConfiguration() Environments -> Application: OAuth2ServiceConfiguration Application -> JwtValidatorBuilder: getInstance(OAuth2ServiceConfiguration).build() JwtValidatorBuilder --> Application: CombinedValidator -> Application: anyProtectedFunction() Application -> IasToken: new("abyJhbGci1iJSUzI1NiJ9.eyJhdW...") IasToken --> Application: Token Application -> CombinedValidator: validate(Token) CombinedValidator --> Application: ValidationResult @enduml
false
true
false
false
sequence
53f6ec83ea98a8add6f32585f17059ff5bf08f8b
4abb144df57ba47e6a7a3e238f132f42f4291b40
/doc/c3nav.puml
ff40c91fd8f65ce468619e1091d08a62cdb811d5
[ "Apache-2.0" ]
permissive
bate/c3nav
b10c06c6264440218160929b3638d4570ec5bb99
9a86dd3eaeb3a10af3c5fa869575ed1e9300465a
refs/heads/master
2020-03-30T23:58:24.810171
2018-11-19T08:32:30
2018-11-19T08:32:30
151,720,077
0
0
Apache-2.0
2018-11-19T08:32:31
2018-10-05T12:51:04
Python
UTF-8
PlantUML
false
false
1,739
puml
@startuml class Level { name: str altitude: Decimal } class Source { name: str bottom: Decimal left: Decimal top: Decimal right: Decimal } abstract class GeometryMixin { geometry: } abstract class LevelGeometryMixin { } GeometryMixin <|-- LevelGeometryMixin Level "1" *-- "*" LevelGeometryMixin: section class Building { geometry: polygon } LevelGeometryMixin <|-- Building class Space { geometry: polygon public: bool } LevelGeometryMixin <|-- Space class Door { geometry: polygon } LevelGeometryMixin <|-- Door abstract class SpaceGeometryMixin { } GeometryMixin <|-- SpaceGeometryMixin Space "1" *-- "*" SpaceGeometryMixin: space class Hole { geometry: polygon } SpaceGeometryMixin <|-- Hole class Area { geometry: polygon } SpaceGeometryMixin <|-- Area class POI { geometry: point } SpaceGeometryMixin <|-- POI class Stair { geometry: linestring } SpaceGeometryMixin <|-- Stair class Obstacle { geometry: polygon } SpaceGeometryMixin <|-- Obstacle class LineObstacle { geometry: linestring } SpaceGeometryMixin <|-- LineObstacle abstract class Location { titles: dict public: bool can_search: bool can_describe: bool } abstract class SpecificLocation { } SpecificLocation --|> Location Level --|> SpecificLocation Space --|> SpecificLocation Area --|> SpecificLocation POI --|> SpecificLocation class LocationGroupCategory { name: str titles: dict } class LocationGroup { color: str } LocationGroup --|> Location SpecificLocation "*" --o "*" LocationGroup: groups LocationGroup "*" --o "1" LocationGroupCategory: category class LocationSlug { slug: str } Location "1" -- "1" LocationSlug hide methods @enduml
false
true
false
false
class
2ddf0b41bb23ce56b27a0a4c70635c1a7ccded20
41f0b31b86edc1561e19ffc7f50350e18d7a985c
/generated/structurizr/structurizr-Components.puml
bc3e10ab6cad1ae48c2d1cbac79cedb05c7f7338
[]
no_license
codersparks-old/wiki-plantuml-test
8c464d2107d8de1736f891272999a6d53ec11575
09791abc62f6d68126da9512ce118cc7c31dbecf
refs/heads/main
2023-01-25T02:44:45.418528
2020-12-10T11:48:40
2020-12-10T11:48:40
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,899
puml
@startuml(id=Components) title Internet Banking System - API Application - Components skinparam { shadowing false arrowFontSize 10 defaultTextAlignment center wrapWidth 200 maxMessageSize 100 } hide stereotype top to bottom direction skinparam rectangle<<12>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5D82A8 } skinparam rectangle<<13>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5D82A8 } skinparam rectangle<<14>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5D82A8 } skinparam rectangle<<4>> { BackgroundColor #999999 FontColor #ffffff BorderColor #6B6B6B } skinparam rectangle<<15>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5D82A8 } skinparam rectangle<<16>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5D82A8 } skinparam rectangle<<5>> { BackgroundColor #999999 FontColor #ffffff BorderColor #6B6B6B } skinparam rectangle<<17>> { BackgroundColor #85bbf0 FontColor #000000 BorderColor #5D82A8 } skinparam database<<18>> { BackgroundColor #438dd5 FontColor #ffffff BorderColor #2E6295 } skinparam rectangle<<8>> { BackgroundColor #438dd5 FontColor #ffffff BorderColor #2E6295 } skinparam rectangle<<9>> { BackgroundColor #438dd5 FontColor #ffffff BorderColor #2E6295 } database "==Database\n<size:10>[Container: Oracle Database Schema]</size>\n\nStores user registration information, hashed authentication credentials, access logs, etc." <<18>> as 18 rectangle "==E-mail System\n<size:10>[Software System]</size>\n\nThe internal Microsoft Exchange e-mail system" <<5>> as 5 rectangle "==Mainframe Banking System\n<size:10>[Software System]</size>\n\nStores all of the core banking information about customers, accounts, transactions, etc." <<4>> as 4 rectangle "==Mobile App\n<size:10>[Container: Xamarin]</size>\n\nProvides a limited subset of the Internet banking functionality to customers via their mobile device." <<9>> as 9 rectangle "==Single-Page Application\n<size:10>[Container: JavaScript and Angular]</size>\n\nProvides all of the Internet banking functionality to customers via their web browser." <<8>> as 8 package "API Application\n[Container: Java and Spring MVC]" { rectangle "==Accounts Summary Controller\n<size:10>[Component: Spring MVC Rest Controller]</size>\n\nProvides customers with a summary of their bank accounts." <<13>> as 13 rectangle "==E-mail Component\n<size:10>[Component: Spring Bean]</size>\n\nSends e-mails to users." <<17>> as 17 rectangle "==Mainframe Banking System Facade\n<size:10>[Component: Spring Bean]</size>\n\nA facade onto the mainframe banking system." <<16>> as 16 rectangle "==Reset Password Controller\n<size:10>[Component: Spring MVC Rest Controller]</size>\n\nAllows users to reset their passwords with a single use URL." <<14>> as 14 rectangle "==Security Component\n<size:10>[Component: Spring Bean]</size>\n\nProvides functionality related to signing in, changing passwords, etc." <<15>> as 15 rectangle "==Sign In Controller\n<size:10>[Component: Spring MVC Rest Controller]</size>\n\nAllows users to sign in to the Internet Banking System." <<12>> as 12 } 13 .[#707070].> 16 : "Uses" 17 .[#707070].> 5 : "Sends e-mail using" 16 .[#707070].> 4 : "Makes API calls to\n<size:8>[XML/HTTPS]</size>" 9 .[#707070].> 13 : "Makes API calls to\n<size:8>[JSON/HTTPS]</size>" 9 .[#707070].> 14 : "Makes API calls to\n<size:8>[JSON/HTTPS]</size>" 9 .[#707070].> 12 : "Makes API calls to\n<size:8>[JSON/HTTPS]</size>" 14 .[#707070].> 17 : "Uses" 14 .[#707070].> 15 : "Uses" 15 .[#707070].> 18 : "Reads from and writes to\n<size:8>[JDBC]</size>" 12 .[#707070].> 15 : "Uses" 8 .[#707070].> 13 : "Makes API calls to\n<size:8>[JSON/HTTPS]</size>" 8 .[#707070].> 14 : "Makes API calls to\n<size:8>[JSON/HTTPS]</size>" 8 .[#707070].> 12 : "Makes API calls to\n<size:8>[JSON/HTTPS]</size>" @enduml
false
true
false
false
sequence
511339957e60f091a13ed9b09bc9cef80ffa5aba
02a364d6cc772a9bf2e72d02dbecca74ac14d335
/eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Tests.EngineTests/EngineTestBase.puml
fd0ccbc506940c623ce1a2bcd582d920d32a21a9
[ "BSD-3-Clause" ]
permissive
noelmartens/TransitionAcademy
4e02379d234aa4859a497ee2846420f4c55b9e12
3b95a5c737ab7b1497b77d455cf64caa73f69e1f
refs/heads/master
2023-06-14T05:25:35.514249
2021-07-02T19:40:29
2021-07-02T19:40:29
362,512,351
0
0
null
null
null
null
UTF-8
PlantUML
false
false
75
puml
@startuml abstract class EngineTestBase { + EngineTestBase() } @enduml
false
true
false
false
class
4ffd3f79b2812e5dae298d5f8e17574f271758ee
2c213d491d7642ea95af8ba9c5fb9fdc9295f07e
/uml/assignment4uml.puml
f34dfe1c1a5a97e928d31aa9c504a126f2959a65
[]
no_license
GregieBoi/kennison-cop3330-assignment4part2
59c71bc019c7311d197f2e6b28a887b5c54cb4a9
efb9722eddad5ab878921d3870f7a4a08030af56
refs/heads/master
2023-09-02T01:53:09.062911
2021-11-16T00:29:25
2021-11-16T00:29:25
428,462,841
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,009
puml
@startuml class App { ..Void Methods.. + main() + start() } class todoLists { ArrayList<todoList> lists ..Basic Getter.. + getLists() ..Basic Setter.. + setLists() } class todoList { String title ArrayList<item> items ..Basic Getter.. + getTitle() + getItems() ..Basic Setter.. + setTitle() + setItems() } class item { String description String due ..Basic Getter.. + getDescription() + getDue() ..Basic Setter.. + setDescription() + setDue() } class ControllerListView { ..Methods.. + openList() + openItem() + onOpen() + onSave() + onSaveAll() + onExit() + onSelect() + onAddList() + onEditList() + onRemoveList() + onAddItem() + onEditItem() + onRemoveItem() + onMarkCompleted() } class ControllerNewList { ..Methods.. + onFinish() + onName() } class ControllerNewItem { ..Methods.. + onFinish() + onDate() + onDescription() } App *- todoLists todoLists *- todoList todoList *- item App *- ControllerListView ControllerListView *- ControllerNewList ControllerListView *- ControllerNewItem @enduml
false
true
false
false
class
f98f118aa7c97c943866e2f96a54213fef152631
856c17570e7975ab81ca242d4e77d068db2d33f6
/exercise46/exercise46.puml
4528b576d005f56f376e20fd45931edff576cb20
[]
no_license
jpaez11/paez-a04
2f66d2f6094d43b598bc796b82e8ec5ada98e903
b6f74c02be07b00e81c26fb4be00905af7f749c4
refs/heads/master
2023-08-15T04:06:10.509682
2021-10-18T03:11:44
2021-10-18T03:11:44
417,701,796
0
0
null
null
null
null
UTF-8
PlantUML
false
false
78
puml
@startuml class baseline.solution46 { + {static} void main(String[]) } @enduml
false
true
false
false
class
44bd6ad8618aed3a262c3e25782c7e798ed6c8c6
c24e126333c29336419f10700025cb8e8925288a
/docs/diagrams/AppointmentFindPatientCommandDiagram.puml
13f6e16410264cf64099cbbead02b8dbae848284
[ "LicenseRef-scancode-other-permissive", "MIT" ]
permissive
AY2021S1-CS2103T-W11-1/tp
a0c32e3ab109448b06ab0c063bdc3ae45a2e14d2
bf5d291001f7e007a623f46376eb3eaee0a97f07
refs/heads/master
2023-01-07T11:20:38.657224
2020-11-09T12:24:15
2020-11-09T12:24:15
295,408,113
1
5
NOASSERTION
2020-11-09T12:24:16
2020-09-14T12:24:05
Java
UTF-8
PlantUML
false
false
1,288
puml
@startuml skinparam backgroundColor #ffffff skinparam classAttributeIconSize 0 hide circle abstract class "{abstract}\nCommand" { + {abstract} execute(model : Model) : CommandResult } class Model <<Interface>> { } class ModelManager { + updateFilteredAppointmentList(predicate : Predicate<Appointment>) : void + getFilteredAppointmentList() : ObservableList<Appointment> } ModelManager ..down|> Model class AppointmentFindPatientCommand { /' Methods '/ + execute(model : Model) : CommandResult } class AppointmentFindPatientCommandParser { /' Methods '/ + parse(args : String) : AppointmentFindPatientCommand } interface Parser<T> <<interface>> { parse(userInput : String) : AppointmentFindPatientCommand } interface Predicate<T> <<interface>> { test(appointment : Appointment) : boolean } class SearchPatientFilter { + test(appointment : Appointment) : boolean - keywords : List<String> } AppointmentFindPatientCommandParser ..down|> Parser SearchPatientFilter ..left|> Predicate AppointmentFindPatientCommandParser ..left> AppointmentFindPatientCommand AppointmentFindPatientCommand --up|> "{abstract}\nCommand" AppointmentFindPatientCommand ..left> ModelManager AppointmentFindPatientCommand ..down> SearchPatientFilter @enduml
false
true
false
false
class
cb531d80e3df837f2600e587cc7cb5d99a7d3784
326f0532299d6efcaec59d5a2cc95c31d9af9ef2
/src/com/atguigu/uml/generalization/generalization.plantuml
1c783c3081f9d3b41c401a4cd4ec941aea98f888
[]
no_license
srefp/design_pattern
4b45ceb0808a8ae98a007bc5b0e01825693dcf7b
b7ff2d80172c55848b8f59530da6ccca477dfd24
refs/heads/main
2023-01-19T06:12:14.495913
2020-11-24T08:48:53
2020-11-24T08:48:53
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
688
plantuml
@startuml title __GENERALIZATION's Class Diagram__\n namespace com.atguigu.uml { namespace generalization { abstract class com.atguigu.uml.generalization.DaoSupport { + delete() + save() } } } namespace com.atguigu.uml { namespace generalization { class com.atguigu.uml.generalization.PersonServiceBean { } } } com.atguigu.uml.generalization.PersonServiceBean -up-|> com.atguigu.uml.generalization.DaoSupport 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
2454014b50c0d772bf8338edf6665902e2e36b71
f956adb4d6c2a7b3cc951b6a719633effb427956
/docs/diagram/sequence/mapSystem.puml
bbfd91ce733dd32a2811c546bad1dfd2f3aad1cd
[ "Apache-2.0" ]
permissive
Trystan4/Wadge-BackEnd
43f9a82c50ce9b35d8fab8c60ddc4d460f91f5a0
cde2f0e438ded14aad615fadfc97075a946ee15e
refs/heads/master
2023-01-30T07:42:01.128401
2020-12-07T15:41:42
2020-12-07T15:41:42
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
718
puml
@startuml mapSystem autonumber actor User participant ": Front" as frontend participant ": Back" as backend participant ": API Google" as google User -> frontend: cliquer sur "Cartes des magasins" activate frontend frontend -> google: authentifier au service activate google google --> frontend: permission de l'affichage de la carte deactivate google frontend --> User: afficher la carte frontend -> backend: GET /map/{lat}/{lng} backend -> google: demande des magasins proches activate backend google --> backend: informations sur les magasins proches backend --> frontend: réponse liste des magasins proches deactivate backend frontend --> User: afficher map de la liste des magasins deactivate frontend @enduml
false
true
true
false
sequence
c66d39009d3ef27eb6cfa121bd3e6f51b33fbfd4
b56b58856c4eebec45c4d069b9e0d3fec7927a74
/src/Docs/Resources/current/60-references-internals/10-core/10-erd/_puml/erd-overview.puml
b1c812bfd9ce006c1423466e5da8ae495e5bdee7
[ "LicenseRef-scancode-generic-cla", "MIT" ]
permissive
gcascio/platform
ebf3f1dbc800669077f52a0d17da589ad7329499
678844e284f4122c01c2a9a95e9ac52428b5bded
refs/heads/master
2023-02-12T20:30:17.287115
2021-01-07T09:10:38
2021-01-07T09:10:38
292,566,084
0
0
MIT
2020-09-03T12:38:21
2020-09-03T12:38:21
null
UTF-8
PlantUML
false
false
18,514
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(ShopwareCoreFrameworkLog, "Shopware\Core\Framework\Log\n(Logs)") { log_entry Table } Table(ShopwareCoreFrameworkApi, "Shopware\Core\Framework\Api\n(Rest-API)") { acl_role Table acl_user_role Table } Table(ShopwareCoreFrameworkApp, "Shopware\Core\Framework\App\n(App system)") { app Table app_translation Table app_action_button Table app_action_button_translation Table app_template Table } Table(ShopwareCoreSystemCustomField, "Shopware\Core\System\CustomField\n(Custom Fields/EAV)") { custom_field Table custom_field_set Table custom_field_set_relation Table } Table(ShopwareCoreFrameworkEvent, "Shopware\Core\Framework\Event\n(Business events)") { event_action Table event_action_rule Table event_action_sales_channel Table } Table(ShopwareCoreFrameworkMessageQueue, "Shopware\Core\Framework\MessageQueue\n(Asynchronous messaging)") { dead_message Table message_queue_stats Table scheduled_task Table } Table(ShopwareCoreFrameworkPlugin, "Shopware\Core\Framework\Plugin\n(Plugins)") { plugin Table plugin_translation Table } Table(ShopwareCoreSystemLanguage, "Shopware\Core\System\Language\n(Languages)") { language Table } Table(ShopwareCoreContentSeo, "Shopware\Core\Content\Seo\n(Seo)") { seo_url Table seo_url_template Table main_category Table } Table(ShopwareCoreFrameworkWebhook, "Shopware\Core\Framework\Webhook\n(Webhooks)") { webhook Table } Table(ShopwareCoreSystemSalesChannel, "Shopware\Core\System\SalesChannel\n(Sales channels)") { sales_channel Table sales_channel_translation Table sales_channel_country Table sales_channel_currency Table sales_channel_domain Table sales_channel_language Table sales_channel_payment_method Table sales_channel_shipping_method Table sales_channel_type Table sales_channel_type_translation Table sales_channel_analytics Table } Table(ShopwareCoreSystemCountry, "Shopware\Core\System\Country\n(Countries)") { country Table country_state Table country_state_translation Table country_translation Table } Table(ShopwareCoreSystemCurrency, "Shopware\Core\System\Currency\n(Currencies)") { currency Table currency_translation Table } Table(ShopwareCoreSystemLocale, "Shopware\Core\System\Locale\n(Locales)") { locale Table locale_translation Table } Table(ShopwareCoreSystemSnippet, "Shopware\Core\System\Snippet\n(Custom placeholder translations)") { snippet_set Table snippet Table } Table(ShopwareCoreSystemSalutation, "Shopware\Core\System\Salutation\n(Salutations)") { salutation Table salutation_translation Table } Table(ShopwareCoreSystemTax, "Shopware\Core\System\Tax\n(Taxes)") { tax Table tax_rule Table tax_rule_type Table tax_rule_type_translation Table } Table(ShopwareCoreSystemUnit, "Shopware\Core\System\Unit\n(Units)") { unit Table unit_translation Table } Table(ShopwareCoreSystemUser, "Shopware\Core\System\User\n(Admin Accounts)") { user Table user_access_key Table user_recovery Table } Table(ShopwareCoreSystemIntegration, "Shopware\Core\System\Integration\n(O-Auth integrations)") { integration Table integration_role Table } Table(ShopwareCoreSystemStateMachine, "Shopware\Core\System\StateMachine\n(State machine)") { state_machine Table state_machine_translation Table state_machine_state Table state_machine_state_translation Table state_machine_transition Table state_machine_history Table } Table(ShopwareCoreSystemSystemConfig, "Shopware\Core\System\SystemConfig\n(System configuration)") { system_config Table } Table(ShopwareCoreSystemNumberRange, "Shopware\Core\System\NumberRange\n(Number ranges)") { number_range Table number_range_sales_channel Table number_range_state Table number_range_type Table number_range_type_translation Table number_range_translation Table } Table(ShopwareCoreSystemTag, "Shopware\Core\System\Tag\n(Tags)") { tag Table } Table(ShopwareCoreContentCategory, "Shopware\Core\Content\Category\n(Categories)") { category Table category_translation Table category_tag Table } Table(ShopwareCoreContentMedia, "Shopware\Core\Content\Media\n(Media/File management)") { media Table media_default_folder Table media_thumbnail Table media_translation Table media_folder Table media_thumbnail_size Table media_folder_configuration Table media_folder_configuration_media_thumbnail_size Table media_tag Table } Table(ShopwareCoreContentProduct, "Shopware\Core\Content\Product\n(Products)") { product Table product_category Table product_custom_field_set Table product_tag Table product_configurator_setting Table product_price Table product_property Table product_search_keyword Table product_keyword_dictionary Table product_review Table product_manufacturer Table product_manufacturer_translation Table product_media Table product_translation Table product_option Table product_category_tree Table product_cross_selling Table product_cross_selling_translation Table product_cross_selling_assigned_products Table product_feature_set Table product_feature_set_translation Table product_sorting Table product_sorting_translation Table product_visibility Table } Table(ShopwareCoreSystemDeliveryTime, "Shopware\Core\System\DeliveryTime\n(Delivery time)") { delivery_time Table delivery_time_translation Table } Table(ShopwareCoreContentNewsletter, "Shopware\Core\Content\Newsletter\n(Newsletter)") { newsletter_recipient Table newsletter_recipient_tag Table } Table(ShopwareCoreContentRule, "Shopware\Core\Content\Rule\n(Rules)") { rule Table rule_condition Table } Table(ShopwareCoreContentProductStream, "Shopware\Core\Content\ProductStream\n(Product streams)") { product_stream Table product_stream_translation Table product_stream_filter Table } Table(ShopwareCoreContentProductExport, "Shopware\Core\Content\ProductExport\n(Product export)") { product_export Table } Table(ShopwareCoreContentProperty, "Shopware\Core\Content\Property\n(Property)") { property_group Table property_group_option Table property_group_option_translation Table property_group_translation Table } Table(ShopwareCoreContentCms, "Shopware\Core\Content\Cms\n(Content Management)") { cms_page Table cms_page_translation Table cms_section Table cms_block Table cms_slot Table cms_slot_translation Table } Table(ShopwareCoreContentMailTemplate, "Shopware\Core\Content\MailTemplate\n(Mailing)") { mail_template Table mail_template_translation Table mail_template_type Table mail_template_type_translation Table mail_template_sales_channel Table mail_template_media Table mail_header_footer Table mail_header_footer_translation Table } Table(ShopwareCoreContentImportExport, "Shopware\Core\Content\ImportExport\n(Import/Export)") { import_export_profile Table import_export_log Table import_export_file Table import_export_profile_translation Table } Table(ShopwareCoreCheckoutCustomer, "Shopware\Core\Checkout\Customer\n(Customer)") { customer Table customer_group_translation Table customer_address Table customer_recovery Table customer_group Table customer_group_registration_sales_channels Table customer_tag Table } Table(ShopwareCoreCheckoutDocument, "Shopware\Core\Checkout\Document\n(Printed works)") { document Table document_type Table document_type_translation Table document_base_config Table document_base_config_sales_channel Table } Table(ShopwareCoreCheckoutOrder, "Shopware\Core\Checkout\Order\n(Orders)") { order Table order_address Table order_customer Table order_delivery Table order_delivery_position Table order_line_item Table order_tag Table order_transaction Table } Table(ShopwareCoreCheckoutPayment, "Shopware\Core\Checkout\Payment\n(Payments)") { payment_method Table payment_method_translation Table } Table(ShopwareCoreCheckoutPromotion, "Shopware\Core\Checkout\Promotion\n(Promotions)") { promotion Table promotion_sales_channel Table promotion_individual_code Table promotion_discount Table promotion_discount_rule Table promotion_setgroup Table promotion_setgroup_rule Table promotion_order_rule Table promotion_persona_customer Table promotion_persona_rule Table promotion_cart_rule Table promotion_translation Table promotion_discount_prices Table } Table(ShopwareCoreCheckoutShipping, "Shopware\Core\Checkout\Shipping\n(Shipping)") { shipping_method Table shipping_method_tag Table shipping_method_price Table shipping_method_translation Table } Table(ShopwareStorefront, "Shopware\Storefront\n(Storefront)") { theme Table theme_translation Table theme_sales_channel Table theme_media Table } ' relationshipd ShopwareCoreFrameworkApi --> ShopwareCoreFrameworkApi ShopwareCoreFrameworkApp --> ShopwareCoreFrameworkApi ShopwareCoreSystemIntegration --> ShopwareCoreFrameworkApi ShopwareCoreSystemUser --> ShopwareCoreFrameworkApi ShopwareCoreFrameworkApp --> ShopwareCoreFrameworkApp ShopwareCoreSystemIntegration --> ShopwareCoreFrameworkApp ShopwareCoreSystemCustomField --> ShopwareCoreFrameworkApp ShopwareCoreFrameworkWebhook --> ShopwareCoreFrameworkApp ShopwareCoreSystemLanguage --> ShopwareCoreFrameworkApp ShopwareCoreSystemCustomField --> ShopwareCoreSystemCustomField ShopwareCoreContentProduct --> ShopwareCoreSystemCustomField ShopwareCoreFrameworkEvent --> ShopwareCoreFrameworkEvent ShopwareCoreContentRule --> ShopwareCoreFrameworkEvent ShopwareCoreSystemSalesChannel --> ShopwareCoreFrameworkEvent ShopwareCoreFrameworkMessageQueue --> ShopwareCoreFrameworkMessageQueue ShopwareCoreFrameworkPlugin --> ShopwareCoreFrameworkPlugin ShopwareCoreCheckoutPayment --> ShopwareCoreFrameworkPlugin ShopwareCoreSystemLanguage --> ShopwareCoreFrameworkPlugin ShopwareCoreSystemLanguage --> ShopwareCoreSystemLanguage ShopwareCoreSystemLocale --> ShopwareCoreSystemLanguage ShopwareCoreSystemSalesChannel --> ShopwareCoreSystemLanguage ShopwareCoreCheckoutCustomer --> ShopwareCoreSystemLanguage ShopwareCoreContentNewsletter --> ShopwareCoreSystemLanguage ShopwareCoreCheckoutOrder --> ShopwareCoreSystemLanguage ShopwareCoreContentCategory --> ShopwareCoreSystemLanguage ShopwareCoreSystemCountry --> ShopwareCoreSystemLanguage ShopwareCoreSystemCurrency --> ShopwareCoreSystemLanguage ShopwareCoreContentMedia --> ShopwareCoreSystemLanguage ShopwareCoreCheckoutPayment --> ShopwareCoreSystemLanguage ShopwareCoreContentProduct --> ShopwareCoreSystemLanguage ShopwareCoreCheckoutShipping --> ShopwareCoreSystemLanguage ShopwareCoreSystemUnit --> ShopwareCoreSystemLanguage ShopwareCoreContentProperty --> ShopwareCoreSystemLanguage ShopwareCoreSystemSalutation --> ShopwareCoreSystemLanguage ShopwareCoreContentProductStream --> ShopwareCoreSystemLanguage ShopwareCoreSystemStateMachine --> ShopwareCoreSystemLanguage ShopwareCoreContentCms --> ShopwareCoreSystemLanguage ShopwareCoreContentMailTemplate --> ShopwareCoreSystemLanguage ShopwareCoreCheckoutDocument --> ShopwareCoreSystemLanguage ShopwareCoreSystemNumberRange --> ShopwareCoreSystemLanguage ShopwareCoreSystemDeliveryTime --> ShopwareCoreSystemLanguage ShopwareCoreCheckoutPromotion --> ShopwareCoreSystemLanguage ShopwareCoreContentSeo --> ShopwareCoreSystemLanguage ShopwareCoreSystemTax --> ShopwareCoreSystemLanguage ShopwareCoreContentImportExport --> ShopwareCoreSystemLanguage ShopwareStorefront --> ShopwareCoreSystemLanguage ShopwareCoreSystemSalesChannel --> ShopwareCoreContentSeo ShopwareCoreContentProduct --> ShopwareCoreContentSeo ShopwareCoreContentCategory --> ShopwareCoreContentSeo ShopwareCoreSystemSalesChannel --> ShopwareCoreSystemSalesChannel ShopwareCoreCheckoutCustomer --> ShopwareCoreSystemSalesChannel ShopwareCoreSystemCurrency --> ShopwareCoreSystemSalesChannel ShopwareCoreCheckoutPayment --> ShopwareCoreSystemSalesChannel ShopwareCoreCheckoutShipping --> ShopwareCoreSystemSalesChannel ShopwareCoreSystemCountry --> ShopwareCoreSystemSalesChannel ShopwareCoreCheckoutOrder --> ShopwareCoreSystemSalesChannel ShopwareCoreSystemSystemConfig --> ShopwareCoreSystemSalesChannel ShopwareCoreContentCategory --> ShopwareCoreSystemSalesChannel ShopwareCoreContentProduct --> ShopwareCoreSystemSalesChannel ShopwareCoreContentMailTemplate --> ShopwareCoreSystemSalesChannel ShopwareCoreContentNewsletter --> ShopwareCoreSystemSalesChannel ShopwareCoreSystemNumberRange --> ShopwareCoreSystemSalesChannel ShopwareCoreCheckoutPromotion --> ShopwareCoreSystemSalesChannel ShopwareCoreCheckoutDocument --> ShopwareCoreSystemSalesChannel ShopwareCoreContentProductExport --> ShopwareCoreSystemSalesChannel ShopwareStorefront --> ShopwareCoreSystemSalesChannel ShopwareCoreSystemSnippet --> ShopwareCoreSystemSalesChannel ShopwareCoreSystemCountry --> ShopwareCoreSystemCountry ShopwareCoreCheckoutCustomer --> ShopwareCoreSystemCountry ShopwareCoreCheckoutOrder --> ShopwareCoreSystemCountry ShopwareCoreSystemTax --> ShopwareCoreSystemCountry ShopwareCoreSystemCurrency --> ShopwareCoreSystemCurrency ShopwareCoreCheckoutOrder --> ShopwareCoreSystemCurrency ShopwareCoreCheckoutPromotion --> ShopwareCoreSystemCurrency ShopwareCoreContentProductExport --> ShopwareCoreSystemCurrency ShopwareCoreSystemLocale --> ShopwareCoreSystemLocale ShopwareCoreSystemUser --> ShopwareCoreSystemLocale ShopwareCoreSystemSnippet --> ShopwareCoreSystemSnippet ShopwareCoreSystemSalutation --> ShopwareCoreSystemSalutation ShopwareCoreCheckoutCustomer --> ShopwareCoreSystemSalutation ShopwareCoreCheckoutOrder --> ShopwareCoreSystemSalutation ShopwareCoreContentNewsletter --> ShopwareCoreSystemSalutation ShopwareCoreContentProduct --> ShopwareCoreSystemTax ShopwareCoreSystemTax --> ShopwareCoreSystemTax ShopwareCoreCheckoutShipping --> ShopwareCoreSystemTax ShopwareCoreContentProduct --> ShopwareCoreSystemUnit ShopwareCoreSystemUnit --> ShopwareCoreSystemUnit ShopwareCoreContentMedia --> ShopwareCoreSystemUser ShopwareCoreSystemUser --> ShopwareCoreSystemUser ShopwareCoreSystemStateMachine --> ShopwareCoreSystemUser ShopwareCoreContentImportExport --> ShopwareCoreSystemUser ShopwareCoreCheckoutOrder --> ShopwareCoreSystemUser ShopwareCoreSystemIntegration --> ShopwareCoreSystemIntegration ShopwareCoreSystemStateMachine --> ShopwareCoreSystemStateMachine ShopwareCoreCheckoutOrder --> ShopwareCoreSystemStateMachine ShopwareCoreSystemNumberRange --> ShopwareCoreSystemNumberRange ShopwareCoreContentProduct --> ShopwareCoreSystemTag ShopwareCoreContentMedia --> ShopwareCoreSystemTag ShopwareCoreContentCategory --> ShopwareCoreSystemTag ShopwareCoreCheckoutCustomer --> ShopwareCoreSystemTag ShopwareCoreCheckoutOrder --> ShopwareCoreSystemTag ShopwareCoreCheckoutShipping --> ShopwareCoreSystemTag ShopwareCoreContentNewsletter --> ShopwareCoreSystemTag ShopwareCoreContentCategory --> ShopwareCoreContentCategory ShopwareCoreContentMedia --> ShopwareCoreContentCategory ShopwareCoreContentProduct --> ShopwareCoreContentCategory ShopwareCoreContentCms --> ShopwareCoreContentCategory ShopwareCoreContentProductStream --> ShopwareCoreContentCategory ShopwareCoreContentMedia --> ShopwareCoreContentMedia ShopwareCoreContentProduct --> ShopwareCoreContentMedia ShopwareCoreContentProperty --> ShopwareCoreContentMedia ShopwareCoreContentMailTemplate --> ShopwareCoreContentMedia ShopwareCoreCheckoutDocument --> ShopwareCoreContentMedia ShopwareCoreCheckoutShipping --> ShopwareCoreContentMedia ShopwareCoreCheckoutPayment --> ShopwareCoreContentMedia ShopwareCoreCheckoutOrder --> ShopwareCoreContentMedia ShopwareCoreContentCms --> ShopwareCoreContentMedia ShopwareStorefront --> ShopwareCoreContentMedia ShopwareCoreContentProduct --> ShopwareCoreContentProduct ShopwareCoreSystemDeliveryTime --> ShopwareCoreContentProduct ShopwareCoreCheckoutOrder --> ShopwareCoreContentProduct ShopwareCoreContentProperty --> ShopwareCoreContentProduct ShopwareCoreContentRule --> ShopwareCoreContentProduct ShopwareCoreCheckoutCustomer --> ShopwareCoreContentProduct ShopwareCoreContentProductStream --> ShopwareCoreContentProduct ShopwareCoreCheckoutShipping --> ShopwareCoreSystemDeliveryTime ShopwareCoreSystemDeliveryTime --> ShopwareCoreSystemDeliveryTime ShopwareCoreContentNewsletter --> ShopwareCoreContentNewsletter ShopwareCoreContentRule --> ShopwareCoreContentRule ShopwareCoreCheckoutShipping --> ShopwareCoreContentRule ShopwareCoreCheckoutPayment --> ShopwareCoreContentRule ShopwareCoreCheckoutPromotion --> ShopwareCoreContentRule ShopwareCoreContentProductStream --> ShopwareCoreContentProductStream ShopwareCoreContentProductExport --> ShopwareCoreContentProductStream ShopwareCoreContentProperty --> ShopwareCoreContentProperty ShopwareCoreContentCms --> ShopwareCoreContentCms ShopwareCoreContentMailTemplate --> ShopwareCoreContentMailTemplate ShopwareCoreContentImportExport --> ShopwareCoreContentImportExport ShopwareCoreCheckoutCustomer --> ShopwareCoreCheckoutCustomer ShopwareCoreCheckoutPayment --> ShopwareCoreCheckoutCustomer ShopwareCoreCheckoutOrder --> ShopwareCoreCheckoutCustomer ShopwareCoreCheckoutPromotion --> ShopwareCoreCheckoutCustomer ShopwareCoreCheckoutDocument --> ShopwareCoreCheckoutDocument ShopwareCoreCheckoutOrder --> ShopwareCoreCheckoutDocument ShopwareCoreCheckoutOrder --> ShopwareCoreCheckoutOrder ShopwareCoreCheckoutShipping --> ShopwareCoreCheckoutOrder ShopwareCoreCheckoutPayment --> ShopwareCoreCheckoutOrder ShopwareCoreCheckoutPayment --> ShopwareCoreCheckoutPayment ShopwareCoreCheckoutPromotion --> ShopwareCoreCheckoutPromotion ShopwareCoreCheckoutShipping --> ShopwareCoreCheckoutShipping ShopwareStorefront --> ShopwareStorefront @enduml
false
true
false
false
uml-unknown
761d70fae1f9c1a103aa7ccb71b48e58e0fb974f
505c97f3546dc685f00fa445d92261b612c1e5d2
/docs/diagrams/EnrollLessonState0.puml
b9d67ef1cc35acb45b5dcc15b0b7ecf064552975
[]
no_license
MGRL2201/CS2103T-Team-Project
ac27e2cbe46f98e996f9e8305f2e2f98f0d4809d
374bf74abf670bf3b32a5e4a6d88d7e1dd54fa3e
refs/heads/master
2023-08-29T10:22:52.942056
2021-11-08T14:31:05
2021-11-08T14:31:05
406,035,520
1
0
null
null
null
null
UTF-8
PlantUML
false
false
378
puml
@startuml title Initial state package TuitiONE <<rectangle>> { package Lessons <<rectangle>> { object "<u>l1:Lesson" as Lesson { lessonCode = Math-P2-Wed-1800 grade = P2 size = 0 } } package Students <<rectangle>> { object "<u>s1:Student" as Student { name = Alice grade = P2 } } } @end
false
true
false
false
object
d9e224b7ff1665aa84d8f5470f7ddf383bd27e28
bf3e610c8668e525aedcca58ddbe9da7c19e427e
/docs/design/domain-model/domain-model-mapping.puml
33e69e4e42d14de38b2fe7578bb2dd435047eab1
[ "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
2,250
puml
@startuml title Domain Model mapping participant Northbound participant FL box "Transport Layer" #Orange participant Kafka participant Storm end box box "Service Layer" #LightYellow participant SwitchService end box box "Domain Model" #LightBlue participant Switch end box box "Persistence Layer" #LightGreen participant SwitchRepository participant DB end box == Create Switch == FL -> Kafka : switch added Kafka -> Storm Storm -> SwitchService activate SwitchService create Switch SwitchService -> Switch : Create Switch object SwitchService -> SwitchRepository : Add Switch activate SwitchRepository Switch <- SwitchRepository : Get persistable data Switch -> SwitchRepository SwitchRepository -> DB : Create DB entity deactivate SwitchRepository deactivate SwitchService == Update Switch == FL -> Kafka : switch changed Kafka -> Storm Storm -> SwitchService activate SwitchService SwitchService -> SwitchRepository : Get Switch activate SwitchRepository SwitchRepository -> DB : Read DB entity SwitchRepository <- DB Switch <- SwitchRepository : Map persistable data SwitchService <- SwitchRepository : Return Switch object deactivate SwitchRepository SwitchService -> Switch : Update Switch state SwitchService -> SwitchRepository : [Close the persistence context] deactivate SwitchService activate SwitchRepository Switch <- SwitchRepository : Get persistable data Switch -> SwitchRepository SwitchRepository -> DB : Update DB entity deactivate SwitchRepository == Delete Switch == Northbound -> Kafka : Remove switch Kafka -> Storm Storm -> SwitchService activate SwitchService SwitchService -> SwitchRepository : Get Switch activate SwitchRepository SwitchRepository -> DB : Read DB entity SwitchRepository <- DB Switch <- SwitchRepository : Map persistable data SwitchService <- SwitchRepository : Return Switch object deactivate SwitchRepository SwitchService -> SwitchRepository : Remove Switch activate SwitchRepository Switch <- SwitchRepository : Get IDs to delete Switch -> SwitchRepository deactivate SwitchRepository SwitchService -> SwitchRepository : [Close the persistence context] deactivate SwitchService activate SwitchRepository SwitchRepository -> DB : Delete DB entity deactivate SwitchRepository @enduml
false
true
false
false
sequence
ff44bfdc34459d5e2d2f256b5a0f3287109118aa
1ac7e8576d75db132a272b3803f548bbb89ba0c3
/exemplos/UML/uml_example_01_use_case.puml
8205fb04b737868a5b3ace5baace37dc02acabe3
[]
no_license
beduardo/architecture_diagrams_template
7af45c9a97527a15493da8cb9dfd624efcc755d0
bbf7c54ab8155af62acc5dfe6b20024b24f9350c
refs/heads/master
2023-02-22T22:30:04.038313
2021-01-28T22:47:11
2021-01-28T22:47:11
333,060,057
0
0
null
null
null
null
UTF-8
PlantUML
false
false
696
puml
@startuml casos_de_uso_manutencao left to right direction scale 2000 width header Casos de Uso left footer [Empresa do Documento] title Casos de Uso de Manutenção :Time AC: as ac :Time BO: as bo :Time Vendas: as vendas ac --> (Manter Produtos) ac --> (Manter Destinos) ac --> (Manter Portos) ac --> (Manter Armadores) bo --> (Manter Bancos) vendas --> (Manter Clientes) (Manter Armadores) <.. (Manter Navios) : <<extends>> (Manter Portos) <.. (Manter Terminais de Carga) : <<extends>> (Manter Portos) <.. (Manter Portos Próximos) : <<extends>> (Manter Clientes) <.. (Manter Agentes Comerciais): <<extends>> (Manter Clientes) <.. (Manter Matriz de Substituição): <<extends>> @enduml
false
true
true
false
uml-unknown
d10b0545166518c2dff377eea404a43b693a2a22
a9da51de5b799057600d5195c6b5223479ac6c11
/scwf/CBOStages.puml
1256a6dd83f94e9ec0c2f45b942c6e7648a8446a
[]
no_license
scwf/flink-hello
9d9f050702ef28525ceaf9ee900fd5558343a36f
adc0fd0ec6a05e136e34a456030b211afc7f32a0
refs/heads/master
2021-01-22T18:07:12.533559
2017-03-23T14:03:21
2017-03-23T14:03:21
85,059,282
0
0
null
null
null
null
UTF-8
PlantUML
false
false
486
puml
@startuml (*) --> "Parse" --> "Algebrize" --> "Expand views" --> "NNF convert" --> "Simplification" note right Constant folding Domain simplification Predicate push-down Join simplification Contradiction detection end note --> "Auto stats/parameterize" --> "Derive cardinality" --> "Heuristic Join reordering" --> "Project normalization" --> "Trivial plan" --> "Exploration" --> "Copy out" --> "convert to executable tree" -->(*) @enduml
false
true
false
false
uml-unknown
22fab3bd76f9a4195d6deacde6b96aaedd0dce24
7c2a17fd3d19a13fb71558f79900a2908de98c58
/docs/uml-class-diagrams/database/production/DatabaseGisInterfaceImplementation/DatabaseGisInterfaceImplementation.puml
87f5a3f6d06d0896f3717515c3eb010cf1ca1b83
[]
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
486
puml
@startuml DatabaseGisInterfaceImplementation package edu.oakland.production.database { class DatabaseGisInterfaceImplementation { - DatabaseGisManager manager __ + DatabaseGisInterface(DatabaseGisManager manager) .. Use Case 1 .. + void recieveStoreRequest(LocationDataPoint locationDataPoint) .. Use Case 2 .. + void recieveModeRequest(String mode) + String recieveNextSatRequest(String currentSat) } } @enduml
false
true
false
false
class
5577b33749114265b6c87580fa5fbc4bac7a4d97
62de719e261fac67d2a2bc347a98be5515b48948
/docs/blue/1040862/sp2/analysis3.puml
341d875cf9e9aaf824783ec6b3c537b511fab7c7
[]
no_license
raulcorreia7/isep_lapr4_17_18
82672fca46e433856d52b3839e3739fa53b8f52c
79217fa01912657da37ef6cdb1a05194dd2f5110
refs/heads/master
2020-04-15T17:52:21.964106
2019-01-09T17:13:14
2019-01-09T17:13:14
164,891,237
0
0
null
null
null
null
UTF-8
PlantUML
false
false
465
puml
@startuml analysis.png skinparam handwritten false skinparam monochrome true skinparam packageStyle rect skinparam defaultFontName FG Virgil skinparam shadowing false actor User User -> Browser : Select task to remove Browser ->> Server : getSelectedTask() Server -->> Browser : return result Browser -> Browser : display User -> Browser : confirm Browser -> Browser : removeTask() Server -->> Browser : return result Browser -> Browser : display @enduml
false
true
false
false
sequence
35691d5ff21a890e2b4bbc9449aac94a532dfa36
b2be1f2c659ff90e5be7a97f52150c3f278e4c70
/creational_patterns/builder/builder.puml
36b81628486418ace168b89b6a25eb4952dad047
[]
no_license
sirejik/software-design-patterns
a3f0aab43a6b73f8e8d0d4ecd13a3f4aa362addc
67b8ebc373bdf6e5d58d699ed0a84bb3b2666f58
refs/heads/master
2023-01-05T09:55:51.669200
2020-11-05T17:02:20
2020-11-05T17:02:20
298,362,438
0
0
null
null
null
null
UTF-8
PlantUML
false
false
256
puml
@startuml class Director { Implementor build() } interface Builder { operation_impl() } Director o-- Builder class ConcreteBuilder { operation_impl() } Builder <|-- ConcreteBuilder class Product { } ConcreteBuilder ..> Product @enduml
false
true
false
false
class
01cc93460a03588e5d2b7db5f48a347f61c6f83a
11ab551855e2e6f721789a9e41e30412b70d8d61
/documentation/classes/class.puml
873c2e147d81ddd8026d0c57f36371124827be24
[ "Apache-2.0" ]
permissive
wyldkatPT/ExpMan
0c697a8c5e1d0a7948cc2dfbbb649dd6504434bf
1bb41286ff0637a1c9e1c8dd97a2897cb4469b5f
refs/heads/master
2021-01-16T21:25:30.231474
2020-02-05T11:36:27
2020-02-05T11:36:27
60,969,911
1
0
null
null
null
null
UTF-8
PlantUML
false
false
490
puml
@startuml class User { String username String password String fullName String email Boolean enabled Date lastPasswordResetDate } class Authority { private Long id private AuthorityName name } enum AuthorityName { ROLE_USER ROLE_ADMIN } User *-- Authority Authority o-- AuthorityName class Account { String name String notes boolean active } enum AccountType { CASH BANK CREDIT_CARD DEBIT_CARD PAYPAL } Account o-- AccountType Account *-- User @enduml
false
true
false
false
class
3b837ea525379c8dfb981a629da501a1d081d694
70779029a8fbd05f6a0ea5c36e12e8fc6744fe77
/EdgeManager/EventBroker.puml
9fef72bc9af9f3e29796a482c2b688633021f2ad
[]
no_license
se-edge/framework-diagrams
1e526beadb7e2ca73e6762e8761db833bb446826
f6791b0a2c7b692c66fc076ab5b3c2dca90345f0
refs/heads/develop
2021-07-08T02:18:08.117942
2021-02-11T13:53:18
2021-02-11T13:53:32
234,077,942
0
0
null
2021-04-02T14:31:22
2020-01-15T12:40:10
Shell
UTF-8
PlantUML
false
false
301
puml
@startuml object Subscriber{ } object Publisher{ } object EventBroker { -list subscriptionList +void Publish (any) +AddSubscription(type, subscriber) } Subscriber <--right- "QueuedEvent" EventBroker Subscriber <--> "Subscription" EventBroker Publisher -up--> "Publish" EventBroker @enduml
false
true
false
false
object
742afa90e4163e44cedf8757c364264e98e8ea1b
967db7f88bdf0e5cb8feca9571b9e85175f7bcc8
/docs/Actors/Security-Engineer/Activity.puml
573bd7920c5de4e99351ba6d715abfb007726ff5
[]
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
176
puml
@startuml rectangle "Diagram TBD" @enduml partition "Security Engineer" #cccccc { (*) --> "Start Here" } partition "Edgeville" #lightblue { "Start Here" --> "Here" }
false
true
false
false
activity
793ca257c5ffa2ae60c69aa2b7ab826b90aa5f11
d68b1330ef8ce59c635f4692417a9192d5206942
/core/src/no/ntnu/idi/apollo69/uml/generated/classes_only/apollo69_classes.plantuml
fe4c230db349c63f6977c560e5a4cc8094e05598
[ "MIT" ]
permissive
GardSteinsvik/apollo-69
847f74b762383641db20214ff7b5281c9d63f130
96cbf617618075a54613112bc8c0b34215fd50f7
refs/heads/master
2021-02-12T20:21:06.214711
2020-04-27T16:02:37
2020-04-27T16:02:37
244,626,902
0
0
null
null
null
null
UTF-8
PlantUML
false
false
752
plantuml
@startuml class no.ntnu.idi.apollo69.Apollo69 { - deviceId : String + Apollo69() + Apollo69() + create() + dispose() + render() } class no.ntnu.idi.apollo69.Device { {static} + DEVICE_ID : String {static} + NAME : String } interface no.ntnu.idi.apollo69.Variables { {static} + buttonHeight : float {static} + buttonWidth : float {static} + fontScale : float {static} + nicknameHeight : float {static} + spacing : float {static} + textExit : String {static} + textExitGame : String {static} + textJoin : String {static} + textPlay : String {static} + textSettings : String } @enduml
false
true
false
false
class
365038d33ce03429dc2baf45e9abb12ac16a1efa
d26c6b65f2e563277985b3349ceb54d4457c0338
/documents/PlantUmlMarkdown/diagrams/2_7.puml
535c7282668f1f2bfeb2471460f0edc66c39514e
[]
no_license
ddanilyuk/OBD2019
95711347e44e0aba188c5509a519a763ba2740b1
d6f0ae91bf32ed6137797a3bd7b64250302e8b84
refs/heads/master
2020-07-27T03:57:46.754987
2019-11-27T09:09:31
2019-11-27T09:09:31
208,859,440
0
0
null
2019-10-16T09:06:21
2019-09-16T17:35:30
null
UTF-8
PlantUML
false
false
265
puml
@startuml cloud "Cloud" { package "Package" { [register] frame "frame" { [backup] } } } node "Node" { database "Database" { [store] } folder "Folder" { [File] } } [register] .. [store] : HTTP [backup] .. [File] : FTP @enduml
false
true
false
false
sequence
e4b1f73663118cea166d9a36b4ad7d5f083e2ea1
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/OrderSetShippingAddressAction.puml
a558f21e33348432a9665956440733f27aba0ddc
[]
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
472
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 OrderSetShippingAddressAction [[OrderSetShippingAddressAction.svg]] extends OrderUpdateAction { action: String address: [[BaseAddress.svg BaseAddress]] } interface OrderUpdateAction [[OrderUpdateAction.svg]] { action: String } @enduml
false
true
false
false
class
7839700748d9f4bbad33ef8783aeae624dbcc230
e3ebf221091ee30de418c963f078ccdd732eaa8c
/docs/modular/sequences/fullsized/read_private.puml
f6e9fa70f85fd099177141f335cda47255252079
[ "Apache-2.0" ]
permissive
valb3r/datasafe
97d9826bb2bc6a478abc56ad30848fcaad8f259a
1b91e90128e2411339a9b904bb92144879b155bb
refs/heads/develop
2020-05-31T16:55:05.487855
2019-06-05T13:00:08
2019-06-05T13:00:08
190,393,370
0
1
Apache-2.0
2019-10-07T09:51:59
2019-06-05T12:48:13
Java
UTF-8
PlantUML
false
false
13,555
puml
@startuml skinparam SequenceMessageAlign center activate ReadFromPrivateImpl ' de.adorsys.datasafe.privatestore.impl.actions.ReadFromPrivateImpl ReadFromPrivateImpl -> ReadFromPrivateImpl : resolveFileLocation activate ReadFromPrivateImpl ' de.adorsys.datasafe.privatestore.impl.actions.ReadFromPrivateImpl ReadFromPrivateImpl -> ProfileRetrievalService : privateProfile activate ProfileRetrievalService ' de.adorsys.datasafe.business.api.deployment.profile.ProfileRetrievalService ProfileRetrievalService -> DFSBasedProfileStorageImpl : privateProfile activate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSSystem : systemDfs activate DFSSystem ' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem DFSBasedProfileStorageImpl <-- DFSSystem : DFSAccess deactivate DFSSystem ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSConnectionService : obtain activate DFSConnectionService ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService DFSConnectionService -> DFSConnectionServiceImpl : obtain activate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.impl.dfs.DFSConnectionServiceImpl DFSConnectionService <-- DFSConnectionServiceImpl : DFSConnection deactivate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService DFSBasedProfileStorageImpl <-- DFSConnectionService : DFSConnection deactivate DFSConnectionService ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSBasedProfileStorageImpl : locatePrivateProfile activate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl <-- DFSBasedProfileStorageImpl : BucketPath deactivate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSConnection : getBlob activate DFSConnection ' de.adorsys.dfs.connection.api.service.api.DFSConnection DFSBasedProfileStorageImpl <-- DFSConnection : Payload deactivate DFSConnection ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> GsonSerde : fromJson activate GsonSerde ' de.adorsys.datasafe.business.impl.profile.serde.GsonSerde DFSBasedProfileStorageImpl <-- GsonSerde : T deactivate GsonSerde ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl ProfileRetrievalService <-- DFSBasedProfileStorageImpl : UserPrivateProfile deactivate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.api.deployment.profile.ProfileRetrievalService ReadFromPrivateImpl <-- ProfileRetrievalService : UserPrivateProfile deactivate ProfileRetrievalService deactivate ReadFromPrivateImpl ' de.adorsys.datasafe.privatestore.impl.actions.ReadFromPrivateImpl ReadFromPrivateImpl -> BucketAccessService : privateAccessFor activate BucketAccessService ' de.adorsys.datasafe.business.api.deployment.credentials.BucketAccessService BucketAccessService -> BucketAccessServiceImpl : privateAccessFor activate BucketAccessServiceImpl ' de.adorsys.datasafe.business.impl.profile.dfs.BucketAccessServiceImpl BucketAccessServiceImpl -> DFSCredentialsService : privateUserCredentials activate DFSCredentialsService ' de.adorsys.datasafe.business.api.deployment.credentials.DFSCredentialsService DFSCredentialsService -> DFSCredentialsServiceImpl : privateUserCredentials activate DFSCredentialsServiceImpl ' de.adorsys.datasafe.business.impl.credentials.DFSCredentialsServiceImpl DFSCredentialsServiceImpl -> DFSSystem : systemDfs activate DFSSystem ' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem DFSCredentialsServiceImpl <-- DFSSystem : DFSAccess deactivate DFSSystem ' de.adorsys.datasafe.business.impl.credentials.DFSCredentialsServiceImpl DFSCredentialsService <-- DFSCredentialsServiceImpl : DFSCredentials deactivate DFSCredentialsServiceImpl ' de.adorsys.datasafe.business.api.deployment.credentials.DFSCredentialsService BucketAccessServiceImpl <-- DFSCredentialsService : DFSCredentials deactivate DFSCredentialsService ' de.adorsys.datasafe.business.impl.profile.dfs.BucketAccessServiceImpl BucketAccessService <-- BucketAccessServiceImpl : DFSAccess deactivate BucketAccessServiceImpl ' de.adorsys.datasafe.business.api.deployment.credentials.BucketAccessService ReadFromPrivateImpl <-- BucketAccessService : DFSAccess deactivate BucketAccessService ' de.adorsys.datasafe.privatestore.impl.actions.ReadFromPrivateImpl ReadFromPrivateImpl -> PrivateKeyService : keystore activate PrivateKeyService ' de.adorsys.datasafe.business.api.deployment.keystore.PrivateKeyService PrivateKeyService -> DFSPrivateKeyServiceImpl : keystore activate DFSPrivateKeyServiceImpl ' de.adorsys.datasafe.business.impl.profile.keys.DFSPrivateKeyServiceImpl DFSPrivateKeyServiceImpl -> BucketAccessService : privateAccessFor activate BucketAccessService ' de.adorsys.datasafe.business.api.deployment.credentials.BucketAccessService BucketAccessService -> BucketAccessServiceImpl : privateAccessFor activate BucketAccessServiceImpl ' de.adorsys.datasafe.business.impl.profile.dfs.BucketAccessServiceImpl BucketAccessServiceImpl -> DFSCredentialsService : privateUserCredentials activate DFSCredentialsService ' de.adorsys.datasafe.business.api.deployment.credentials.DFSCredentialsService DFSCredentialsService -> DFSCredentialsServiceImpl : privateUserCredentials activate DFSCredentialsServiceImpl ' de.adorsys.datasafe.business.impl.credentials.DFSCredentialsServiceImpl DFSCredentialsServiceImpl -> DFSSystem : systemDfs activate DFSSystem ' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem DFSCredentialsServiceImpl <-- DFSSystem : DFSAccess deactivate DFSSystem ' de.adorsys.datasafe.business.impl.credentials.DFSCredentialsServiceImpl DFSCredentialsService <-- DFSCredentialsServiceImpl : DFSCredentials deactivate DFSCredentialsServiceImpl ' de.adorsys.datasafe.business.api.deployment.credentials.DFSCredentialsService BucketAccessServiceImpl <-- DFSCredentialsService : DFSCredentials deactivate DFSCredentialsService ' de.adorsys.datasafe.business.impl.profile.dfs.BucketAccessServiceImpl BucketAccessService <-- BucketAccessServiceImpl : DFSAccess deactivate BucketAccessServiceImpl ' de.adorsys.datasafe.business.api.deployment.credentials.BucketAccessService DFSPrivateKeyServiceImpl <-- BucketAccessService : DFSAccess deactivate BucketAccessService ' de.adorsys.datasafe.business.impl.profile.keys.DFSPrivateKeyServiceImpl DFSPrivateKeyServiceImpl -> ProfileRetrievalService : privateProfile activate ProfileRetrievalService ' de.adorsys.datasafe.business.api.deployment.profile.ProfileRetrievalService ProfileRetrievalService -> DFSBasedProfileStorageImpl : privateProfile activate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSSystem : systemDfs activate DFSSystem ' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem DFSBasedProfileStorageImpl <-- DFSSystem : DFSAccess deactivate DFSSystem ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSConnectionService : obtain activate DFSConnectionService ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService DFSConnectionService -> DFSConnectionServiceImpl : obtain activate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.impl.dfs.DFSConnectionServiceImpl DFSConnectionService <-- DFSConnectionServiceImpl : DFSConnection deactivate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService DFSBasedProfileStorageImpl <-- DFSConnectionService : DFSConnection deactivate DFSConnectionService ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSBasedProfileStorageImpl : locatePrivateProfile activate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl <-- DFSBasedProfileStorageImpl : BucketPath deactivate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> DFSConnection : getBlob activate DFSConnection ' de.adorsys.dfs.connection.api.service.api.DFSConnection DFSBasedProfileStorageImpl <-- DFSConnection : Payload deactivate DFSConnection ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl DFSBasedProfileStorageImpl -> GsonSerde : fromJson activate GsonSerde ' de.adorsys.datasafe.business.impl.profile.serde.GsonSerde DFSBasedProfileStorageImpl <-- GsonSerde : T deactivate GsonSerde ' de.adorsys.datasafe.business.impl.profile.operations.DFSBasedProfileStorageImpl ProfileRetrievalService <-- DFSBasedProfileStorageImpl : UserPrivateProfile deactivate DFSBasedProfileStorageImpl ' de.adorsys.datasafe.business.api.deployment.profile.ProfileRetrievalService DFSPrivateKeyServiceImpl <-- ProfileRetrievalService : UserPrivateProfile deactivate ProfileRetrievalService ' de.adorsys.datasafe.business.impl.profile.keys.DFSPrivateKeyServiceImpl DFSPrivateKeyServiceImpl -> DFSConnectionService : obtain activate DFSConnectionService ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService DFSConnectionService -> DFSConnectionServiceImpl : obtain activate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.impl.dfs.DFSConnectionServiceImpl DFSConnectionService <-- DFSConnectionServiceImpl : DFSConnection deactivate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService DFSPrivateKeyServiceImpl <-- DFSConnectionService : DFSConnection deactivate DFSConnectionService ' de.adorsys.datasafe.business.impl.profile.keys.DFSPrivateKeyServiceImpl DFSPrivateKeyServiceImpl -> DFSSystem : privateKeyStoreAuth activate DFSSystem ' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem DFSPrivateKeyServiceImpl <-- DFSSystem : KeyStoreAuth deactivate DFSSystem ' de.adorsys.datasafe.business.impl.profile.keys.DFSPrivateKeyServiceImpl DFSPrivateKeyServiceImpl -> DFSConnection : getBlob activate DFSConnection ' de.adorsys.dfs.connection.api.service.api.DFSConnection DFSPrivateKeyServiceImpl <-- DFSConnection : Payload deactivate DFSConnection ' de.adorsys.datasafe.business.impl.profile.keys.DFSPrivateKeyServiceImpl DFSPrivateKeyServiceImpl -> DFSSystem : privateKeyStoreAuth activate DFSSystem ' de.adorsys.datasafe.business.impl.profile.operations.DFSSystem DFSPrivateKeyServiceImpl <-- DFSSystem : KeyStoreAuth deactivate DFSSystem ' de.adorsys.datasafe.business.impl.profile.keys.DFSPrivateKeyServiceImpl PrivateKeyService <-- DFSPrivateKeyServiceImpl : KeyStoreAccess deactivate DFSPrivateKeyServiceImpl ' de.adorsys.datasafe.business.api.deployment.keystore.PrivateKeyService ReadFromPrivateImpl <-- PrivateKeyService : KeyStoreAccess deactivate PrivateKeyService ' de.adorsys.datasafe.privatestore.impl.actions.ReadFromPrivateImpl ReadFromPrivateImpl -> DocumentReadService : read activate DocumentReadService ' de.adorsys.datasafe.business.api.deployment.document.DocumentReadService DocumentReadService -> CMSDocumentReadService : read activate CMSDocumentReadService ' de.adorsys.datasafe.encrypiton.impl.document.CMSDocumentReadServiceReadService CMSDocumentReadService -> DFSConnectionService : obtain activate DFSConnectionService ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService DFSConnectionService -> DFSConnectionServiceImpl : obtain activate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.impl.dfs.DFSConnectionServiceImpl DFSConnectionService <-- DFSConnectionServiceImpl : DFSConnection deactivate DFSConnectionServiceImpl ' de.adorsys.datasafe.business.api.deployment.dfs.DFSConnectionService CMSDocumentReadService <-- DFSConnectionService : DFSConnection deactivate DFSConnectionService ' de.adorsys.datasafe.encrypiton.impl.document.cmsocument.CMSDocumentReadService CMSDocumentReadService -> DFSConnection : getBlob activate DFSConnection ' de.adorsys.dfs.connection.api.service.api.DFSConnection CMSDocumentReadService <-- DFSConnection : Payload deactivate DFSConnection ' de.adorsys.datasafe.encrypiton.impl.document.CMSDocumentReadServiceReadService CMSDocumentReadService -> CMSEncryptionService : decrypt activate CMSEncryptionService ' de.adorsys.datasafe.business.api.encryption.cmsencryption.CMSEncryptionService CMSEncryptionService -> CMSEncryptionServiceImpl : decrypt activate CMSEncryptionServiceImpl ' de.adorsys.datasafe.encrypiton.impl.cmsencryption.CMSEncryptionServiceImpl CMSEncryptionService <-- CMSEncryptionServiceImpl : DocumentContent deactivate CMSEncryptionServiceImpl ' de.adorsys.datasafe.business.api.encryption.cmsencryption.CMSEncryptionService CMSDocumentReadService <-- CMSEncryptionService : DocumentContent deactivate CMSEncryptionService ' de.adorsys.datasafe.encrypiton.impl.document.CMSDocumentReadServiceReadService DocumentReadService <-- CMSDocumentReadService : deactivate CMSDocumentReadService ' de.adorsys.datasafe.business.api.deployment.document.DocumentReadService ReadFromPrivateImpl <-- DocumentReadService : deactivate DocumentReadService deactivate ReadFromPrivateImpl @enduml
false
true
false
false
sequence
b6ad7ef27cc270959b0d214fba9b9731e37df992
453e26a9036b435f94330ff0d444d4bca02faf82
/系列学习记录/流程图/锁流程图.puml
3245d2970fac001611906b651bc28ff629bd96d1
[]
no_license
enterpriseih/LearningNotes
5a3c046edd3195d32175fed9f91157e9a35f8c18
ee2a2079f04eff46b3137f721254c5d8f1ddba9b
refs/heads/master
2023-08-26T01:11:43.348145
2021-01-17T17:12:04
2021-01-17T17:12:04
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
219
puml
@startuml ReentrantLock -> NofairSync: lock.lock() NofairSync --> Sync: Sync -> NofairSync: lock() NofairSync --> AQS: acquire AQS --> AQS: addWaiter AQS --> NofairSync:tryAcquire NofairSync --> AQS: NofairSync @enduml
false
true
false
false
sequence
46868f4086acfc9958271af6c1f0c2ba9f656410
573fd3fb5867c0f26fb2906f0478b234956e713f
/whitepaper/use-case-sequence-diagram-blockchain-migration.puml
a63de0053bb26bbb7ed3c87ec8425c81e06b2f4a
[ "Apache-2.0" ]
permissive
RafaelAPB/blockchain-integration-framework
65cd73a7115069d343da7d269db45918710a7bbd
89d5102496adfe98a542a373e805dc38ecb8f269
refs/heads/main
2023-08-07T02:19:05.864116
2023-04-12T00:41:07
2023-04-14T07:37:08
241,220,244
5
0
Apache-2.0
2023-05-24T02:04:39
2020-02-17T22:22:43
TypeScript
UTF-8
PlantUML
false
false
3,316
puml
@startuml skinparam ArrowFontStyle italic title Hyperledger Cactus\nSequence Diagram - Blockchain Migration actor Consortium_Member_A as a actor Consortium_Member_B as b box Cactus entity "API" as api entity "Validator(s)" as v end box box "Ledgers" database Ledger1 as d1 database Ledger2 as d2 end box autoactivate on == Agreement Phase == a -> b: Propose Blockchain Migration Note right Off-chain procedure end note return Send Endorsement a -> api: Sign Transaction to Endorse Blockchain Migration return Request Confirmed b -> api: Sign Transaction to Endorse Blockchain Migration return Request Confirmed autoactivate off api -> a: Ready to Proceed api -> b: Ready to Proceed autoactivate on == Initialization Phase == a -> api: Sign Transaction to Initialize Blockchain Migration api -> v: Deploy Interoperability Support Data\n(smart contracts and configuration files) on Ledger1 v -> d1: Deploy Support Data as Consortium_Member_A return Data Deployed return Data Deployed return Ready to Initiate Migration b -> api: Sign Transaction to Initialize Blockchain Migration api -> v: Deploy Interoperability Support Data on Ledger1 v -> d1: Deploy Support Data as Consortium_Member_B return Data Deployed return Data Deployed return Ready to Initiate Migration a -> api: Initialize Blockchain Migration api -> v: Initialize Consortium_Member_A's view\non exisitng assets and data v -> d1: Query Ledger 1 as Consortium_Member_A return Return Results return Return results return Initialize Blockchain Migration Success autoactivate off api -> api: **processes query and builds Consortium_Member_A's**\n**view on existing assets and data** return api -> a: Send Consortium_Member_A's view on L1 a -> api: Confirm View return OK autoactivate on b -> api: Initialize Blockchain Migration api -> v: Initialize Consortium_Member_B's view\non exisitng assets and data v -> d1: Query Ledger 1 as Consortium_Member_B return Return Results return Return results return Initialize Blockchain Migration Success autoactivate off api -> api: **processes query and builds Consortium_Member_B's**\n**view on existing assets and data** return api -> b: Send Consortium_Member_B's view on L1 b -> api: Confirm View return OK api -> api: Merge views Note right Optional: This process merges the views of Consortium_Member_A and Consortium_Member_B into a consolidated view end note return autoactivate on api -> a: Merged View return Accept merge api -> b: Merged View return Accept merge == Migration Phase == a -> api: initiate Blockchain Migration api -> v: Execute Migration to Ledger 2 v -> d2: Execute transactions\non Ledger 2 as Consortium_Member_A return Transactions Successfully Executed return Success return Success b -> api: initiate Blockchain Migration api -> v: Execute Migration to Ledger 2 v -> d2: Execute transactions\non Ledger 2 as Consortium_Member_B return Transactions Successfully Executed return Success return Success autoactivate off api -> api: **Perform final adjustments, e.g., submit**\n**missing transactions** api -> a: Migration Process Completed api -> b: Migration Process Completed @enduml
false
true
false
false
usecase
b7111d2ffb1ed5a73472f1ca08dd8d0f0d8687f8
510356d099fc0d0ae2e5bc6456b61820ab379ad3
/src/com/arijeet/design/behavior/pattern/state/state.puml
181e95eba626c8a201401775de65355b93c8f6cc
[]
no_license
arijeetsaha/java-design-patterns
19156a379689d1dde2c7e75d997c84ea84b2f019
9c30808bc9be34092d5f6257fbfd9ed995848a50
refs/heads/master
2022-11-20T05:20:27.467475
2020-07-22T20:27:53
2020-07-22T20:27:53
281,776,415
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,926
puml
@startuml title __STATE's Class Diagram__\n namespace com.arijeet.design.pattern.state { class com.arijeet.design.pattern.state.CancelledState { + handleCancellation() } } namespace com.arijeet.design.pattern.state { class com.arijeet.design.pattern.state.Client { {static} + main() } } namespace com.arijeet.design.pattern.state { class com.arijeet.design.pattern.state.DeliveredState { + handleCancellation() } } namespace com.arijeet.design.pattern.state { class com.arijeet.design.pattern.state.InTransitOrder { + handleCancellation() } } namespace com.arijeet.design.pattern.state { class com.arijeet.design.pattern.state.NewState { + handleCancellation() } } namespace com.arijeet.design.pattern.state { class com.arijeet.design.pattern.state.Order { + Order() + cancel() + delivered() + dispatched() + paymentSuccessful() } } namespace com.arijeet.design.pattern.state { interface com.arijeet.design.pattern.state.OrderState { {abstract} + handleCancellation() } } namespace com.arijeet.design.pattern.state { class com.arijeet.design.pattern.state.PaidState { + handleCancellation() } } com.arijeet.design.pattern.state.CancelledState .up.|> com.arijeet.design.pattern.state.OrderState com.arijeet.design.pattern.state.DeliveredState .up.|> com.arijeet.design.pattern.state.OrderState com.arijeet.design.pattern.state.InTransitOrder .up.|> com.arijeet.design.pattern.state.OrderState com.arijeet.design.pattern.state.NewState .up.|> com.arijeet.design.pattern.state.OrderState com.arijeet.design.pattern.state.Order o-- com.arijeet.design.pattern.state.OrderState : orderState com.arijeet.design.pattern.state.PaidState .up.|> com.arijeet.design.pattern.state.OrderState @enduml
false
true
false
false
class
7990f584768eda822395bccc1a27ddfaaed98992
82dd7b778e320eb988c11cd8b598d1e7ecade126
/src/model/model.plantuml
746e899f07ecdc166a390767164450d9e14f5db6
[]
no_license
joram-sjamaar/ChatClient
e998e0092dd1cd0b6b5f45b4ee1d6767c7189685
c8be32fbac4ce89883ebb45aca070e0cf97e51b4
refs/heads/master
2022-11-03T14:35:55.806756
2020-01-26T22:15:04
2020-01-26T22:15:04
223,383,408
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,554
plantuml
@startuml title __MODEL's Class Diagram__\n namespace model { class model.Group { - groupName : String + Group() + getGroupName() + setGroupName() } } namespace model { class model.Message { - date : Date - message : String + Message() + getDate() + getMessage() + getMessageType() + toString() } } namespace model { class model.Recipient { - privateKey : String - username : String + Recipient() + equals() + getPrivateKey() + getUsername() + hashCode() + setPrivateKey() } } namespace model { class model.User { - inGroup : boolean - loggedIn : boolean - recipients : ArrayList<Recipient> - sentMessages : LinkedList<Message> - username : String + User() + addRecipient() + getGroup() + getRecipient() + getRecipients() + getUsername() + hasRecipient() + isInGroup() + isLoggedIn() + logSentMessage() + printSentMessages() + setGroup() + setInGroup() + setLoggedIn() + setUsername() } } model.Message o-- util.MessageType : messageType model.User o-- model.Group : group 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
008e4adefa8719e366170252275beec07b150925
e313af6ff9b250b6d7daf55f4e779659fb141c20
/docs/diagrams/notification-sequence.puml
24ec35fdf9aa8cd9f10534f37215d7be2be9d9a8
[ "MIT", "LicenseRef-scancode-proprietary-license" ]
permissive
alphagov/whitehall
71f0806ea856082bd4ea71139ff3f1d299a02294
bdeb92e9e1dfc88a8693af44a1ae8c708ab94489
refs/heads/main
2023-09-03T23:56:44.719006
2023-09-01T15:16:37
2023-09-01T15:16:37
2,416,064
773
182
MIT
2023-09-14T17:54:53
2011-09-19T15:10:49
Ruby
UTF-8
PlantUML
false
false
1,205
puml
@startuml skinparam dpi 300 title The sequence of events that cause email notifications to be sent for Whitehall content on GOV.UK actor editor editor -> controller : publish controller -> edition_services : send publish event edition_services -> publishing_api_worker : enqueue job with edition id database mysql participant publishing_api database rabbitmq participant "email-alert-service" as emailalertservice participant "email-alert-api" as emailalertapi participant notification_worker database postgres controller -> editor : render page group sidekiq publishing_api_worker -> mysql : edition id mysql -> publishing_api_worker : edition publishing_api_worker -> "publishing-api" as publishing_api : publish publishing_api -> rabbitmq : publish event end group group consumer emailalertservice -> rabbitmq : read emailalertservice -> emailalertapi : notify with edition emailalertapi -> notification_worker : enqueue job end group group sidekiq notification_worker -> postgres : links hash postgres -> notification_worker : govdelivery topics notification_worker -> postgres : log notification notification_worker -> govdelivery : send email to topics end group @enduml
false
true
false
false
sequence
d5b179c62d4c757ab0d16a67f85fb78b63ca9196
6d52d8dbfa9e58a82ce873b9b9412af98b151874
/docs/diagrams/CalcPowerSequenceDiagram.puml
5010bdff57abe91cc20008c3a3454c3cd710cf7a
[]
no_license
PraveenElango/tp
59072e694da65abf1fb5b88a783f0a957af9ed66
58778e0f0e7c6648d758a6f41abcd47391d2ccd1
refs/heads/master
2023-01-06T16:21:12.970855
2020-10-26T17:28:42
2020-10-26T17:28:42
299,291,890
0
0
null
2020-10-11T03:05:42
2020-09-28T11:49:57
Java
UTF-8
PlantUML
false
false
908
puml
@startuml box logic participant ":Parser" as Parser participant ":CalculateCommand" as CalculateCommand end box box template participant ":Template" as Template end box [-> Parser : parse("calc power") activate Parser Parser -> Parser : prepareCalc("calc power") activate Parser Parser -> CalculateCommand : calculateCommand(template, power) activate CalculateCommand Parser <-- CalculateCommand : calc deactivate CalculateCommand Parser <-- Parser: calc deactivate Parser [<-- Parser : calc deactivate Parser [->CalculateCommand : execute() activate CalculateCommand CalculateCommand -> CalculateCommand : getValue() activate CalculateCommand CalculateCommand -> Template : getPower() activate Template CalculateCommand <-- Template : value deactivate Template CalculateCommand <-- CalculateCommand : value deactivate CalculateCommand [<-- CalculateCommand deactivate CalculateCommand @enduml
false
true
false
false
sequence
73e7d3a3701132375a11a9d2b8820bea709b7cd7
2560aaaae8e5559e8e43e737ba98a4d71a490381
/Game/diagrammes de classes/Classdiagram_simple.puml
0bd88d7c512f242da7b0a88d52f5548986975187
[]
no_license
bleubidon/RobotTurtles
b1746b215d6d987ee24f65e9ecf6099239f0c6dd
1c6f83e7a1f2efca93d8a1b844248ee07d16d5af
refs/heads/master
2021-05-24T13:24:52.699551
2020-02-26T15:36:34
2020-02-26T15:36:34
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,086
puml
@startuml 'On ommet les getters et setters 'src class Main { logiqueDeJeu: LogiqueDeJeu + static main(String[] args): void } class LogiqueDeJeu { } Main -- LogiqueDeJeu class Plateau { } Plateau -- LogiqueDeJeu class Case { } Case --* Plateau class Joueur { } Joueur -- LogiqueDeJeu 'src.Tuiles abstract class Tuile { } Tuile -- LogiqueDeJeu Tuile --* Plateau enum Orientations { } class Position { } Position o-- Tuile Position -- Orientations class Tortue { } Tortue --|> Tuile Tortue --* Joueur class Joyau { } Joyau --|> Tuile class Obstacle { } Obstacle --|> Tuile 'src.Cartes enum TypeCarte { } class Carte { } Carte -- TypeCarte class Deck { } Deck - CartesMain Deck --* Joueur Deck -- Carte class CartesMain { } CartesMain - Programme CartesMain --* Joueur CartesMain -- Carte class Programme { } Programme - Deck Programme --* Joueur Programme -- Carte 'src.Interface interface Interface { } Interface -- LogiqueDeJeu class InterfaceGraphique { } InterfaceGraphique ..|> Interface class InterfaceConsole { } InterfaceConsole ..|> Interface @enduml
false
true
false
false
class
d813e16ac830f8e340714afecf15bb34c957962f
d6374fe9363a41031c51eb622cb0cb5e75b78380
/docs/technical/sdk-scheme-adapter/assets/sequence/PayeeDFSPSingleIntegrationApiOnTransfer.PlantUML
c9e8b2a41a4c05dcd3828bc2582c80016dcd5d39
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
mojaloop/documentation
18a1e58443956b9c718f5f85590f652f803f4748
6ad904da0293bb259bd9f5140bcecd719d8c8024
refs/heads/master
2023-07-26T17:13:14.811484
2023-06-26T15:18:57
2023-06-26T15:18:57
170,135,923
24
98
NOASSERTION
2023-09-01T14:57:33
2019-02-11T13:45:44
JavaScript
UTF-8
PlantUML
false
false
2,109
plantuml
@startuml PayeeDFSPSingleIntegrationApiOnTransferPattern /'***** -------------- ******'/ skinparam activityFontSize 4 skinparam activityDiamondFontSize 30 skinparam activityArrowFontSize 22 skinparam defaultFontSize 22 skinparam noteFontSize 22 skinparam monochrome true ' declare title ' title PayeeDFSPSingleIntegrationApiOnTransfer ' declare actors participant "Mojaloop\nSwitch" as Switch box "Payment Manager\nPayee DFSP" #LightGrey participant "SDK Scheme Adapter" as MC participant "Core\nConnector" as CC end box participant "Core banking solution" as CBS autonumber 1 1 "<b>[0]" == Payee DFSP integration - Quote and Transfer - single AML check & transfer during POST transfer == Switch->MC: **POST** /quotes MC-->Switch: HTTP 202 Response MC->CC: **POST** /quoterequest activate MC CC->CC: Do nothing CC-->MC: Response deactivate MC MC-->Switch: **PUT** /quotes/{Id} Switch->Switch: Pass Quote to Payer note left Obtain consent to proceed with the transfer Via **POST** /transfers end note Switch-> Switch: Perform liquidity(NDC)check Switch->Switch: Reserve Funds Switch->MC: **POST** /transfers MC->CC: **POST** /transfers activate MC CC->CBS: Perform AML checks and transfer funds CBS->CBS: Release of funds to Payee CBS-->CC: response (homeTransactionId) CC-->MC: response (homeTransactionId) deactivate MC MC->MC: Generate Fulfilment MC-->Switch: **PUT** /transfers/{id} (TransferStatus='RESERVED', fulfullment) Switch->Switch: Commit funds in DFSP ledgers alt if (Transfer status == 'ABORTED') Switch->MC: **PATCH** /transfers/{id} (TransferStatus='ABORTED', homeTransactionId) MC->CC: Abort Transfer\n **PATCH** /transfers/{id} (TransferStatus='ABORTED') CC->CBS: Abort Transfer CBS->CBS: Compensate action for abort CBS-->CC: response else if (Transfer status == 'COMMITTED') Switch->MC: **PATCH** /transfers/{id} (TransferStatus='COMMITTED', homeTransactionId) MC->CC: **PATCH** /transfers/{id} (TransferStatus='COMMITTED') CC->CC: Do nothing CC-->MC: response end @enduml
false
true
false
false
sequence
a3cef17b7b957086171dde7d2cbd19925adbdd90
2c0edfcd9e6ddf16a88762a018589cbebe6fa8e8
/CleanSheets/src/main/java/csheets/worklog/n1141071/sprint3/crm04_02_design.puml
486ce0dd639e70c0b196064cdd4df2f281fb7dbc
[]
no_license
ABCurado/University-Projects
7fb32b588f2c7fbe384ca947d25928b8d702d667
6c9475f5ef5604955bc21bb4f8b1d113a344d7ab
refs/heads/master
2021-01-12T05:25:21.614584
2017-01-03T15:29:00
2017-01-03T15:29:00
77,926,226
1
3
null
null
null
null
UTF-8
PlantUML
false
false
1,454
puml
@startuml doc-files/crm04_02_design.png actor Actor participant "UI : ListUI" as UI participant "Controller : ListController" as controller participant "List" as list participant "ListPersistence" as persistence note right of Actor Extention loading and integration with main UI can be found on Example Extention diagrams end note create UI Actor -> UI : Starts use case create controller UI -> controller : create Actor -> UI : Select the contact UI -> controller : fetchContactLists(Contact) controller -> persistence : getListsByContacts(Contact) UI -> Actor : Show contact existent lists alt Create list note right of Actor See create list diagram end note else Edit list note right of Actor See edit list diagram end note else Delete list note right of Actor See delete list diagram end note end Actor -> UI : Select list UI -> controller : getListVersions(List) controller -> persistence : getListVersions(List) UI -> Actor : Show List Versions Actor -> UI : Select versions UI -> controller : getListData(List) controller -> list : getListData() UI -> Actor : Show List Data loop Actor -> UI : Select/Deselect checkbox end loop Actor -> UI : Apply changes UI -> controller : saveChanges(List) controller -> list : changeState(text,state) controller -> persistence : saveList(List) UI -> Actor : Show success @enduml
false
true
false
false
usecase
2817f3c834b060184fc083e0e982b93065b8199d
89efb92133e08b4385af791401991700f60b671b
/doc/EasyCalcTo3LayersArchitecture.puml
04609b4eecbc0f69d210f6f767ceb6abdce75eb4
[]
no_license
DmitrySar/easyCalc
339d5de4c263f2e4ec7252aed009e201ed9c3f23
dcc62bd4483968b299e07f2994f1333a974bfc9c
refs/heads/master
2020-07-03T04:36:23.704712
2019-08-18T17:45:05
2019-08-18T17:45:05
201,785,344
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,315
puml
@startuml interface ICalculator { + getResult(): double } class Calculator { + getResult(): double } class Main { + main(): void } interface IReadLine { + getA(): double + getB(): double + getOperation(): String } class ReadLineFromConsole implements IReadLine { + getA(): double + getB(): double + getOperation(): String } class ReadLineFromDB implements IReadLine { + getA(): double + getB(): double + getOperation(): String } class ReadLineFromFile implements IReadLine { + getA(): double + getB(): double + getOperation(): String } interface IOutputResult { + output() } class OutputResultToConsole implements IOutputResult { + output() } class OutputResultToDB implements IOutputResult { + output() } class OutputResultToFile implements IOutputResult { + output() } class Plus implements ICalculator { + getResult(): double } class Minus implements ICalculator { + getResult(): double } class Multiplication implements ICalculator { + getResult(): double } class Division implements ICalculator { + getResult(): double } note bottom of Division: return a / b note bottom of Plus: return a + b note bottom of Minus: return a - b note bottom of Multiplication: return a * b Calculator *--> ICalculator Main o--> IReadLine Main o--> Calculator Main o--> IOutputResult @enduml
false
true
false
false
class
6da583ed23090517beda363328ab0dba43dcd2a6
62e9306839e46844fb4e197d4e7ff2c8085c431a
/docs/diagrams/domain_model_frag_jetzt.puml
55c1f31565f42ed31c86816240965fffa9d14d61
[ "MIT" ]
permissive
ziegenberg/frag.jetzt
c4c687f885d183f46f84b4d5038a6678f01f66f5
9c546e61b4bcac6710d2b204925dc99f3bbc6b3d
refs/heads/master
2022-11-16T11:15:35.417428
2020-07-16T11:52:03
2020-07-16T11:52:03
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,113
puml
@startuml skinparam class { BackgroundColor PaleGreen BorderColor Green ArrowColor black FontSize 28 BackgroundColor<<USP>> Pink BorderColor<<USP>> HotPink } skinparam backgroundColor Linen skinparam linetype ortho skinparam shadowing true skinparam minClassWidth 200 skinparam LegendBackgroundColor Strategy skinparam LegendBorderThickness 0 skinparam LegendFontSize 20 skinparam defaultFontSize 20 skinparam Padding 8 skinparam Nodesep 150 skinparam ArrowThickness 2 skinparam ArrowColor DarkSlateGray hide methods hide empty members hide circle package "frag.jetzt | domain diagram" <<Frame>> { class GuestUser { } class RegisteredUser { email password } GuestUser -left-|> User RegisteredUser -up-|> User class SessionParticipant { } class TemporalSessionHolder { } SessionParticipant -left-|> GuestUser TemporalSessionHolder -up-|> GuestUser class Moderator <<USP>> { } class BonusParticipant <<USP>> { } class PermanentSessionHolder{ } PermanentSessionHolder -left-|> RegisteredUser Moderator -up-|> RegisteredUser Moderator -down- Session :assigned to > BonusParticipant -right-|> RegisteredUser class Session { id name description holder moderators } class Question { votes } class Status { affirmed negated bonus discussed } Status -up- Question class Board { helpPage } class QuestionBoard { counter search sorting filtering displayThreshold } class ModeratorBoard { counter search sorting filtering } Session *-right- Board QuestionBoard -up-|> Board ModeratorBoard -up-|> Board Question -right-o QuestionBoard ModeratorBoard o-down- BannedQuestion } legend right |<img:https://git.thm.de/arsnova/arsnova-lite/raw/staging/src/assets/icons/Logo_frag_jetzt_128x128.png> |= \n\n »frag.jetzt« | | Produktion | [[https://frag.jetzt]] | | Repository | [[https://git.thm.de/arsnova/frag.jetzt]] | | Staging Server | [[https://staging.frag.jetzt]] | | UML-Tool| PlantUML v1.2019.5| | Ersteller| Klaus Quibeldey-Cirkel| | Mail| klaus.quibeldey-cirkel@mni.thm.de | | Letzte Änderung| 26.08.2019 | end legend @enduml
false
true
true
false
class
0947ddb27d2bb508bf961745b19669ca94cc53ab
56e4afc1254936875bcd28816c0c0d6881dbc33b
/plantuml/example.puml
62e24ff6a9d3b0f8016d4b622032ed6d083d20fe
[]
no_license
juniormayhe/Scripts
06e8ae59980e7fc6e83a9cdf4a9d32b5eb39f5e1
f15e53c3f02d9ae588c5e979894c31c9ab5de8e6
refs/heads/master
2023-08-17T02:38:29.072476
2023-08-08T15:33:13
2023-08-08T15:33:13
90,771,023
9
3
null
2022-12-14T06:19:22
2017-05-09T17:04:04
TSQL
UTF-8
PlantUML
false
false
749
puml
@startuml My business process header Title presented on the right skinparam { componentBorderColor #black arrowThickness 2 legendBackgroundColor #white nodeBorderColor #gray } legend center |= Step |= Description |= Action | | (01) | Describe \n your business flow for external client | HTTP GET /v1/ControllerName/{id} | | (02) | Describe \n your business flow for another external client | HTTP GET /v1/AnotherControllerName/{id} | endlegend ' external components component "external-client" as client component "external-client-2" as client2 node "My applications boundary" { component "my-api" as myapi component "my-dependency" as mydep } ' the flows client -> myapi : (01) myapi --> mydep client2 -> myapi : (02) @enduml
false
true
false
false
sequence
46acaa4454b0d7aaa155db854d92cc280c4103f5
ddd27ef7207e3b508ba557b6f5ca1b2bd172a734
/app/UML/Blake/BlakeConc1.puml
4569644a7e9818bf366ea04dae0b8713b81833b1
[]
no_license
QRP0002/Wireless_Quote
7c095f66043b7780f03d624be2fe7956b3369a27
0b4762a69db0ebada3d518573e7618a0e57f0368
refs/heads/master
2020-06-04T02:48:51.629364
2015-05-01T12:49:49
2015-05-01T12:49:49
33,549,841
0
0
null
2015-04-16T20:57:50
2015-04-07T14:57:28
Java
UTF-8
PlantUML
false
false
1,060
puml
@startuml Employee -> SystemHomePage : Log In activate Employee activate SystemHomePage activate EmployeeHomePage SystemHomePage -> EmployeeHomePage : onCreate() EmployeeHomePage -> EmployeeHomePageController: onCreate activate EmployeeHomePageController Employee -> EmployeeHomePage : Create New Quote EmployeeHomePage -> EmployeeHomePageController : createNewQuote() EmployeeHomePageController -> CreateQuotePage : On Create activate CreateQuotePage CreateQuotePage -> CreateQuotePageController : onCreate() activate CreateQuotePageController CreateQuotePage --> Employee : Empty Fields Employee -> CreateQuotePage : Fill Out Fields Employee -> CreateQuotePage : Submit New Quote CreateQuotePage -> CreateQuotePageController : Send Information CreateQuotePageController -> CreateQuotePageController : Validate CreateQuotePageController -> Server : validate(True) activate Server Server --> CreateQuotePageController : quoteSave(True) CreateQuotePageController --> CreateQuotePage : quoteSaved(True) CreateQuotePage --> Employee : Display Quote Saved @enduml
false
true
false
false
sequence
ebd27d67d3845729eba97ddeacb9756b0e404aea
6efcde6793a8895229ca8face50530e85dfe5869
/exercise41/docs/classes.puml
e23ed6403b9c9e3279fb4e677655c94a471a9f47
[]
no_license
Jyke321/cordonero-a04
dde9e4144b0660f2a10e69b6786d0dbddf4758c4
0b3fe00b2525d99ae820de61baad046411a1b2bb
refs/heads/main
2023-08-23T03:19:27.506727
2021-10-17T21:56:41
2021-10-17T21:56:41
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
329
puml
@startuml class DataHandler { -List data +void getDataFromFile() +void sortDataAlphabetically() +void printDataTotalNumberOfNamesAndDataToFile() -void printNumberOfNamesToFile() -void printDataToFile() -FileWriter initializeFilePointer() +ArrayList<String> returnArrayListOfDataAsList() } @enduml
false
true
false
false
class
86496302601888cee51b67753f2d54726f71ea0e
068579f9ad18a1368961dc3b9f812129f4f7e858
/DesignPattern/Composite/Pietanze/uml/class_diagram.puml
4eb7068489ccfba569d9dfe6c105b8fad7b8d92d
[]
no_license
AleMidolo/materiale-tutorato-ids
d9c27a9d0da9436842144a7cc8bd6d381f6e3546
3d95de651214245b113c92481007ec177ce95471
refs/heads/master
2023-03-30T22:05:39.627666
2021-04-01T13:53:07
2021-04-01T13:53:07
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,119
puml
' Documentazione: https://plantuml.com/class-diagram @startuml ' START STYLE skinparam { monochrome true 'shadowing false classBackgroundColor white noteBackgroundColor white classAttributeIconSize 0 'linetype ortho } hide circle ' END STYLE class Dispensa { - tabellaCalorie + getIngrediente(nome: String, qt: int): Pietanza + getPreparato(nome: String): Pietanza } Dispensa --> Ingrediente Dispensa --> Preparato Client -down-> Dispensa Client -right-> Pietanza hide Client members abstract class Pietanza { + add(p: Pietanza): Pietanza + remove(p: Pietanza): Pietanza + {abstract} mostra(indent: String) + {abstract} calorie(indent: String): int } note right of Pietanza::add return this; end note note right of Pietanza::remove return this; end note class Ingrediente extends Pietanza { + mostra(indent: String) + calorie(indent: String): int } class Preparato extends Pietanza { - pList: Pietanza[0..*] + add(p: Pietanza) + remove(p: Pietanza) + mostra(indent: String) + calorie(indent: String): int } Pietanza "\t*" <-left- Preparato Preparato -[hidden]left-> Ingrediente @enduml
false
true
false
false
class
a1ab43fa515263d9d166724b8c0287b86e64038a
73a09278b33f11d694a7aa3117c22e8e5358a934
/doc/uml/arch.puml
e5eea1c1571ab30b74a7745a382dbec1154bd804
[ "MIT" ]
permissive
P79N6A/shyly
a9aea5cb2220c725fd763ef08312193132456d02
8eed32ed7053b3618035c031a52593bf919f25a2
refs/heads/master
2020-04-20T06:10:26.050517
2019-02-01T09:29:57
2019-02-01T09:29:57
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
37
puml
@startuml package impl{ } @enduml
false
true
false
false
uml-unknown
aaf62a35fb15b837196e9bdacd0556450cbc1ab0
a26bbd033192f4ea245a6dd3f166976b39459752
/3_Documentazione/design/be/servlets_action.puml
4ed0b6b03fe039a05e340fb5e717eee5f3702d3b
[]
no_license
giuliobosco/freqline
fdc673e09e4cfc96dc67a759788120b81fdbae46
e94256cc349797447cf414bbe4267ef45c89723e
refs/heads/master
2022-04-10T16:22:55.993289
2020-04-06T13:28:19
2020-04-06T13:28:19
206,082,972
3
0
null
null
null
null
UTF-8
PlantUML
false
false
3,142
puml
@startuml skinparam classAttributeIconSize 0 package ch.giuliobosco.freqline.servlets { abstract BaseServlet { } package action { abstract SerialServlet { - SerialThread serialThread + SerialServlet(SerialThread serialThread) + SerialThread getSerialThread() } BaseServlet <|-- SerialServlet class LoginServlet { - String LOGGED_IN - String WRONG_USERNAME_PASSWORD # void doPost(HttpServletRequest request, HttpServletResponse response) - void checkOldSession(HttpServletRequest request) - void executePost(HttpServletRequest request, HttpServletResponse response, ServletRequestAnalyser sra) # void doGet(HttpServletRequest request, HttpServletResponse response) } LoginServlet --|> BaseServlet class GeneratorStatusServlet { - String GET_GENERATOR_STATUS_PERM - String SET_GENERATOR_STATUS_PERM - String STATUS - String[] REQUIRED_POST_PARAMETERS # void doPost(HttpServletRequest request, HttpServletResponse response) # void doGet(HttpServletRequest request, HttpServletResponse response) - void executePost(HttpServletResponse response, Connection connection, int userId, ServletRequestAnalyser sra) } GeneratorStatusServlet --|> SerialServlet class GeneratorMicServlet { - String SET_GENERATOR_MIC_PERM - String GET_GENERATOR_MIC_PERM - String TIMER - String[] REQUIRED_POST_PARAMETERS - void executePost(HttpServletResponse response, Connection connection, int userId, ServletRequestAnalyser sra) # void doPost(HttpServletRequest request, HttpServletResponse response) # void doGet(HttpServletRequest request, HttpServletResponse response) } GeneratorMicServlet --|> BaseServlet class GeneratorFrequenceServlet { - String SET_GENERATOR_FREQUENCE_PERM - String GET_GENERATOR_FREQUENCE_PERM - String FREQUENCE - String[] REQUIRED_POST_PARAMETERS - void executePost(HttpServletResponse response, Connection connection, int userId, ServletRequestAnalyser sra) # void doPost(HttpServletRequest request, HttpServletResponse response) # void doGet(HttpServletRequest request, HttpServletResponse response) } GeneratorFrequenceServlet --|> SerialServlet class GeneratorDecibelServlet { - String SET_GENERATOR_DECIBEL_PERM - String GET_GENERATOR_DECIBEL_PERM - String DECIBEL - String[] REQUIRED_POST_PARAMETERS - void executePost(HttpServletResponse response, Connection connection, int userId, ServletRequestAnalyser sra) # void doPost(HttpServletRequest request, HttpServletResponse response) # void doGet(HttpServletRequest request, HttpServletResponse response) } GeneratorDecibelServlet --|> SerialServlet } } @enduml
false
true
false
false
class
4aa5990248ea14eac595a9e52fffeccba9e0e780
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/PaymentStatusInterfaceCodeSetMessagePayload.puml
3fefa4b47c01c92ae5cb109da6446d72bee9def0
[]
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
490
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 PaymentStatusInterfaceCodeSetMessagePayload [[PaymentStatusInterfaceCodeSetMessagePayload.svg]] extends MessagePayload { type: String paymentId: String interfaceCode: String } interface MessagePayload [[MessagePayload.svg]] { type: String } @enduml
false
true
false
false
class
485fa7689bb0b9c6ea4b361eaa4f3794749586d3
7b98725bc9d59417fd946645f8a005c8d4ab6165
/Evaluaciones/E1.1.Eval1/Casos_uso.puml
d5857359f2eb54c0499e94e7cb5078351b7557f1
[]
no_license
CesarValladares/A01023506_Aymss18
c2e99581700f8521572b62bfee115110994167cc
cc7127ba7cb011a26e3357e4247c73e925575dcf
refs/heads/master
2021-05-12T14:35:37.195771
2018-05-02T13:33:39
2018-05-02T13:33:39
116,961,507
0
0
null
null
null
null
UTF-8
PlantUML
false
false
402
puml
@startuml left to right direction skinparam packageStyle rectangle actor Cliente actor Mar_Que_Tin rectangle Anuncio{ Mar_Que_Tin -- (Enviar SMS) (Enviar SMS) -- Cliente Mar_Que_Tin -- (Enviar llamada) (Enviar llamada) -- Cliente Mar_Que_Tin -- (Enviar Correo) (Enviar Correo) -- Cliente } @enduml
false
true
false
false
usecase
c1b26fb3de1f3f7a96e7890fef58cf28718445e4
1e992cebb323e6f1bbddd1e23b6214f8806b7834
/sip/CallForking/simple_call_forking_case_8_accept_then_busy.puml
a7cc0640769e05f6a98dc911630af0bfd5cde05e
[]
no_license
gongpengjun/code_diagrams
006c66441ae26331d19a408912af01c84e1bd5f4
686a830f47e407ddc58e7f8003331ee4fca5975c
refs/heads/master
2021-06-26T00:52:25.079556
2020-10-27T13:45:34
2020-10-27T13:45:34
166,416,838
0
1
null
null
null
null
UTF-8
PlantUML
false
false
1,942
puml
@startuml title call forking: one device ACCEPT then another device BUSY flow skinparam monochrome true autonumber "F00 " hide footbox 'skinparam BoxPadding 40 skinparam headerFontSize 14 header SIP-Forking-8 'box "caller" participant "UAC" as Caller_UAC <<caller>> 'end box 'box "proxy" participant "Proxy" as Proxy <<server>> 'end box 'box "callee" participant "UAS 1" as Callee_UAS_1 <<callee>> participant "UAS 2" as Callee_UAS_2 <<callee>> participant "UAS 3" as Callee_UAS_3 <<callee>> 'end box Caller_UAC -> Proxy: INVITE Caller_UAC <- Proxy: 100 Proxy -> Callee_UAS_1: INVITE (to_tag:1) Proxy <- Callee_UAS_1: 180 (to_tag:1) Caller_UAC <- Proxy: 180 (to_tag:1) Proxy -> Callee_UAS_2: INVITE (to_tag:2) Proxy <- Callee_UAS_2: 180 (to_tag:2) Caller_UAC <- Proxy: 180 (to_tag:2) Proxy -> Callee_UAS_3: INVITE (to_tag:3) Proxy <- Callee_UAS_3: 180 (to_tag:3) Caller_UAC <- Proxy: 180 (to_tag:3) note right of Caller_UAC: ignore to_tag in 1xx response == callee user accept on device `UAS 1` while in another call on device `UAS 2` == Proxy <- Callee_UAS_1: 200 (to_tag:1) Proxy <- Callee_UAS_2: 486 (to_tag:2) note right of Proxy: 200 of UAS 1 arrive first, 486 of UAS 2 is ignored Caller_UAC <- Proxy: 200 (to_tag:1) Caller_UAC -> Proxy: ACK (to_tag:1) Proxy -> Callee_UAS_1: ACK (to_tag:1) note right of Proxy: cancel other INVITE transactions ||| Proxy -> Callee_UAS_2: CANCEL (to_tag:2) note right of Proxy: `UAS 2` has already sent final response 486 Proxy <- Callee_UAS_2: 481 (Transaction Does Not Exist) (to_tag:2) note right of Proxy: send BYE to kick UAS 2 off Proxy -> Callee_UAS_2: BYE (to_tag:2) Proxy <- Callee_UAS_2: 200 (BYE) (to_tag:2) ||| Proxy -> Callee_UAS_3: CANCEL (to_tag:3) Proxy <- Callee_UAS_3: 200 (CANCEL) (to_tag:3) Proxy <- Callee_UAS_3: 487 (INVITE) (to_tag:3) Proxy -> Callee_UAS_3: ACK (487) (to_tag:3) skinparam footerFontSize 14 footer https://tools.ietf.org/html/rfc3261#page-55 @enduml
false
true
false
false
sequence
6cd303ec1ac51cce02328674aed32c132e8bd885
6c7cada82c93ee492dfa1aae164a14a29453164e
/docs/design/images/ClassDiagram-StackedStateFrames.puml
3bd42963e36ba5c24e5fd9dfe84b44d3eddcdb5c
[ "Apache-2.0" ]
permissive
hashgraph/hedera-mirror-node
4a3db9f2deec7d6a51f4920393363a3924663f37
c7ef5dee6cf68287ec87cf8fc4abf18c3b2cfc47
refs/heads/main
2023-08-16T14:26:58.289242
2023-08-15T21:20:34
2023-08-15T21:20:34
197,364,349
128
125
Apache-2.0
2023-09-14T19:35:22
2019-07-17T10:04:38
Java
UTF-8
PlantUML
false
false
1,613
puml
@startuml !pragma layout smetana title Stacked State for eth_estimateGas (class diagram) hide empty members enum ValueState { INVALID NOT_YET_FETCHED PRESENT MISSING UPDATED DELETED } class Entry { +state +value } note top of Entry: Value ("cache line") state + value class UpdatableReferenceCache<K> { +Entry get(K) +updated(K,Object) +delete(K) +coalesceFrom(UpdatableReferenceCache) +fill(K,Object) } abstract CachingStateFrame<K> <<(A,salmon)>> { #parentFrame #accountCache #tokenCache +CachingStateFrame(upstreamFrame,Class...) +getAccount() +setAccount() +deleteAccount() +getToken() +setToken() +deleteToken() +updatesFromDownstream() +getUpstream() } interface Accessor<K,V> { +Optional<V> get(key) +set(key,value) +delete(key) } interface DatabaseAccessor<K,V> { +Optional<V> get(key) } class StackedStateFrames<K> { -stack +StackedStateFrames(DatabaseAccessor...) } Entry::state o-right- ValueState UpdatableReferenceCache::get *-up- Entry StackedStateFrames::stack *-- CachingStateFrame : owns list of CachingStateFrame::parentFrame o- CachingStateFrame CachingStateFrame::accountCache *- UpdatableReferenceCache : accounts CachingStateFrame::tokenCache *- UpdatableReferenceCache : tokens ROCachingStateFrame <|-- RWCachingStateFrame CachingStateFrame <|-- ROCachingStateFrame CachingStateFrame <|-- DatabaseBackedStateFrame CachingStateFrame o-left- Accessor : gets //strongly-typed//\nvalues for StackedStateFrames::StackedStateFrames o-left- DatabaseAccessor : gets database\nvalues for skinparam groupInheritance 2 @enduml
false
true
false
false
class
31de66094460605452a22b6847c2021c9b3f2dfd
6fd26f6c6624b96d1500762cb09438354c7218e9
/DailyPra/out/production/DailyPra/com/chase/UML/usecase.puml
dd436a1ae65ad8af723584513e5cffcee6640b1b
[]
no_license
ChaseYin/JustJava
8f7ad8fc4582a9816dc8a13d8971afdc87970d4c
baf49317de0d73527466bff748b4561887edefdd
refs/heads/master
2023-08-21T18:27:28.694274
2021-10-04T16:08:01
2021-10-04T16:08:01
390,931,874
0
0
null
null
null
null
UTF-8
PlantUML
false
false
255
puml
@startuml class "Vaccine Recipient"{ name phone_number id } class doctor{ clinic accreditation } class vaccine { date } "Vaccine Recipient" "1" -- "1" vaccine : receives > doctor "1" -- "1" vaccine : gives > @enduml
false
true
false
false
class
3c0e095fc40142474d5049be351e0c6f014cf3ed
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/StagedOrderRemoveItemShippingAddressAction.puml
566e5385a66be5ce6f5ebdaa49a516a3454f992e
[]
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
494
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 StagedOrderRemoveItemShippingAddressAction [[StagedOrderRemoveItemShippingAddressAction.svg]] extends StagedOrderUpdateAction { action: String addressKey: String } interface StagedOrderUpdateAction [[StagedOrderUpdateAction.svg]] { action: String } @enduml
false
true
false
false
class
3575f009fd1a51bdb6b7e3da99c4dec9dc98b977
3a4fbffc931fc3f281e88c0eba61ee7e3111abff
/post/flink-sql-catalogtable.iuml
20c03cd75f9b9deb3f189b66b7594212e5994e05
[]
no_license
jrthe42/jrthe42.github.io
801b0f8f4edd30a756400bce7ba12727ac8be6b5
e831589a82720d9fd8c8a4c69ef535ab59f5719c
refs/heads/master
2021-05-24T04:01:24.767798
2021-03-23T14:25:19
2021-03-23T14:25:19
34,150,333
1
0
null
2015-08-14T07:00:27
2015-04-18T03:06:28
CSS
UTF-8
PlantUML
false
false
1,073
iuml
@startuml catalogtable interface CatalogBaseTable { Map<String, String> getProperties(); TableSchema getSchema(); String getComment(); } interface CatalogView extends CatalogBaseTable { String getOriginalQuery(); String getExpandedQuery(); } abstract class AbstractCatalogView implements CatalogView { } class CatalogViewImpl extends AbstractCatalogView { } class QueryOperationCatalogView extends AbstractCatalogView { private final QueryOperation queryOperation; } interface CatalogTable extends CatalogBaseTable { boolean isPartitioned(); List<String> getPartitionKeys(); Map<String, String> toProperties(); } abstract class AbstractCatalogTable implements CatalogTable { private final TableSchema tableSchema; private final List<String> partitionKeys; private final Map<String, String> properties; } class CatalogTableImpl extends AbstractCatalogTable { } class ConnectorCatalogTable<T1, T2> extends AbstractCatalogTable { private final TableSource<T1> tableSource; private final TableSink<T2> tableSink; private final boolean isBatch; } @enduml
false
true
false
false
class
d5f5a3639e9b1f07146d3a6c475260bf5efb466f
db515b19d12333ee687a3031046e2c882725f513
/src/main/java/ex44/diagram.puml
b072c1227ff13201920adedc5ad0e725225c69b8
[]
no_license
MerrekDeBolt/DeBolt-cop3330-assignment03
9cfb6c116011edc7728f8ede089e6b0dc74b507f
5b21d86244b873aad49f550cf29f4b0f5742dfc0
refs/heads/master
2023-08-21T12:21:41.911226
2021-10-12T03:46:40
2021-10-12T03:46:40
411,409,483
0
0
null
null
null
null
UTF-8
PlantUML
false
false
435
puml
@startuml 'https://plantuml.com/sequence-diagram class App { public static void main(String[] args) public static Item createProducts() public static boolean isItemNotFound(Item item, String input) } class Item { public Products[] products public int CurrentIndex } class Products { public String name public double price public int quantity } App --|> Item Item --|> App Products --|> Item @enduml
false
true
false
false
class
4d7915378e2b055f5cedf84198cf6c231e2cd42d
ee6841e96c76962e9f74ba032a25d2e923b7e42c
/tech-apache/apache-lang/src/main/resources/guava/guava-xml.puml
999847a509253a81b748c4fc753acae086144b36
[]
no_license
physicsLoveJava/java-miscellaneous
614cfbad7dd7679e99c561b210ebbbf1a9df941e
e7563fdc9b5f955662cba40fc48614e45747d020
refs/heads/master
2021-07-19T13:30:51.096326
2019-01-21T09:09:50
2019-01-21T09:09:50
105,858,854
0
0
null
null
null
null
UTF-8
PlantUML
false
false
35
puml
@startuml class XmlEscapers @enduml
false
true
false
false
class
17177a82ee062a9de12611a642006ceddcec66ca
d65090568de84c85cf22ce70367e25b69827918c
/doc/uml/src/contact-tracing.puml
901c8678282e08687ae7d456d1570939d9571eb3
[]
no_license
JoshuaSFryer/multi-agent-sim
b82d5a16b16a6a157085651bc984573f7d66c653
814fe32cf500b1ee193d98b57e5362a7150d9f8f
refs/heads/master
2023-05-06T16:55:53.122632
2021-06-01T18:19:08
2021-06-01T18:19:08
298,406,403
0
0
null
2021-03-20T19:48:43
2020-09-24T22:12:41
Python
UTF-8
PlantUML
false
false
511
puml
@startuml Model_C_Contact_Tracing left to right direction skinparam DefaultFontName ArialMT state Agent { [*] -down-> Idle ' note left of Idle ' Shift between home ' and work points ' every 12 hours ' end note Idle --> AwaitingTest : Become symptomatic Idle --> SelfIsolating : Notified of contact with symptomatic agent AwaitingTest : notify_contacts() AwaitingTest --> SelfIsolating : Testing delay expires SelfIsolating --> Idle : Recovery } @enduml
false
true
false
false
sequence
58e4941532a5659880d9b48d069321ccc689319f
c76fe0e93a144d0b42d01346304c79cf6dff4d38
/readme_files/cache_service.puml
17c7bc6ce0019a2f85349058a984517d7bdc6973
[ "Apache-2.0" ]
permissive
motorro/RxLceModel
b3e0ca3e10ad2dd773484f41674150f570ced847
d6c0d456e23544982fed95dcd68c926005857ed6
refs/heads/master
2023-05-10T16:09:01.957578
2023-05-08T18:41:59
2023-05-08T18:41:59
172,682,449
7
0
Apache-2.0
2023-01-31T15:35:40
2019-02-26T09:43:11
Kotlin
UTF-8
PlantUML
false
false
284
puml
@startuml interface CacheService { +get(params: PARAMS): Observable<Optional<Entity<DATA>>> +save(params: PARAMS, entity: Entity<DATA>): Completable +invalidate(params: PARAMS): Completable +invalidateAll: Completable +delete(params: PARAMS): Completable } @enduml
false
true
false
false
class
89668202ec7d792aadc6076defeab93c09be8782
805ad79ed78ea3bb4ef7fd87715d1c752e5f6cbc
/docs/coffee-shop.puml
728ef354a21bcdefd6257b1b51ea71b1477545aa
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
the-matrix/the-coffee-machine
9e1d3f0a482c433a954c444dfc3c3c80e9c6ffcc
7d4cd0925ccec36562c549a93a3fd95c600233c4
refs/heads/master
2020-09-06T05:57:22.925106
2019-11-08T10:39:50
2019-11-08T10:39:50
220,344,559
0
0
null
null
null
null
UTF-8
PlantUML
false
false
606
puml
@startuml hide unused attributes title The Coffee Shop: Coffee Maker [*] --> NEW_ORDER NEW_ORDER --> MAKE_COFFEE: new_order NEW_ORDER: Initial state NEW_ORDER: Order knows coffee variety required MAKE_COFFEE --> MAKE_MILK: with_milk MAKE_COFFEE: Do we need milk for MAKE_COFFEE: for this drink? MAKE_COFFEE --> POUR_COFFEE: no_milk MAKE_MILK --> POUR_COFFEE: milk_made POUR_COFFEE --> POUR_MILK: add_milk POUR_COFFEE: Do we need milk for POUR_COFFEE: for this drink? POUR_MILK --> SERVE_COFFEE: serve_coffee_milk POUR_COFFEE --> SERVE_COFFEE: serve_coffee SERVE_COFFEE --> [*] @enduml
false
true
false
false
sequence
9f44551a993f4fb12b7f1beb20543c5e94d2030a
9cdd6bb678758ee6204c2b7a156e5a7d2abcd1cd
/.resources/dp/components.plantuml
5ca84e2e98e4fc5e09849c5513f95237e0cda5cf
[]
no_license
duclmse/Lycanthrone
67344a10289410f1cf3a0b19cfa107f338a1f214
f033d6cef31ad6735ddeaf563639f0d8c1e8f637
refs/heads/master
2023-02-13T00:54:57.644110
2020-04-17T08:18:46
2020-04-17T08:18:46
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,129
plantuml
@startuml package "ArduCopter - Simple Version" { [EnginesControl] -down-> Engines [EnginesControl] - [MainCopterProcess] [MainCopterProcess] - [Rangefinder] [Rangefinder] -down-> BottomSonicSensor [MainCopterProcess] -down- [GPSSignalListener] } package "CarDuino Nano" { [GPSSignalMaker] -down- [MainCarDuinoProcess] [MainCarDuinoProcess] -down- [CommandListener] [GPSSignalMaker] -up- [GPSSignalSender] [MainCarDuinoProcess] - [5x Rangefinders] [5x Rangefinders] -down-> 5xSonicSensors [TelemetricsSender] - [MainCarDuinoProcess] [TelemetricsSender] -down- MiniUSB [CommandListener] -left- MiniUSB } package "Intell 2800 - Simple Version" { [ComputerCommunications] -up- USB [ComputerCommunications] - [MainComputerProcess] [KinectProcessing] -down-> KINECT [KinectProcessing] - [MainComputerProcess] [VideoProcessing] -down-> Camera [VideoProcessing] - [MainComputerProcess] [ComputerCommunications2] -up- [MainComputerProcess] [ComputerCommunications2] -down- WiFi [ComputerCommunications2] -down- Bluetooth } [GPSSignalListener] -down- [GPSSignalSender] USB -up- MiniUSB @enduml
false
true
false
false
uml-unknown
ec1db4e09d1b30144cb08866f9b01a364c5e69ab
015af2febe164b9667ae91319080ed064c132b0e
/kms/kms-api-gateway/src/main/java/com/uwaterloo/iqc/kms/apigateway/apigateway.plantuml
b1e98224ac354d243f9cf11b3c1fe736f65a20f0
[ "MIT" ]
permissive
crazoter/qkd-net
fb247b3a122821451a64ea587619926d9571444c
182860ec031bf066fd3a9fa60d6d3629b4d37899
refs/heads/master
2022-08-25T23:32:53.109504
2020-05-20T02:25:20
2020-05-20T02:25:20
263,811,400
1
0
null
2020-05-14T04:05:04
2020-05-14T04:05:04
null
UTF-8
PlantUML
false
false
594
plantuml
@startuml title __APIGATEWAY's Class Diagram__\n namespace com.uwaterloo.iqc.kms.apigateway { class com.uwaterloo.iqc.kms.apigateway.KmsApiGatewayApplication { {static} - logger : Logger {static} + main() } } namespace com.uwaterloo.iqc.kms.apigateway { class com.uwaterloo.iqc.kms.apigateway.PrincipalRestController { ~ principal() } } 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
d1712b9c0e251f2797a3a8c71ea90b65a38aeaea
37cb4b99f409302fc2e48ecc3ad281f7a04e206a
/puml/OnboardingMember-CULedgerDetail.puml
84cf8a13d68b7e5f5ef79ec29a6afc0db82ddeef
[]
no_license
peacekeeper/CULedger.IdentityAPI
abaf0e1127dcc17d8c7cbd391ea37aee7f444d59
609d4e9a0bc79b05797f56c244173aea5b8fa75d
refs/heads/master
2020-04-07T11:35:28.651802
2019-03-22T09:10:29
2019-03-22T09:10:29
158,332,673
2
0
null
null
null
null
UTF-8
PlantUML
false
false
3,744
puml
@startuml skinparam maxmessagesize 200 box "Credit Union domain of control" #lightblue participant "Call Center" as cca participant "CULedger.Identity" as cuid participant "Enterprise Backend (VCX)" as cu end box participant "Enterprise Cloud Agent" as cuag /' database "Branch.io" as bra box "Evernym Agency" #lightgreen participant "Agency Agent" as agag participant "Personal Cloud Agent" as conag end box '/ participant "Connect.Me" as con actor "Joe &\nhis phone" as joe title MSR Invites Member to connect via CULedger.Identity - CULedger Detail note over cu, con Assumptions 1. CU Enterprise Agent and Evernym Agency Agent have a pairwise relationship. end note autonumber cca -> cuid: /onboard(...) cuid -> cuid: Onboarding information (temporarily?) stored including SMS number. cuid -> cu: Member has been created and pairwise DID created for CU portion of pairwise relationship cu -> cuag: "Here is a new private-pairwise DID I'm using for a new connection invitation, and I want to send it via SMS." /' cuag -> cuag: Decides on new or existing endpoint for callback (when invite gets accepted, this is where the acceptor will go to find the invitation info) & generates a callback url cuag -> agag: "Please store this callback url for a new connection invitation I want to send out, and pls give me a url to use in the invitation" agag -> agag: Generates tokenized url agag -> bra: Stores token and callback url from CU bra -> agag: Returns success agag -> cuag: Passes tokenized url cuag -> joe: Sends SMS with tokenized url and other text "UFCU wants you to install this app to get your MyCUID!" joe -> bra: Joe's phone clicks link which opens browser which navigates to branch.io, finds callbackurl bra -> bra: Associates token with Joe's phone bra -> joe: Redirects browser to appstore joe -> con: Installs & launches app group These are default api calls each first-time app launch triggers con -> agag: App calls home and asks for new cloud agent for Joe create conag agag -> conag: Creates conag <--> con: Pairwise connection established con -> bra: On first launch, app asks "I am Joe's phone, do you have anything for me?" end bra -> con: Knows Joe's phone is associated with the token, so it passes callback url & token con -> cuag: Hits callback url, says "here's my token, what do you have for me?" cuag -> con: Passes unencrypted connection invitation information in json note left of con <color:blue>Invite json looks like this</color> { for_did: DID, for_verkey: VERKEY, eagent_key: EAGENT_KEY, #enterprise agent public key for this DID signature: SIG, # of the the above key signed by Organization conn_name: NAME, # of the Connection Issuer logo_url: LOGO, # Url of the Avatar Image } end note con -> joe: Displays invitation from CU joe -> con: Accepts invite con -> con: Generates Joe' side of the pairwise relationship, stores both sides par2 con -> conag: Joe is accepting CU invite, here is his pairwise acceptance details else conag -> cuag: \nStores new relationship info & Forwards else cuag -> cu: \nStores new relationship info & Forwards end '/ cuag -> cuag: Evernym VCX connection stuff (lots of it) happens...\n1. Member receives link to install app.\n2. Member installs Connect.Me.\n3. Connect.Me connects to CULedger.Identity via Agents. cuag -> cu: Stores new relationship info & Forwards cu -> cuid: forwards Member's private DID cuid -> cuid: Member information updated to <onboarded> state cuid -> cca: notifies CCA that Member is Onboarded (i.e. has Credential) skinparam arrowsize 10 cuid o<-[#green]>o con: Pairwise unique relationship established based on Sovrin DIDs note over cca, joe Joe has a pairwise relationship with his Credit Union! end note @enduml
false
true
false
false
usecase
89bb5ad05ee7009deb66eacdbadb627ecfc2b6d8
a58f448d617ac460cf8f3541d137287e489ef0f7
/docs/design/network-discovery/switch-FSM.puml
633c20f28dba1bbc349ab9921a7813eab12eb3b4
[ "Apache-2.0" ]
permissive
gauravchug/open-kilda
c1fc2de126fa09e67e21f12be47b0892b0d19c18
696f87ddc0d37bd64024ca80f17a942b4f196f10
refs/heads/master
2023-08-30T21:42:27.346545
2021-02-04T14:53:54
2021-02-04T14:53:54
131,945,988
2
0
Apache-2.0
2023-08-24T19:52:00
2018-05-03T05:30:29
Java
UTF-8
PlantUML
false
false
1,701
puml
Internal data: * switchId * list of portNumber+upState Input signals: * history * online * offline * port-add * port-del * port-up * port-down Output signals: * online * offline * setup-port * remove-port * port-up * port-down @startuml title Switch FSM legend top right sync-ended = [sync was successful || no attempts left] endlegend [*] --> INIT INIT --> OFFLINE : history / setup port workers INIT --> SYNC : online SYNC : enter / init attempts count from config SYNC : enter / save speaker data SYNC : enter / create or update DB record SYNC : enter / save features SYNC : sync-response [!sync-ended] / process sync response SYNC : sync-error [!sync-ended] / process error response SYNC : sync-timeout [!sync-ended] / process timeout SYNC --> SETUP : sync-ended SYNC --> OFFLINE : offline SETUP : enter / update status in DB SETUP : enter / emit switch online status notification SETUP : enter / setup port FSM for NEW ports SETUP : enter / emit online for ALL ports SETUP : enter / emit port-del for REMOVED ports SETUP : enter / emit port-down for DOWN ports SETUP : enter / emit port-up for UP ports SETUP : enter / send reroute affected flows command SETUP --> ONLINE : next ONLINE : port-add / setup port FSM ONLINE : port-add / emit online for port ONLINE : port-add / emit port-up/down ONLINE : port-del / kill port FSM ONLINE : port-up / proxy ONLINE : port-down / proxy ONLINE : online / update ports status ONLINE --> OFFLINE : offline OFFLINE : enter / update status in DB OFFLINE : enter / emit offline for portAll() OFFLINE : enter / emit switch changed notification OFFLINE --> SYNC : online OFFLINE --> DELETED: switch-remove / kill ports FSM DELETED -> [*] @enduml
false
true
false
false
sequence
627e91b13b9b9bb686b92afa3d5a0168551cc283
9b97649137eb308e83c86f20a537e84e3bac42e5
/src/main/diagramas_puml/EstadosEtapa.puml
5364674cdd459dab463ab15868dd0d577a4e709f
[ "MIT" ]
permissive
juanireil/algo3_tp2
3c8c2f724bbc4ea02f48ddcd358f1f758960fdbf
199b47b4194222ecad2933e76695e5b2f295a1db
refs/heads/master
2023-07-14T17:24:56.069727
2021-09-01T22:48:38
2021-09-01T22:48:38
382,445,125
0
0
MIT
2021-09-01T22:48:39
2021-07-02T19:35:17
Java
UTF-8
PlantUML
false
false
391
puml
@startuml 'https://plantuml.com/state-diagram [*] --> EtapaColocacionRondaUno EtapaColocacionRondaUno --> EtapaColocacionRondaDos : pasarEtapa EtapaColocacionRondaDos --> EtapaAtacar : pasarEtapa EtapaAtacar --> EtapaReagrupar: pasarEtapa EtapaReagrupar --> EtapaAtacar: pasarEtapa EtapaReagrupar --> EtapaColocacion : pasarEtapa EtapaColocacion --> EtapaAtacar EtapaAtacar --> [*] @enduml
false
true
false
false
sequence
8a1070319d93f960960ee3bcfa40a156cb9dc121
cfaaae92618c2947d53a0d766859d80394554b0c
/test.puml
c03b0ad457e4a7e285d449d39acbb206291b9cfa
[]
no_license
nira24/Testnirali
eb7a6caa236cec5cb033be93841c794f66a5ddd6
b3af026596e09945d5335b0aa749b3ba580d20d2
refs/heads/main
2023-03-12T06:05:38.099946
2021-03-01T20:15:31
2021-03-01T20:15:31
343,166,939
0
0
null
2021-02-28T17:50:08
2021-02-28T17:25:49
null
UTF-8
PlantUML
false
false
383
puml
@startuml 'https://plantuml.com/class-diagram abstract class AbstractList abstract AbstractCollection interface List interface Collection List <|-- AbstractList Collection <|-- AbstractCollection Collection <|- List AbstractCollection <|- AbstractList AbstractList <|-- ArrayList class ArrayList { Object[] elementData size() } enum TimeUnit { DAYS HOURS MINUTES test } @enduml
false
true
false
false
class
ba0494813bc2ab937d266bb9c865c3f09f5d4074
0eba70e9cdb26c9184163384eece404dba2acfcc
/app/src/main/java/com/makeus/jfive/famo/util/Questionnaire.puml
2f97d03f6ccae8db6396a35c95f9d2d73d62e138
[]
no_license
jae1jeong/Famo
46fa7994b761cd1918eecc5c29143c0f2d28bf97
46d1f80baeca8afc685acbc11803f912fd07549f
refs/heads/master
2023-08-14T12:53:31.919356
2021-10-06T16:38:01
2021-10-06T16:38:01
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
445
puml
@startuml 'https://plantuml.com/class-diagram class Activity{ } class BottomSheetDialog{ } interface QuestionBottomSheetDialog{ initDialog() setOkBtnListener() } abstract class QbottomSheetDialog(){ Button okBtn Button closeBtn } class QuestionnaireHelper{ Int resId ViewGroup? root Boolean attachToRoot initDialog(BottomSheetDialog bottomSheetDialog) } Activity *-- QuestionnaireHelper QuestionnaireHelper *-- BottomSheetDialog @enduml
false
true
false
false
class
ef0f780e75590a1a4e164beacfa15e6b07871b53
790784da8209e419f19a2b7d5c24ed2f8d872e01
/diagrams/gameplay.puml
a951a1743369fd77dcad52f72d7879b3bed5e602
[ "MIT" ]
permissive
thtay/PythonGames
b0a7e7974ca28402e9b8012e12290a6bfa21d375
6c03f6a1aec6abb8cd020d0cdd943ff4b6f0ce3f
refs/heads/master
2021-05-26T21:59:00.960992
2020-04-17T21:01:12
2020-04-17T21:01:12
254,171,195
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,803
puml
@startuml [*] --> GameMenu: Start Program state GameMenu{ GameMenu: Menu of the game. Let's the player GameMenu: choose to start or quit the game GameMenu: GameMenu: * start() GameMenu: * quit() } GameMenu --> PlayerInRoom: if player choose "start()" GameMenu --> [*]: if player choose to "quit()" state PlayerInRoom{ PlayerInRoom: Player starts out in the room. PlayerInRoom: Can see different areas you PlayerInRoom: can go to and search for items. PlayerInRoom: PlayerInRoom: * GoToItem() PlayerInRoom: * ExitRoom() PlayerInRoom: * quit() } PlayerInRoom --> Player_GoToObject: if player choose an object PlayerInRoom --> Player_OpenCheck: if player choose to exitRoom PlayerInRoom --> [*]: if Player quit the game. state Player_GoToObject{ Player_GoToObject: Player goes over to the object. Player_GoToObject: Let's say is a closet. A description of the Player_GoToObject: closet is shown to the player. There will also Player_GoToObject: be an option to examine the closet or open/examine. Player_GoToObject: Player_GoToObject: * examine() Player_GoToObject: * open() Player_GoToObject: * back_out() } Player_GoToObject --> Player_Examine: If player choose to examine object Player_GoToObject --> Player_OpenCheck: If player choose to open the object Player_GoToObject --> PlayerInRoom: If player chooses to back out state Player_Examine{ Player_Examine: Player looks at the object, closet, without Player_Examine: opening it. The game will display a description Player_Examine: of its external features. Player_Examine: Player_Examine: * open() Player_Examine: * back_out() } Player_Examine --> Player_Open: If player choose to open the object Player_Examine --> Player_GoToObject: If player chooses to back out state Player_OpenCheck{ Player_OpenCheck: Check if player can open the object. Player_OpenCheck: * open() } Player_OpenCheck --> Player_Open: If player has key for the object Player_OpenCheck --> Player_GoToObject: Send back to examine state Player_Open{ Player_Open: Player will open the object, closet. The game Player_Open: will display all the items in the closet. Player_Open: Then the player can choose to pick up any of the Player_Open: items or back out. Player_Open: Player_Open: * pickupItem() Player_Open: * back_out() } Player_Open --> Player_PickUpItem: If player chooses an item to pick up. Player_Open --> PlayerInRoom: If player chooses to back out. state Player_PickUpItem{ Player_PickUpItem: Put item picked up in players inventory. Player_PickUpItem: after picking up item, will remove item from object list Player_PickUpItem: and show the remaining items. } Player_PickUpItem --> Player_Open: Just show the rest of items state Player_EscapedRoom{ Player_EscapedRoom: Player Win! } Player_OpenCheck --> Player_EscapedRoom: If player open check passes @enduml
false
true
false
false
sequence
ee979657690fef5d257b7ab2d0223258890396e9
6e29d893e7deebb9339dd5515195d7e510aba402
/Documentação/Sprint 3/Modelo_Dominio.puml
29c84badbf5a06e2bc9805eda3f91e53d6355ee6
[]
no_license
blestonbandeiraUPSKILL/upskill_java1_labprg_grupo2
3a257326461907780a503165042584c5b7a8e535
95c31675e9008e961f00b177d6814046a72b577c
refs/heads/main
2023-03-18T20:54:48.147868
2021-03-21T20:10:16
2021-03-21T20:10:16
331,623,577
0
2
null
2021-03-21T20:10:17
2021-01-21T12:38:14
Java
UTF-8
PlantUML
false
false
3,853
puml
@startuml title Modelo de Domínio left to right direction class Plataforma { -String designacao } class AreaActividade { -String codigo -String descBreve -String descDetalhada } class CompetenciaTecnica { -String codigo -String descBreve -String descDetalhada } class Organizacao { -String nome -String NIF -String website -String telefone -String email } class TipoRegimento { -String designacao -String descricaoRegras } class Tarefa { -String referencia -String designacao -String descInformal -String descTecnica -Integer duracaoEst -Double custoEst } class CaracterCT { -Boolean obrigatoria } class Categoria { -String id -String descricao } class Colaborador { -String funcao -String telefone } class EnderecoPostal { -String local -String codPostal -String localidade } class Freelancer { -String NIF -String telefone } class GrauProficiencia { -Integer valor -String designacao } class ReconhecimentoCT { -Data dataReconhecimento } class HabilitacaoAcademica { -String grau -String designacaoCurso -String nomeInstituicao -Double mediaCurso } class Candidatura { -Date dataFimCandidatura -Double valorPretendido -Integer numeroDias -String txtApresentacao -String txtMotivacao } class Administrativo { } class Utilizador { -String nome -String email -String password } class Password { String password } class Email { String email } class AlgoritmoGeradorPasswords { } class Anuncio { -Data dataInicioPublicitacao -Date dataFimPublicitacao -Date dataInicioCandidatura -Date dataFimCandidatura -DateInicioSeriacao -DateFimSeriacao } class ProcessoSeriacao { -Date dataRealizacao } class Classificacao { -Integer lugar } Plataforma"1" -- "*"Organizacao: tem registadas > Plataforma"1" -- "*"Freelancer: tem/usa > Plataforma"1" -- "*"Administrativo: tem > Plataforma"1" -- "*"AreaActividade: possui > Plataforma"1" -- "*"CompetenciaTecnica: possui > Plataforma"1" -- "*"Categoria: possui > Plataforma"1" -- "*"Anuncio: publicita > Plataforma"1" -- "*"TipoRegimento: suporta > Anuncio"*" -- "1"TipoRegimento: rege-se por > Anuncio"0..1" -- "1"Tarefa: publicita > Anuncio"*" -- "1"Colaborador: publicado por > Anuncio"1" -- "*"Candidatura: recebe > Anuncio"1" -- "0..1"ProcessoSeriacao: despoleta > ProcessoSeriacao"1" -- "*"Classificacao: resulta > ProcessoSeriacao"*" -- "1"TipoRegimento: decorre em concordância com > ProcessoSeriacao"1" -- "1..*"Colaborador: realizado por > Candidatura"*" -- "1"Freelancer: realizada por > Tarefa"1" -- "0..1"Anuncio: Anuncio: dá origem > Tarefa"*" -- "1"Categoria: enquadra-se em > Tarefa"*" -- "1"Colaborador: especificada por > CompetenciaTecnica"*" -- "*"AreaActividade: referente a > Organizacao"1" -- "*"Tarefa: possui > Organizacao"1" -- EnderecoPostal: localizada em > Organizacao"1" -- "1"Colaborador: tem gestor > Organizacao"1" -- "1..*"Colaborador: tem > Freelancer"0..1" -- "1"Utilizador: actua como < Administrativo"0..1" -- "1"Utilizador: actua como < Colaborador"0..1" -- "1"Utilizador: actua como < Categoria"*" -- "*"CompetenciaTecnica: requer > (Categoria, CompetenciaTecnica) . CaracterCT CaracterCT"*" -- GrauProficiencia: exige(como minimo) > Utilizador"1" -- "1"Email: possui > Utilizador"1" -- "1"Password: possui > Freelancer"0..1" -- "1"EnderecoPostal: tem > Freelancer"1" -- "*"ReconhecimentoCT: recebe(u) > Freelancer"1" -- "*"HabilitacaoAcademica: tem > Freelancer"0..1" -- Utilizador: actua como < Plataforma"1" -- AlgoritmoGeradorPasswords: recorre a > ReconhecimentoCT"*" -- "1"CompetenciaTecnica: relativa a > ReconhecimentoCT"*" -- "1"GrauProficiencia: reconhece > CompetenciaTecnica"1" -- "*"GrauProficiencia: aplica > @enduml
false
true
true
false
class
a1e92173e32f5efa2b1af0a94def2f80f10900b4
8ec1fb16b350f453824ca50174347688b310ce2c
/aula03/aula03.plantuml
250dffcc22fc461a7f7ac2bbe50906f4f548ef07
[]
no_license
oEscal/PDS
2f32cd491a0a963e3b7182f772d8699ba82f3bf3
5feca5f16979319869da5fcf97ae3f3dfbbf1986
refs/heads/master
2020-04-25T00:23:09.561837
2019-06-03T09:17:43
2019-06-03T09:17:43
172,376,799
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,771
plantuml
@startuml title __AULA03's Class Diagram__\n package aula03 { class ErrorStreet { {static} + nonExistDoorError() {static} + doorsIntervalError() {static} + memberNameError() } } package aula03 { class JGalo { {static} - serialVersionUID : long - jPanel : JPanel - bt : JToggleButton[] + JGalo() + actionPerformed() {static} + main() } } package aula03 { class JGaloController { {static} - PLAYERS_IDENTIFIERS : char[] - board : int[][] - current_player : int - count_plays : int - winner : int + JGaloController() + getActualPlayer() + setJogada() + isFinished() + checkResult() - checkIfWinner() - checkHaveMorePlays() } } package aula03 { interface JGaloInterface { {abstract} + getActualPlayer() {abstract} + setJogada() {abstract} + isFinished() {abstract} + checkResult() } } package aula03 { class Member { - name : String - num_initial : int - num_final : int - Member() {static} + factory() + getName() + getNum_initial() + getNum_final() {static} - checkNames() + toString() } } package aula03 { class MemberNameComparator { + compare() } } package aula03 { class MemberSetComparator { + compare() } } package aula03 { class StreetMap { - doors : List<TreeSet<Member>> + StreetMap() + add() + addAll() - increaseStreetSize() + getDoors() + getInDoor() + toString() } } package aula03 { class lab3 { {static} - MIN_NUMBER_DOOR : int {static} ~ input : Scanner {static} + main() {static} - menu() {static} - readFileLines() {static} - getFamilies() {static} - map() {static} - list() {static} - addMember() {static} - removeMember() {static} - lookUp() {static} - clearStreet() {static} - checkDoors() {static} - setContainsMember() {static} - generateWhiteString() {static} - checkIfMember() {static} - isInteger() {static} - verifySizeOption() } } JGalo -up-|> ActionListener JGalo -up-|> JFrame JGalo o-- JGaloInterface : jogo AccessibleJFrame -up-|> AccessibleAWTFrame AccessibleContainerHandler -up-|> ContainerListener AccessibleAWTFocusHandler -up-|> FocusListener AccessibleAWTComponentHandler -up-|> ComponentListener AccessibleAWTFrame -up-|> AccessibleAWTWindow AccessibleContainerHandler -up-|> ContainerListener AccessibleAWTFocusHandler -up-|> FocusListener AccessibleAWTComponentHandler -up-|> ComponentListener AccessibleAWTWindow -up-|> AccessibleAWTContainer AccessibleContainerHandler -up-|> ContainerListener AccessibleAWTFocusHandler -up-|> FocusListener AccessibleAWTComponentHandler -up-|> ComponentListener WindowDisposerRecord -up-|> DisposerRecord AccessibleAWTContainer -up-|> AccessibleAWTComponent AccessibleAWTContainer +-down- AccessibleContainerHandler AccessibleContainerHandler -up-|> ContainerListener AccessibleAWTFocusHandler -up-|> FocusListener AccessibleAWTComponentHandler -up-|> ComponentListener WakingRunnable -up-|> Runnable DropTargetEventTargetFilter -up-|> EventTargetFilter MouseEventTargetFilter -up-|> EventTargetFilter AccessibleAWTComponent -up-|> Serializable AccessibleAWTComponent -up-|> AccessibleComponent AccessibleAWTComponent -up-|> AccessibleContext AccessibleAWTComponent +-down- AccessibleAWTFocusHandler AccessibleAWTComponent +-down- AccessibleAWTComponentHandler AccessibleAWTFocusHandler -up-|> FocusListener AccessibleAWTComponentHandler -up-|> ComponentListener DummyRequestFocusController -up-|> RequestFocusController SingleBufferStrategy -up-|> BufferStrategy BltSubRegionBufferStrategy -up-|> SubRegionShowable BltSubRegionBufferStrategy -up-|> BltBufferStrategy FlipSubRegionBufferStrategy -up-|> SubRegionShowable FlipSubRegionBufferStrategy -up-|> FlipBufferStrategy BltBufferStrategy -up-|> BufferStrategy FlipBufferStrategy -up-|> BufferStrategy ProxyCapabilities -up-|> ExtendedBufferCapabilities FlipContents -up-|> AttributeValue JGaloController -up-|> JGaloInterface MemberNameComparator -up-|> Comparator MemberSetComparator -up-|> Comparator 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
eb11955ba50b4229a03c2d4d5d433cb64aff6df5
6ad03e268176b3afaf38235347ea3329a6bb19ba
/VideoStore/diagram/class.puml
b7dd08ccd77903f785243a3470b639ac309b90ed
[ "Unlicense" ]
permissive
LiuPai/refactoring
f09714f9613bfc87df4cf64fa05e7fd3252e6ecb
a290aca180d2d8611ee8837c42a8f5a2a4fcc02c
refs/heads/master
2021-01-20T18:48:39.860236
2016-06-23T02:41:24
2016-06-23T02:41:24
61,682,627
0
0
null
null
null
null
UTF-8
PlantUML
false
false
775
puml
class Movie { + PriceCode int + float64 GetCharge(days int) + int GetFrequentRenterPoints(days int) } class Rental { + DaysRented int + float64 GetCharge() + int GetFrequentRenterPoints() } class Customer { - name string + string Statement() + string HTMLStatement() + float64 GetTotalCharge() + int GetTotalFrequentRenterPoints() } interface Price { + float64 GetCharge(days int) + int GetFrequentRenterPoints(days int) } class ChildrensPrice { + float64 GetCharge(days int) } class NewReleasePrice { + float64 GetCharge(days int) + int GetFrequentRenterPoints(days int) } class RegularPrice { + float64 GetCharge(days int) } Customer -l-> "*" Rental Rental -u-> "1" Movie Movie -r-> "1" Price ChildrensPrice -u-|> Price NewReleasePrice -u-|> Price RegularPrice -u-|> Price
false
true
false
false
class
641e4a431c052da4096afc64962babdd037a13c9
8eeaa622bd21c275f3c6995d3f1b3657b68b0618
/src/Docs/_new/2-internals/1-core/10-erd/_puml/erd-shopware-core-framework-scheduledtask.puml
2cc39c3569036c2c18ffab7a95707a3f4feb3cab
[ "MIT", "LicenseRef-scancode-generic-cla" ]
permissive
Gamingpc/platform
79282f0e78f9346b4fa02a7907975890200d8ac8
47169962a2d7fa4b232ad63d3611ac392ba3ddf4
refs/heads/6.0-dp
2023-04-06T14:37:58.066081
2019-07-15T06:24:42
2019-07-15T06:24:42
188,271,256
3
2
MIT
2023-04-04T01:25:29
2019-05-23T16:35:37
PHP
UTF-8
PlantUML
false
false
1,382
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(ShopwareCoreFrameworkScheduledTaskScheduledTaskDefinition, "scheduled_task\n(Cron job)") { primary_key(id) id not_null(name) string not_null(scheduledTaskClass) string not_null(runInterval) int not_null(status) string lastExecutionTime date not_null(nextExecutionTime) date not_null(createdAt) createdAt not_null(updatedAt) updatedAt } ForeignTable(ShopwareCoreFrameworkMessageQueueDeadMessageDeadMessageDefinition, "dead_message") { } ' relationshipd ShopwareCoreFrameworkScheduledTaskScheduledTaskDefinition --> ShopwareCoreFrameworkMessageQueueDeadMessageDeadMessageDefinition @enduml
false
true
false
false
uml-unknown
129ec4d049784fd8aa4d7e79942a6c5b71cfc7a8
3653a4488ad0d31bad8871582142d0ec1194a787
/src/main/asciidoc/images/domain.puml
0389143a3e87214f61a2f1631d5ed3a752b2e4b3
[]
no_license
umons-polytech-odl2017/odl-ie-doc
1ef4b7299b702a8dc1deeaeeb07ad8dd91cd01ce
b509346109260abe7d8d7a61c9473336c16b47c5
refs/heads/master
2021-03-24T09:11:48.951056
2017-11-16T10:32:04
2017-11-16T10:32:04
110,947,490
0
0
null
null
null
null
UTF-8
PlantUML
false
false
483
puml
@startuml hide empty members class Project class Task { - description - expectedDuration - deadline - progress } class AgendaEntry { - startTime - endTime } class Skill class Resource class Manager class Worker class Team class Algorithm Project o-- Task Manager --> Algorithm : > prefers Manager - Team Team *-- Worker Worker o--> Skill : > has Task --> Skill : > requires Task --> Resource : > requires AgendaEntry - Task Worker - AgendaEntry Resource o- Resource @enduml
false
true
false
false
sequence
434e02149be5a1dec45b52aeb323993c2341ca67
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.puml
55f80b47242d2ea09b713919a95f96cf4ff855ca
[]
no_license
TakanoVineYard/AMHH
215a7c47049df08c5635b501e74f85137b9e985b
68887a313587a2934fb4ceb2994cbc2a2191d6a3
refs/heads/master
2023-01-13T02:08:02.787083
2020-11-17T14:51:57
2020-11-17T14:51:57
303,631,593
0
0
null
null
null
null
UTF-8
PlantUML
false
false
337
puml
@startuml class VertexZoom { + AngleMultiplier : float = 1.0f + SpeedMultiplier : float = 1.0f + CurveScale : float = 1.0f Awake() : void OnEnable() : void OnDisable() : void Start() : void ON_TEXT_CHANGED(obj:Object) : void AnimateVertexColors() : IEnumerator } MonoBehaviour <|-- VertexZoom @enduml
false
true
false
false
class
4c439a8aab097887d7f7e6c94bd9baf1ebeed5b0
e2e5d6eba4e02acf2af1546212af382f847c009b
/docs/processes.puml
4531d3c7fdcf2b7632aaf8b38c1df99dd0501388
[]
no_license
rummens1337/project-row-rover
b1efd8fb0357520a01e40c4d724c681526365b5d
646583889954f52ea44eb0bae73c6e4a05a07846
refs/heads/master
2021-06-17T20:23:23.115549
2019-01-13T20:48:14
2019-01-13T20:48:14
209,407,594
1
0
null
2021-06-11T17:54:21
2019-09-18T21:31:52
Python
UTF-8
PlantUML
false
false
1,687
puml
@startuml actor user skinparam BoxPadding 50 box "startup" participant entrypoint participant init.py end box box "processes" #LightBlue participant main.py participant video_stream.py end box box "threads" #orange participant camera participant image participant wsc as "wsc handeler" end box entrypoint [#green]-> init.py: start init activate init.py init.py -> init.py: check appdata,\nmake settings.conf if necessary deactivate init.py entrypoint [#green]-> main.py: start main process rnote over main.py main process is left out because its to complex for the purpose of this diagram. end note activate main.py entrypoint [#green]-> video_stream.py: start video stream activate video_stream.py video_stream.py -> video_stream.py: start websocket server video_stream.py -> camera: continues capture camera activate camera camera -> camera: capture at 24fps rnote right of camera camera, image and wsc handeler run in a forever loop with an interval. end note video_stream.py -> image: continues detect faces activate image image -> camera: get frame image -> image: detect faces image -> image: stores faces in global \nfacedata variable user -> video_stream.py: request video stream video_stream.py -> wsc: handle request activate wsc wsc -> image: get facedata wsc -> camera: get frame wsc -> wsc: build frame with \nfacial recognition wsc -> user: continues stream data user [#red]-> wsc: disconnect deactivate wsc entrypoint [#red]-> main.py: SIGINT deactivate main.py entrypoint [#red]-> video_stream.py: SIGINT video_stream.py -[#red]> camera: destoy deactivate camera video_stream.py [#red]-> image: destoy deactivate image deactivate video_stream.py @enduml
false
true
false
false
sequence
11ffd2fd1366e2061242c488b496ac70aaba8be4
da5433ed3f2740b0255a1b2258338e9ddf322aba
/kubernetes/Sample.puml
84c8fb74f02b451a9af1190c0b8cdcad8fdce4aa
[ "MIT" ]
permissive
StefanSchubert/freePlantUMLDiagrams
e9c8d6691af38d318226f80c78f6d6ae406eab2e
87e5a8814764be3d1af0fce8fbe645531bf9309a
refs/heads/master
2021-07-05T21:57:18.821829
2020-10-08T19:38:42
2020-10-08T19:38:42
185,024,007
1
0
null
null
null
null
UTF-8
PlantUML
false
false
1,118
puml
@startuml skinparam componentStyle uml2 !include <kubernetes/k8s-skinparam> skinparam title { BorderColor black FontName Courier FontSize 8 } title Now in stblib https://plantuml.com/de/stdlib Sprite-Overview https://github.com/michiel/plantuml-kubernetes-sprites end title ' !include <kubernetes/k8s-sprites-unlabeled-25pct> !include <kubernetes/k8s-sprites-labeled-25pct> actor Someone package "Namespace XY" { ' component "<$master>" as master ' component "<$etcd>" as etcd ' component "<$node>" as node component "<$pod>\nMyApp" as app component "<$svc>\nMyAppService" as svc component "<$ing>\nmyApp.myOrg.de" as ing component "<$cm>\napplication.properties" as conf component "<$secret>\ndb-credentials ENV" as secret component "<$pvc>\n2Gi" as pvc component "<$pv>\nstorage" as pv } package "Infrastructure" { component "<$sc>\nsc app-data" as sc } Someone --> ing : req http://myApp.myOrg.de ing --> svc : port 8888 svc --> app : port 8080 app --> conf : uses app --> secret : uses app --> pvc : mount on /app/data pvc ..> pv : binds pv <.. sc : provides quota @enduml
false
true
false
false
sequence
766cd76c11072d4521dbffa195095b446e87a7d7
644fc1e9c334f0fcbdab3b545290f3cc65b5d6dc
/docs/uml/software/old/factory/Factory.puml
f55ec1f1c884014666f9480383d904aa17a1a4a1
[]
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
621
puml
@startuml class Factory { + Factory(args:string[]) - create_wrapper() : IConsole - create_device_changer(wrapper:IConsole) : IDeviceChanger - create_device_sorter(wrapper:IConsole) : IDeviceSorter - create_device_reader(wrapper:IConsole) : IDeviceReader - create_device(parser:ICommandLineParser, reader:IDeviceReader, sorter:IDeviceSorter, changer:IDeviceChanger) : Device - create_menu(dev:Device) : Menu - create_cmd_parser(args:string[]) : CommandLineParser } IFactory <|-- Factory Factory --> "Menu" Menu Factory --> "Device" Device Factory --> "CmdParser" ICommandLineParser @enduml
false
true
false
false
class
6a28f4416ac54f3ffa4648e1e62d70ddf0b40bfd
b7d2ba71058efa46eff4ed885324819fb3f99266
/src/doc/CLI_Controllers/RoomMonitoring/US440/US440_sd_RoomMonitoring.puml
99b6b9542f9eeb4ad39933ebb1b4c4700af5219d
[]
no_license
Almadanmp/backend4
3aaa5cbe453041917a510ceee83bf318499a9823
07ab3c1af9c7de6ff35cf23bf44b0e664db82f46
refs/heads/master
2022-11-25T10:30:27.184246
2019-06-30T19:26:12
2019-06-30T19:26:12
194,547,877
0
0
null
2022-11-16T11:54:00
2019-06-30T18:24:24
Java
UTF-8
PlantUML
false
false
3,186
puml
@startuml skinparam titleBorderRoundCorner 10 skinparam titleBorderThickness 3 skinparam titleBorderColor indianred skinparam titleBackgroundColor ivory skinparam FontName quicksand skinparam actor { BorderColor indianred } skinparam sequence { LifeLineBackgroundColor indianred ParticipantBackgroundColor ivory } skinparam roundcorner 10 skinparam component { arrowThickness 1 ArrowFontName Verdana ArrowColor indianred ArrowFontColor darkslategrey } title US 440 - As a Power User or as a Room Owner, I want to have a list of the instants in which the temperature fell below the comfort level in a given time interval and category autonumber actor "Power User" "Power User" -> ":RoomMonitoringUI": runUS440(RoomService, House, GeographicAreaService) activate ":RoomMonitoringUI" ":RoomMonitoringUI" -> ":RoomMonitoringUI" : updateAndDisplayUS440(RoomService, House, GeographicAreaService) ref over ":RoomMonitoringUI" Select Room end ref ref over ":RoomMonitoringUI" Select Starting Date end ref ref over ":RoomMonitoringUI" Select Ending Date end ref ref over ":RoomMonitoringUI" Select Comfort Category end ref ":RoomMonitoringUI" -> ":RoomMonitoringController": getInstantsBelowComfortInterval(House,Category,RoomDTO,StartingDate,EndingDate\n,RoomService,GeographicAreaService) activate ":RoomMonitoringController" ":RoomMonitoringController" -> RoomMapper: dtoToObject(RoomDTO) create "room:Room" activate RoomMapper RoomMapper ->> "room:Room": new deactivate RoomMapper activate "room:Room" "room:Room" --> ":RoomMonitoringController": return room deactivate "room:Room" ":RoomMonitoringController" -> ":RoomService": getReadingsInInterval(StartingDate,EndingDate,Room) ref over ":RoomMonitoringController" getReadingsInInterval(Date, Date, room) end ref activate ":RoomService" ":RoomService" --> ":RoomMonitoringController": return List<Reading> readingValues deactivate ":RoomService" alt if Category = 0 ":RoomMonitoringController" -> ":GeographicAreaService": getReadingsBelowCategoryILimit(readingValues, house) ":GeographicAreaService" --> ":RoomMonitoringController": return List<Reading> finalReadings ref over ":RoomMonitoringController" getReadingsBelowCategoryILimit() end ref else if Category = 1 ":RoomMonitoringController" -> ":GeographicAreaService": getReadingsBelowCategoryILimit(readingValues, house) ":GeographicAreaService" --> ":RoomMonitoringController": return List<Reading> finalReadings ref over ":RoomMonitoringController" getReadingsBelowCategoryIILimit() end ref else if Category = 2 ":RoomMonitoringController" -> ":GeographicAreaService": getReadingsBelowCategoryILimit(readingValues, house) ":GeographicAreaService" --> ":RoomMonitoringController": return List<Reading> finalReadings ref over ":RoomMonitoringController" getReadingsBelowCategoryIILimit() end ref end ":RoomMonitoringController" -> ":RoomMonitoringController": String output = outputUS440(finalReadings) ":RoomMonitoringController" --> ":RoomMonitoringUI": return output deactivate ":RoomMonitoringController" ":RoomMonitoringUI" --> "Power User": List of moments when temperature fell \n below the comfort value deactivate ":RoomMonitoringUI" @enduml
false
true
false
false
usecase
5733023948051ceb9dac439a4610c8086c4f0b01
7658a6afe423ee752a621096f3b142ad7133277d
/aws/DesktopAppStreaming.puml
c78052c3017cd82cdfcb6b773766c3706c70750f
[]
no_license
sky0621/try-plantuml
9bf1812c4ccd2c05a40a3253356f354efff92b9d
efb79c54685bfcc649da7840ed6cebb302c046ec
refs/heads/master
2020-04-22T13:38:33.556631
2019-10-02T15:13:27
2019-10-02T15:13:27
170,415,988
0
1
null
null
null
null
UTF-8
PlantUML
false
false
439
puml
@startuml !define AWSPUML https://raw.githubusercontent.com/milo-minderbinder/AWS-PlantUML/release/18-2-22/dist !includeurl AWSPUML/common.puml !includeurl AWSPUML/DesktopAppStreaming/AmazonAppStream2_0/AmazonAppStream2_0.puml !includeurl AWSPUML/DesktopAppStreaming/AmazonWorkSpaces/AmazonWorkSpaces.puml package "DesktopAppStreaming" { AMAZONAPPSTREAM2_0("AMAZONAPPSTREAM2_0") AMAZONWORKSPACES("AMAZONWORKSPACES") } @enduml
false
true
false
false
uml-unknown
1e4df110f71c6d1225a6b3b36aae8b2d1acfd3ca
27ba21cb9aba3ce7f6c852da969808f13854ff99
/gvQ3usecase.puml
840b264e3df673f489023d26a6fea8b23ab14cc8
[]
no_license
NormanGaviola/DATALGO--PRELIMS
c329535262165fa6546eeb702026008b70994108
9b78989448535953df3e5e2f8bf310f980d8c938
refs/heads/master
2021-04-01T06:09:05.822450
2020-03-18T07:12:38
2020-03-18T07:12:38
248,162,278
0
0
null
null
null
null
UTF-8
PlantUML
false
false
303
puml
@startuml left to right direction skinparam packageStyle rectangle actor customer actor clerk rectangle POS_Terminal { customer --(checkout) (Manage users) (checkout) -- clerk } actor bank (checkout) -- bank actor administrator (Manage users) -- administrator @enduml
false
true
false
false
usecase
f85e19990876ca735769c8467470dd368d9c58d4
87027febfeaac25bcdecd455a7c2edc0ee5edf31
/doc/uml/ts_login.puml
5cbcbb23a612f0c33437e6f2397e1d10f5065477
[]
no_license
Godotcoffee/nurupo
28ddef7fde33db357ed4480cfd6380ca937ab963
83935d31c0e94648746fadb3680a6f5a2b365874
refs/heads/master
2020-04-10T09:37:27.672966
2018-12-28T00:31:13
2018-12-28T00:31:13
160,942,585
0
0
null
null
null
null
UTF-8
PlantUML
false
false
937
puml
@startuml actor Frontend as F participant Gateway as G participant ServiceDiscovery as D participant UserService as U participant AnyService as S autonumber F -> G : Login activate G G -> D : Discovery user service activate D D --> G : IP address of user service deactivate D G -> U : Login activate U U --> G : Return a response deactivate U G --> F : Return the response with set-cookie deactivate G F -> G : Request with cookie activate G G -> D : Discovery user service activate D D --> G : IP address of user service deactivate D G -> U : Authenticate activate U U --> G : Return a response deactivate U alt authentication fail G --> F: Return response with error else authentication success G -> D : Discovery user service activate D D --> G : IP address of user service deactivate D G -> S : Dispatch the request activate S S --> G : Return a response deactivate S G --> F : Return the response end deactivate G @enduml
false
true
false
false
sequence
4da965392251c90e5491570330fae50e8f4cf719
bf3e610c8668e525aedcca58ddbe9da7c19e427e
/docs/design/rule-manager/class-diagram.puml
262717e12b02acf7640ac80ce8bcc3b2d1908331
[ "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
3,050
puml
@startuml title RuleManager Classes diagram interface RuleManager { -- buildRulesForFlowPath(flowPath : FlowPath, adapter : DataAdapter) : List<Command> buildRulesForSwitch(switchId : SwitchId, adapter : DataAdapter) : List<Command> } interface DataAdapter { -- getFlowPaths() : Map<PathId, FlowPath> getFlow(PathId) : Flow getSwitch(SwitchId) : Switch getSwitchProperties(SwitchId) : SwitchProperties } RuleManager -left- DataAdapter : consume class InMemoryDataAdapter { flowPaths : Map<PathId, FlowPath> flows : Map<PathId, Flow> switches : Map<SwitchId, Switch> switchProperties : Map<SwitchId, SwitchProperties> -- } DataAdapter <|-- InMemoryDataAdapter class OrientDbDataAdapter { pathIds : Collection<PathId> flowPathRepository : FlowPathRepository flowRepository : FlowRepository switchRepository : SwitchRepository switchPropertiesRepository : SwitchPropertiesRepository -- } DataAdapter <|-- OrientDbDataAdapter class JsonDataAdapter { file : Path -- } DataAdapter <|-- JsonDataAdapter abstract class Command { uuid : String switchId : SwitchId type : CommandType dependsOn : Collection<String> -- } RuleManager --down-- Command : return enum CommandType { Flow Meter Group } Command o--> CommandType class FlowCommand { cookie : long tableNumber : int match : Collection<Match> instructions : Instructions -- } Command <|-- FlowCommand interface Match { -- getMatchType() : MatchType getMatchValue() : long getMatchMask() : long } FlowCommand o--> Match enum MatchType { IN_PORT METADATA ... } Match o--> MatchType class InPortMatch { matchType = IN_PORT value : long mask = Long.MAX_VALUE -- } Match <|-- InPortMatch class MetadataMatch { matchType = METADATA value : long mask : long -- } Match <|-- MetadataMatch class Instructions { applyActions : List<Action> goToMeter : int goToTable : int -- } FlowCommand o--> Instructions interface Action { -- getActionType() : ActionType } Instructions o--> Action enum ActionType { POP_VLAN PUSH_VLAN GROUP PORT_OUT ... } ActionType o--> Action class PopVlanAction { actionType = POP_VLAN -- } Action <|-- PopVlanAction class PushVlanAction { actionType = PUSH_VLAN vlanId : int -- } Action <|-- PushVlanAction class GroupAction { actionType = GROUP groupId : int -- } Action <|-- GroupAction class PortOutAction { actionType = PORT_OUT port : int -- } Action <|-- PortOutAction class MeterCommand { id : int rate : int burst : int flags : Set<Flag> -- } Command <|-- MeterCommand class GroupCommand { id : int groupType : GroupType buckets : List<Bucket> -- } Command <|-- GroupCommand class Bucket { watchGroup : WatchGroup watchPort : WatchPort actions : List<Action> -- } GroupCommand o--> Bucket Bucket o--> Action @enduml
false
true
false
false
sequence
e8ad9730a22a1a34cff5b177dfd183551cbae4b8
b120fd65ff39c926b71e8cd50aad1ba2697a1ca6
/Chapter01-StrategyPattern-1/src/StrategyPattern.puml
06f47adf77472835284fddd56c4d08190ba18cdc
[]
no_license
frog97/java-design-pattern
e8106eaceb213ab3f5c83f273d997fdf56783e09
2a03c7071b650aaf82c7becb2f16ceed650a95df
refs/heads/master
2023-03-30T17:51:21.154591
2021-04-11T11:32:51
2021-04-11T11:32:51
351,084,280
0
0
null
null
null
null
UTF-8
PlantUML
false
false
382
puml
@startuml Class Client Client : strategy : Strategy Interface Strategy Strategy : AbstractAlgorithm() : void Class StrategyA StrategyA : AbstractAlgorithm() : void Class StrategyB StrategyB : AbstractAlgorithm() : void Class StrategyC StrategyC : AbstractAlgorithm() : void Client *-- Strategy Strategy <|-- StrategyA Strategy <|-- StrategyB Strategy <|-- StrategyC @endml
false
true
false
false
class
ce8e0190a87e7f542b337a193826b1c6cac0fbe1
ae8d603e1a8a158e234db029994362498bd676cf
/Dossier de conception/V1/V1vueClasse.puml
dbe79776f42f828c49971c67364d0b1afb13b5b6
[]
no_license
LeaMercier/Creation-of-a-mini-editor
91a29f663c0ba822ec6b23aaaf84ae2058738715
eee5fcd95a05ea43a43929a2c1d1169b8968eaa4
refs/heads/master
2023-04-08T11:16:27.934645
2021-04-17T11:13:04
2021-04-17T11:13:04
358,853,598
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,889
puml
@startuml mediatheque 'Partie pour l'interface graphique, front-end' Interface ActionListener{ } class JButon{ } abstract class Bouton{ actionPerformed() getPreferredSize() addActionListener() effectuModif() } class BoutonColler { } class BoutonCopier { } class BoutonCouper { } class ComponentTexte{ getPreferredSize() updateSelection() updateBuffer() mouseDagged() mouseMoved() textValueChanged() update() } class MainActivity{ double XGLOBAL double YGLOBAL main() } class Window{ double x double y init() } ActionListener <|-- Bouton JButon <|-- Bouton Bouton <|-- BoutonColler Bouton <|-- BoutonCopier Bouton <|-- BoutonCouper MainActivity *-- Window: "0..1" Window *-- BoutonColler: "0..1" Window *-- ComponentTexte: "0..1" Window *-- BoutonCopier: "0..1" Window *-- BoutonCouper: "0..1" 'Partie pour la gestion interne du programme, back-end' Interface ModifieTexte { undo() redo() } abstract class ExpaceMemoire{ String contenu get() affecte() } class Buffer{ } class PressePapier{ } ExpaceMemoire <|-- Buffer ExpaceMemoire <|-- PressePapier class Sélection{ int start int stop setStart() setEnd() getStart() getEnd() } abstract class Action{ } class Copier{ copier() } class Coller{ String sauvegarde String annulation coller() } class Couper { String sauvegarde String annulation couper() } ModifieTexte <|-- Copier ModifieTexte <|-- Coller Action <|-- Copier Action <|-- Coller Action <|-- Couper Action-PressePapier:"cache" Action-Sélection:"selection" Action-Buffer:"buffer" Bouton-PressePapier : "cache" Bouton-Sélection:"selection" Bouton-Buffer:"buffer" BoutonColler-ComponentTexte:"texte" BoutonCouper-ComponentTexte:"texte" ComponentTexte-Sélection:"selection" ComponentTexte-Buffer:"memoire" @enduml
false
true
true
false
class