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
aee6c2b805e056d031c4258b3091877483d23caa
90696609384bca174520e749760921983d3c5d26
/app/src/main/java/com/code/group3finalproject/ui/dashboard/dashboard.plantuml
b482a8854890198e0c49231e2f02b2419c529593
[]
no_license
guer1830/Group3FinalProject
b66e799ad3296bf6914f271239c349bdd58a026a
9a1cf7205e283cc13ccc14913463438390a62ed9
refs/heads/master
2023-07-01T10:51:46.699456
2021-08-08T17:54:34
2021-08-08T17:54:34
373,564,181
0
0
null
2021-08-07T05:21:36
2021-06-03T15:56:15
Java
UTF-8
PlantUML
false
false
2,683
plantuml
@startuml title __DASHBOARD's Class Diagram__\n namespace com.code.group3finalproject { namespace ui.dashboard { class com.code.group3finalproject.ui.dashboard.DashboardFragment { {static} - NEW_STOCK_ACTIVITY_REQUEST_CODE : int + onActivityResult() + onCreateOptionsMenu() + onCreateView() + onDestroyView() } } } namespace com.code.group3finalproject { namespace ui.dashboard { class com.code.group3finalproject.ui.dashboard.DashboardViewModel { - mAllStocks : LiveData<List<Stock>> + DashboardViewModel() + delete() + insert() ~ getAllStocks() ~ searchStocks() } } } namespace com.code.group3finalproject { namespace ui.dashboard { class com.code.group3finalproject.ui.dashboard.StockRecycleAdapter { - stocks : List<Stock> + StockRecycleAdapter() + deleteStock() + filter() + getItem() + getItemCount() + onBindViewHolder() + onCreateViewHolder() + refreshData() } } } namespace com.code.group3finalproject { namespace ui.dashboard { class com.code.group3finalproject.ui.dashboard.StockViewHolder { + stockPrice : TextView + stockSymbol : TextView + StockViewHolder() + bind() {static} ~ create() } } } com.code.group3finalproject.ui.dashboard.DashboardFragment -up-|> androidx.fragment.app.Fragment com.code.group3finalproject.ui.dashboard.DashboardFragment o-- com.code.group3finalproject.ui.dashboard.StockRecycleAdapter : StockRecycleAdapter com.code.group3finalproject.ui.dashboard.DashboardFragment o-- com.code.group3finalproject.databinding.FragmentDashboardBinding : binding com.code.group3finalproject.ui.dashboard.DashboardFragment o-- com.code.group3finalproject.ui.dashboard.DashboardViewModel : dashboardViewModel com.code.group3finalproject.ui.dashboard.DashboardViewModel -up-|> androidx.lifecycle.AndroidViewModel com.code.group3finalproject.ui.dashboard.DashboardViewModel o-- com.code.group3finalproject.db.dao.StockRepository : mStockRepository com.code.group3finalproject.ui.dashboard.StockRecycleAdapter -up-|> androidx.recyclerview.widget.RecyclerView.Adapter com.code.group3finalproject.ui.dashboard.StockViewHolder -up-|> androidx.recyclerview.widget.RecyclerView.ViewHolder 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
ce8f49e8a807449b5a13d4aa36803d95afe336b1
84be3c06c433d9d9a4559dd4e016b26d2f28e4fa
/uml/用户中心类图.puml
0b9e481ad3d06baab2b4e4b678e579c664231baf
[]
no_license
lclcharm/college_parent
f812e546624fd6b2a16c1ad7c12beca1bbdb68ed
9f1c846a106704d4467792653dedca5f33d1bae6
refs/heads/master
2023-06-06T05:37:12.015672
2021-06-22T14:19:29
2021-06-22T14:19:29
379,296,544
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,313
puml
@startuml skinparam classAttributeIconSize 0 class ApiMemberController{ register() login() getLoginInfo() } interface MemberService{ register() login() } class MemberServiceImpl{ register() login() } interface MemberMapper{ selectRegisterNumByDay() } class R{ -success -code -message -data +ok() +error() +setResult() +success() +message() +code() +data() } enum ResultCodeEnum{ -success; -code; -message; +ResultCodeEnum() } class Member{ -openid; -mobile; -password; -email; -nickname; -sex; -age; -avatar; -sign; -disabled; -deleted; +getXxx() +setXxx() } class RedisUtil{ -redisTemplate +set() +get() } class MD5{ +encrypt() } class JwtUtils{ -APP_SECRET -ADVANCE_EXPIRE_TIME +getKeyInstance() +getJwtToken() +checkJwtTToken() } class JwtInfo{ -id; -nickname; -avatar; } class BaseEntity{ -id; -gmtCreate; -gmtModified; } class CollegeException{ -code +CollegeException() +toString() } class ApiWxController{ -ucenterProperties -memberService +genQrConnect() +callback() } class UcenterProperties{ -appId; -appSecret; -redirectUri; } class LoginVo{ -userInfo; -password; } class MemberQueryVo{ -nickname; -sex; -joinDateBegin; -joinDateEnd; } class RegisterVo{ -nickname; -mobile; -email; -password; -code; } class UpdateVo{ -id; -nickname; -mobile; -email; -code; -oldPassword; -newPassword; -avatar; -sex; -age; -sign; } ApiWxController .> UcenterProperties ApiWxController --> MemberService ApiWxController --> CollegeException ApiMemberController ---> MemberService ApiMemberController ----> CollegeException ApiMemberController ...> R ApiWxController ...> R MemberService <|-- MemberServiceImpl BaseEntity <|- Member RuntimeException <|-- CollegeException MemberServiceImpl -> MemberMapper ApiMemberController ---> RedisUtil ApiMemberController ---> JwtUtils JwtUtils ..> JwtInfo CollegeException --> ResultCodeEnum MemberServiceImpl ..> MD5 ApiMemberController ..> LoginVo ApiMemberController .> MemberQueryVo ApiMemberController ..> RegisterVo ApiMemberController .> UpdateVo MemberMapper ..> Member @enduml
false
true
false
false
class
b39c184bb1092ae2fbca2d797a8a63f13d7defe7
d68b1330ef8ce59c635f4692417a9192d5206942
/framework/framework.plantuml
14edf0a9bc3a357a2c12cb382287c286643e6bb0
[ "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
6,766
plantuml
@startuml title __FRAMEWORK's Class Diagram__\n namespace no.ntnu.idi.apollo69framework { class no.ntnu.idi.apollo69framework.Apollo69Framework { } } namespace no.ntnu.idi.apollo69framework { class no.ntnu.idi.apollo69framework.GameObjectDimensions { } } namespace no.ntnu.idi.apollo69framework { class no.ntnu.idi.apollo69framework.HelperMethods { } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { class no.ntnu.idi.apollo69framework.network_messages.DeviceInfo { } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { class no.ntnu.idi.apollo69framework.network_messages.PlayerDead { } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { class no.ntnu.idi.apollo69framework.network_messages.PlayerInQueue { } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { class no.ntnu.idi.apollo69framework.network_messages.PlayerInput { } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { enum PlayerInputType { } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { class no.ntnu.idi.apollo69framework.network_messages.PlayerMatchmade { } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { class no.ntnu.idi.apollo69framework.network_messages.PlayerSpawn { } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { class no.ntnu.idi.apollo69framework.network_messages.ServerMessage { } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { class no.ntnu.idi.apollo69framework.network_messages.UpdateMessage { } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.AsteroidDto { } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.DimensionDto { } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ExplosionDto { } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { enum GemType { } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PickupDto { } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PlayerDto { } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto { } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupDto { } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { enum PowerupType { } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.RotationDto { } } } } namespace no.ntnu.idi.apollo69framework { namespace network_messages { namespace data_transfer_objects { class no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ShotDto { } } } } no.ntnu.idi.apollo69framework.network_messages.PlayerInput o-- no.ntnu.idi.apollo69framework.network_messages.PlayerInputType : type no.ntnu.idi.apollo69framework.network_messages.PlayerSpawn o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.AsteroidDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ExplosionDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.DimensionDto : dimensionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ExplosionDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PickupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.GemType : gemType no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PickupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PlayerDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PlayerDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.RotationDto : rotationDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PowerupType : powerupType no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.ShotDto o-- no.ntnu.idi.apollo69framework.network_messages.data_transfer_objects.PositionDto : positionDto 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
a33db3b07a7ddcc6face8dd2574bbe148116c210
377e1fc74b791f43a00886483d517aa084336d4b
/architecture.puml
dd05563332b7aac4373f2419697a241f60699f59
[]
no_license
rfanazhari/php-login-management
d50754e5b442d7e39d973d5ae5ce37d491f7f86b
ab74f609cbfb3fd87e992a513fbaffdfa6664734
refs/heads/master
2023-08-24T16:59:46.559321
2021-11-03T08:40:33
2021-11-03T08:40:33
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
578
puml
@startuml actor "User" as user node "PHP Login Management" { node "Model" as model node "Domain" as domain node "Controller" as controller node "View" as view node "Service" as service node "Repository" as repository } database "MySQL" as mysql user --> controller : 1 controller --> model : 2 controller --> service : 3 service --> repository : 4 repository --> domain : 5 repository --> mysql : 6 controller --> view : 7 controller --> user : 8 @enduml
false
true
false
false
sequence
fdb7681d138dad2e86ad798c1e07b023c086b4c4
f7389ede7c743b8ce3d174eee24ebcab316354f6
/Diagrammer/Robo_Sumo_Battle/Communication/Sekvensdiagrammer/Wifi/Wifi_closeHotspot.plantuml
0769a2a8b8ab75ca61605912d9d56d9a4a0f4a6c
[]
no_license
Solvgraa-mager/E3PRJ3
7e2b70775c0d8b8312bc893e0c9014fd766af9b0
fb507b5528417459714c00b73c75378d6465af19
refs/heads/master
2023-01-31T11:01:30.966313
2020-12-18T10:28:55
2020-12-18T10:28:55
294,479,612
0
1
null
null
null
null
UTF-8
PlantUML
false
false
399
plantuml
@startuml title Wifi::closeHotspot() participant UC1 participant Wifi actor OS #red actor Connman #red UC1 -> Wifi : closeHotspot() Wifi -> OS : connman-hotspot disable OS -> Connman : connman-hotspot disable OS <-- Connman opt faild to disable hotspot OS --> Wifi : return -1 | 127 Wifi --> UC1 : return -1. (faild to disable hotspot) end UC1 <-- Wifi : return 0 (hotspot diabled) @enduml
false
true
false
false
usecase
3f0870093b17afd8ea5a96330c83b79cb7cdf51b
83a1a7f2e85781a5e910591c60cb84d31c233c11
/conception/diag_classe_package_engine.plantuml
9a90e14256fff35b5acea48f56aa5b7e31e29019
[]
no_license
AntoineCourtil/CAD2018_Laraclette
3590a7649826eeab47083c0ea79f8b62393ae781
ab0fc5eb473758a2bbc2241853bfa6d2de5a33b5
refs/heads/master
2021-05-09T14:42:38.996159
2018-04-26T13:29:49
2018-04-26T13:29:49
119,071,004
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,000
plantuml
@startuml title Moteur du jeux title Diagramme de classe du package engine package engine { class DrawingPanel { + paint(g : Graphics) + drawGame() } DrawingPanel --> JPanel DrawingPanel --"1" GamePainter interface Game { + evolve(userCmd : Cmd, userClick : Point2D); + isFinished() : boolean } interface GameController { + getCommand() : Cmd + getClick() : Point2D } interface GamePainter { + draw(BufferedImage image) + getWidth() : int + getHeight() : int } class GameEngineGraphical { + run() } GameEngineGraphical --"1" Game GameEngineGraphical --"1" GamePainter GameEngineGraphical --"1" GameController GameEngineGraphical --"1" GraphicalInterface class GraphicalInterface { + paint() } GraphicalInterface --"1" DrawingPanel GraphicalInterface --"1" GamePainter GraphicalInterface --"1" GameController } @enduml
false
true
false
false
class
79ddefd249a0ad1dd4a11a7cbf3cf2ab06aa5b5e
7638fb3218b31ffa418b07707e7760d3872f1838
/diagrams/datadog_core_metrics_04.puml
68aac4c0b3d73358a2a58ff91d89c22cbfa19a5f
[ "Apache-2.0" ]
permissive
d3sw/conductor
68e594b8dc1a794cb7d421e809ba135be13733b6
5275bdcaf3656e5e50ef8c15fb2beeba1720ac82
refs/heads/main
2023-09-04T00:50:19.087947
2023-08-01T18:30:47
2023-08-01T18:30:47
95,158,890
3
0
Apache-2.0
2023-09-14T12:18:30
2017-06-22T21:41:59
Java
UTF-8
PlantUML
false
false
3,239
puml
@startuml 'https://plantuml.com/sequence-diagram autonumber participant "Conductor\nEventProcessor.java" as evpr participant "Conductor\nSharedShotgunQueue.java" as ssqq participant "Conductor\nMetricService.java" as msj participant "External Service\ndatadog.service.{env}" as dds participant "SaaS\nData Dog" as saas alt Process received message (EventProcessor.java) evpr -> evpr: handle invoked with received message evpr -> evpr: Evaluate handler's condition evpr -> evpr: Skip execution ? activate evpr evpr -> msj: Invokes eventExecutionSkipped(handler, subject) msj -> dds: Increment counter value (metric:deluxe.conductor.event.execution.skipped) dds -> saas: Pushes metrics deactivate evpr evpr -> evpr: Evaluate tags and find any running workflows activate evpr evpr -> msj: No running workflows - invokes eventTagsMiss(handler, subject) msj -> dds: Increment counter value (metric:deluxe.conductor.event.tags.miss) dds -> saas: Pushes metrics evpr -> msj: Otherwise - invokes eventTagsHit(handler, subject) msj -> dds: Increment counter value (metric:deluxe.conductor.event.tags.hit) dds -> saas: Pushes metrics deactivate evpr evpr -> evpr: Proceed to evaluate actions loop For all handler's actions evpr -> evpr: Evaluate action condition evpr -> evpr: Skip execution ? activate evpr evpr -> msj: Invokes eventActionSkipped(handler, subject, action) msj -> dds: Increment counter value (metric:deluxe.conductor.event.action.skipped) dds -> saas: Pushes metrics deactivate evpr end evpr -> evpr: Execute actions loop For all handler's actions evpr -> evpr: Execute action evpr -> evpr: Action success ? activate evpr evpr -> msj: Invokes eventActionExecuted(handler, subject, action, execTime) msj -> dds: Increment counter value (metric:deluxe.conductor.event.action.executed) dds -> saas: Pushes metrics msj -> dds: Record time (metric:deluxe.conductor.event.action.executed.time) dds -> saas: Pushes metrics deactivate evpr evpr -> evpr: Action failed ? activate evpr evpr -> msj: Invokes eventActionFailed(handler, subject, action) msj -> dds: Increment counter value (metric:deluxe.conductor.event.action.failed) dds -> saas: Pushes metrics deactivate evpr end evpr -> evpr: Evaluate action's result evpr -> evpr: Redelivery requested ? activate evpr evpr -> msj: Invokes eventRedeliveryRequested(handler, subject) msj -> dds: Increment counter value (metric:deluxe.conductor.event.redelivery.requested) dds -> saas: Pushes metrics deactivate evpr evpr -> evpr: Execution failed ? activate evpr evpr -> msj: Invokes eventExecutionFailed(handler, subject) msj -> dds: Increment counter value (metric:deluxe.conductor.event.execution.failed) dds -> saas: Pushes metrics deactivate evpr end alt Messages received (SharedShotgunQueue.java) ssqq -> ssqq: onMessage invoked for received message ssqq -> msj: Invokes eventReceived (subject) msj -> dds: Increment counter value (metric:deluxe.conductor.event.received) dds -> saas: Pushes metrics end alt Messages published (SharedShotgunQueue.java) ssqq -> ssqq: publish invoked for publishing message ssqq -> msj: Invokes eventPublished (subject) msj -> dds: Increment counter value (metric:deluxe.conductor.event.published) dds -> saas: Pushes metrics end @enduml
false
true
false
false
sequence
2e03a8990f029c5014eb7c8b6f26fe1158f5b7dd
e2d7c6f90469fa874a157acba102b9afdaf420c9
/src/main/java/design/patten/facade/facade.puml
e15b13ee8fe93111715efafdda12bd9bda10b6fd
[]
no_license
Asituyasi/TestPro
59ccb89a6672b30c2917eb4521f6d3d1845cf88c
18ec9b5b42f925864e20d547e56a8d5559e4e704
refs/heads/master
2020-04-26T07:45:54.089590
2019-03-21T11:40:02
2019-03-21T11:40:02
173,403,396
1
0
null
null
null
null
UTF-8
PlantUML
false
false
228
puml
@startuml class SubSystemA class SubSystemB class SubSystemC class Facade { - SubSystemA subSystemA - SubSystemB subSystemB - SubSystemC subSystemC } Facade --> SubSystemA Facade --> SubSystemB Facade --> SubSystemC @enduml
false
true
false
false
class
83219fd47a9bf14af007c7614e764de0adb4edb5
817bcf63e099537e7e982dd0bd1e938505704d24
/src/main/java/com/ubb/locexchange/diagrams/findProviderAndShareLocation.puml
3776fa99a396d58a22e1053ad03b08e82bba29f6
[]
no_license
ciprian197/locexchange
6179d8b9a6f4c25bc48596889ce9ee1d4a60b5cf
29935a22cab10e56362dd64d3f17760b0128ffd7
refs/heads/master
2022-05-05T14:42:23.777622
2022-03-30T08:41:55
2022-03-30T08:41:55
126,591,269
1
0
null
2020-06-21T14:44:15
2018-03-24T11:05:26
Java
UTF-8
PlantUML
false
false
989
puml
@startuml participant Client boundary UserController control UserService control DistanceExternalService database MongoDb database DistanceMatrixAPI Client -> UserController: findClosestProvider() UserController -> UserService: findClosestAvailableProvider() UserService -> UserService: findClosestAvailableProviders() UserService -> MongoDb: geoNear() MongoDb --> UserService: closest available providers UserService -> DistanceExternalService: getClosestUser() DistanceExternalService -> DistanceExternalService: getOrigins() DistanceExternalService -> DistanceMatrixAPI: getDistanceMatrix() DistanceMatrixAPI --> DistanceExternalService: distances between providers and client DistanceExternalService ->DistanceExternalService: findClosest() DistanceExternalService --> UserService: closest provider UserService -> MongoDb: save() MongoDb --> UserService: provider with updated status UserService --> UserController: closest provider UserController --> Client: closest provider @enduml
false
true
false
false
sequence
e7bde32bc4fc53ccf0ef436d6d99c7bf5692b406
d7a1079c29c96423494f9c4181ca9544235c0162
/doc/architecture/umls/general-presentation.plantuml
29f37407225500b145e28520ae3920428708a7e1
[ "MIT" ]
permissive
sqglobe/SecureDialogues
ede0431b916a7e30d221edd3994b88c5d6afd6d0
bde56c7a62fb72b1cdfba8cebc0a770157b5f751
refs/heads/dev
2020-05-15T01:50:18.416099
2020-05-01T08:36:24
2020-05-01T08:36:24
182,036,134
3
3
MIT
2020-04-15T19:46:54
2019-04-18T07:14:51
C++
UTF-8
PlantUML
false
false
129
plantuml
@startuml [gui] --> [messages] [gui] --> [encryption] [messages] --> [encryption] [main] --> [gui] [main] --> [messages] @enduml
false
true
false
false
uml-unknown
45d996b6bc0dcbe0e930e5741cffa22bff7ed2cb
81aae10a08cadcd596b48c2cfd8b1776715ca429
/docs/diagrams/UML/CommandClassDiagram.puml
2af20e46c12ee9b800844bbb64d37260ae715d9c
[]
no_license
tobiasceg/tp
46a4d0e13d8f96ef451902cc27f78cb1ed6dcb9b
128552787fe3d325115ab2d08bfe2db668f79df3
refs/heads/master
2023-01-24T12:07:02.132563
2020-10-26T03:11:39
2020-10-26T03:11:39
300,105,637
0
0
null
2020-10-01T01:24:17
2020-10-01T01:24:16
null
UTF-8
PlantUML
false
false
1,165
puml
@startuml abstract class Command { PromptType promptType PromptType getPromptType() void setPromptType() CommandResult execute() } class CommandResult { String feedbackToUser } abstract class FilterCommand abstract class AddCommand class AddModuleCommand class AddTaskCommand abstract class DeleteCommand class DeleteModuleCommand class DeleteTaskCommand abstract class EditCommand class EditModuleCommand class EditTaskCommand class DoneCommand class UndoCommand class HelpCommand class ListCommand class ExitCommand class IncorrectCommand enum PromptType { WARNING, INFORMATIVE, NONE, EDIT } AddCommand <|-- AddModuleCommand AddCommand <|-- AddTaskCommand DeleteCommand <|-- DeleteModuleCommand DeleteCommand <|-- DeleteTaskCommand EditCommand <|-- EditModuleCommand EditCommand <|-- EditTaskCommand Command <|-- AddCommand Command <|-- DeleteCommand Command <|-- EditCommand Command <|-- FilterCommand Command <|-- DoneCommand Command <|-- HelpCommand Command <|-- ListCommand Command <|-- UndoCommand Command <|-- ExitCommand Command <|-- IncorrectCommand Command *-- PromptType Command <.. CommandResult @enduml
false
true
false
false
class
b7d64b6212389df9a21b89880836998cae7620fa
b7d2ba71058efa46eff4ed885324819fb3f99266
/src/doc/CLI_Controllers/EnergyConsumption/US752/US752loop_sd_EnergyConsumption.puml
85bee79e228cf9b3ddb2fb2f5929a55f14dc2af5
[]
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
812
puml
@startuml title US752 \n I want to estimate the total energy used in heating water in a given day \n \n Loop to receive data from user for all water heaters on the house. autonumber actor User loop all house water heaters EnergyConsumptionUI --> User: request cold water temperature activate EnergyConsumptionUI User --> EnergyConsumptionUI: cold water temperature EnergyConsumptionUI --> User: request volume of water to heat User --> EnergyConsumptionUI: volume of water to heat EnergyConsumptionUI -> EnergyConsumptionController: configureHeater(Device, double, double) deactivate EnergyConsumptionUI EnergyConsumptionController -> Device: setAttributeValue(String, double) EnergyConsumptionController -> Device: setAttributeValue(String, double) end @enduml
false
true
false
false
usecase
857a9e13cb4fc0ae039fcff771fbe462f2a74a40
d64b3f0b3940477d3c1d8b60f8e5fde36dc2cfe2
/src/uni-logger/diagram.puml
fc060ae4ab22b341c16d4d2199014d73752588b1
[]
no_license
Jeff-Tian/uni
91462ce664b826b1d2af5a109ddfcc8eea488047
ee80db41fb0172bcdbd0298ba1c453ad69eb2467
refs/heads/master
2023-07-20T00:29:02.456604
2019-07-16T11:14:48
2019-07-16T11:14:48
194,511,684
0
0
null
2023-07-06T15:01:31
2019-06-30T12:08:29
TypeScript
UTF-8
PlantUML
false
false
656
puml
@startuml title uni-logger package Logger <<Node>> { package Uni <<Node>> { class RequestLogger class CommonLogger } class Logger { +Array transports } UniLogger <|-- RequestLogger: Inheritance UniLogger <|-- CommonLogger: Inheritance Logger <|-- UniLogger: Inheritance Logger <|-- ConsoleLogger: Inheritance } package Transport <<Node>> { class Transport class FileTransport class ConsoleTransport Transport <|-up- FileTransport: Inheritance Transport <|-up- ConsoleTransport: Inheritance } ConsoleTransport <|-- ConsoleLogger: use ConsoleTransport <|-- UniLogger: use FileTransport <|-- UniLogger: use @enduml
false
true
false
false
class
2973f7d3b9447daa3ef3718199f5796e92c3159f
8b36b40eb98954cd68ce9c2dc105e1faddfc4e4e
/event.puml
a2c6a88c456b085fa199b5570a570a2e418d6312
[]
no_license
saintshaga/publisher-event-listener
3b05136f1335e7515c6a58c62bdbb3dc42d9920c
c727dda1c7ef65550daf29f58ca049e83d3b97a8
refs/heads/master
2021-06-13T10:38:15.119532
2019-06-28T08:16:28
2019-06-28T08:16:28
168,821,379
0
0
null
2021-03-31T20:55:49
2019-02-02T10:41:26
Java
UTF-8
PlantUML
false
false
1,056
puml
@startuml class EventObject note top of EventObject It's java.util class end note abstract class BusinessEvent { - long timestamp --Constructor-- BusinessEvent(Object source) --method-- + long getTimestamp() } EventObject <|-- BusinessEvent interface EventListener note top of EventListener It's java.util class end note interface BusinessListener<E extends BusinessEvent> { + void onApplicationEvent(E event) } EventListener <|-- BusinessListener interface BusinessPublisher{ + void publishEvent(BusinessEvent event) } class BusinessPublisherImpl { } BusinessPublisher <|-- BusinessPublisherImpl interface BusinessEventMulticaster { + void addBusinessListener(BusinessListener<?> listener) + void removeBusinessListener(BusinessListener<?> listener) + void removeAllListeners() + void multicastEvent(BusinessEvent event) } class SimpleBusinessEventMulticaster BusinessEventMulticaster <|-- SimpleBusinessEventMulticaster BusinessPublisherImpl --> SimpleBusinessEventMulticaster: > use @enduml
false
true
false
false
sequence
533e4f27421d1cf358e855b4c6b3eeaab71d2613
ec745eb69f911ad9cb2211c947d153cd57761d8a
/src/main/resources/uml/isptool.puml
6d152777ffaacbdf042dfbfbe7a7fdcd728a192c
[]
no_license
lindong4067/test-demo
4a831be13f966f0f238f962b532e3f33e4c7eed3
24a8f2c9e1949d8062609b8b47e82c91ab4b3d98
refs/heads/master
2021-06-03T14:50:18.305976
2019-12-26T04:19:15
2019-12-26T04:19:15
139,565,345
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,266
puml
@startuml Consul -> OAMCenter: notify service down OAMCenter -> Cache: check downtime Cache --> OAMCenter: downtime not exist OAMCenter -> downtime.tmp: check file & read downtime downtime.tmp --> OAMCenter: file exist OAMCenter -> Cache: write downtime to cache downtime.tmp --> OAMCenter: file not exist OAMCenter -> downtime.tmp: write downtime to file OAMCenter -> Cache: write downtime to cache Cache --> OAMCenter: downtime exist OAMCenter -> OAMCenter: no operation Consul -> OAMCenter: notify service up OAMCenter -> downtime.tmp: check file & read downtime downtime.tmp --> OAMCenter: file exist OAMCenter -> planned.tmp: check file planned.tmp --> OAMCenter: file exist OAMCenter -> Postgres: downtime restoretime planned planned.tmp --> OAMCenter: file not exist OAMCenter -> Postgres: downtime restoretime unplanned downtime.tmp --> OAMCenter: file not exist OAMCenter -> OAMCenter: no operation CLI -> OAMCenter: planned OAMCenter -> planned.tmp: check file exist planned.tmp --> OAMCenter: file exist OAMCenter -> planned.tmp: delete file planned.tmp --> OAMCenter: file not exist OAMCenter -> OAMCenter: no operation CLI -> OAMCenter: compress OAMCenter -> Postgres: calculate availability OAMCenter -> Postgres: backup isp data and delete all @enduml
false
true
false
false
sequence
83827ccd2429d9c883162db4bb4af5b6a3e6e01f
0c5e47ecc8c280c7b6c41e585aace67524473bd4
/src/main/resources/uebung4/exercise012d2.puml
9a3e06d0054f3f9e0372f61c139450653870bbe1
[]
no_license
phbenisc/msiComplexTheorie
bad88319e1ffe89bcb9c09d71b48447afab12897
24ba533c2915308f1edc304d37583cbed76c386f
refs/heads/master
2023-02-27T21:38:58.384128
2021-02-01T07:57:27
2021-02-01T07:57:27
306,917,234
0
0
null
null
null
null
UTF-8
PlantUML
false
false
373
puml
@startuml skinparam monochrome true left to right direction skinparam state { BackgroundColor<<A>> Green BorderColor Gray } [*] --> n0 'aa state "nein" as n0 <<A>> state "nein" as n1 <<A>> state "nein" as n2 <<A>> state "nein" as n3 state "ja" as j0 n0: 0 n1: 2 n2: 3 n3: 4 j0: 1 n0 --> n0: b n0 --> n1 n1 --> n1: a n1 --> n2: b n2 --> n3: a n3 --> j0: a @enduml
false
true
false
false
sequence
7dcaaa572a110de64a04227a541b1553f504be5e
e7aab27dc3b56328c92d783d7fa8fce12d8ac544
/kapitler/media/uml-class-administrativenhet.iuml
f967040778b222d8d8f86c354f412d20e33bc6e6
[]
no_license
petterreinholdtsen/noark5-tjenestegrensesnitt-standard
855019a61c8679a8119549e2824fa32ecc669e66
4673ba7134d83a6992bba6f9036c521c7ae1897f
refs/heads/master
2023-06-11T12:08:52.134764
2023-03-05T11:05:21
2023-03-05T11:05:21
160,586,219
0
0
null
null
null
null
UTF-8
PlantUML
false
false
370
iuml
@startuml class Admin.AdministrativEnhet { +systemID : SystemID [0..1] +administrativEnhetNavn : string +kortnavn : string [0..1] +opprettetDato : datetime +opprettetAv : string [0..1] +avsluttetDato : datetime [0..1] +administrativEnhetsstatus : string +referanseOverordnetEnhet : SystemID [0..1] +virksomhetsspesifikkeMetadata : any [0..1] } @enduml
false
true
false
false
class
a0a815a5e31b9e84422d5158c1a420d3c8ec8355
cbae2c225bd245204a40e41a25415c41604e6219
/rasd/statecharts/statechart_new_event.plantuml
8e504a676689be5ced5771c736a36fe13ea3664b
[]
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
876
plantuml
@startuml [*] -right-> NewEvent NewEvent -right-> [*] NewEvent -up-> AddParticipant AddParticipant --> AddParticipant AddParticipant --> NewEvent NewEvent -up-> AddRecurrencyInformation AddRecurrencyInformation -> NewEvent NewEvent --> ScheduleTrip ScheduleTrip --> ChooseRoute ChooseRoute --> [*] NewEvent: Input basic information (name, place, duration) ScheduleTrip: Schedule the trip and check if it's possible\nto be in time given the previous event.\nSee separate detailed statechart. ChooseRoute: The user can choose the route he prefer based on the\ntime needed, the cost, the emission of CO2 and if\nhe want to use sharied means AddParticipant: For sharing the event with other\npeople (also with user that not\nnecessarily have an account on\nTravlendar+ AddRecurrencyInformation: For recurring events (e.g. repeat every monday) @enduml
false
true
false
false
state
23ef8a70ea82f81efbb91af9a4efa8196c43b39b
605cac101260b1b451322b94580c7dc340bea17a
/malokhvii-eduard/malokhvii02/doc/plantuml/ua/khpi/oop/malokhvii02/data/DataContainer.puml
fb5bc04f2251b28babdfb49ff588e6979ab42338
[ "MIT" ]
permissive
P-Kalin/kit26a
fb229a10ad20488eacbd0bd573c45c1c4f057413
2904ab619ee48d5d781fa3d531c95643d4d4e17a
refs/heads/master
2021-08-30T06:07:46.806421
2017-12-16T09:56:41
2017-12-16T09:56:41
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
355
puml
@startuml interface DataContainer { {abstract} +collectData(PrintStream, Scanner): DataCollectionStatus {abstract} +computeData(): DataComputationStatus {abstract} +getContainerName(): String {abstract} +prepareDataDescription(): String {abstract} +prepareDataVisualization(): String } @enduml
false
true
false
false
class
4ffda7fe6a9ccf6b9dc253bc4c22fbdfcfefbce1
98577189e0191c1a2d74b7541d3681f3e2c630cb
/diagrams/sequence.puml
a14f9db8c25413d0364cf903e99cf34807adbad4
[]
no_license
dmashchenko/isac-workshop-01
43b109b80c01261fa9c4a5163b880f06b0af1beb
5e3bd29f598d7df681fc5b0ee4676f7a1e521a62
refs/heads/main
2023-08-24T08:36:09.878466
2021-10-08T17:28:00
2021-10-08T21:29:22
405,921,816
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,174
puml
@startuml skinparam ParticipantPadding 20 skinparam ParticipantFontSize 20 skinparam QueueFontSize 20 skinparam BoxPadding 30 actor Client as client participant "App" as app box "Bank" participant "Digital" as digital queue "Kafka" as kafka participant "Core" as core end box group active loan accounts mirror core -> kafka: publish accounts digital -> kafka: pull data digital -> digital: store end group payment client -> core: payment core -> kafka: {\n client_id,\n loand_id,\n payment:{}, \n payment_schedule:{},\n loan_details:{}\n} digital -> kafka: pull digital -> digital: store end group overdue loop core -> core: overdue ? core -> kafka: {\n client_id,\n loand_id,\n payment:{}, \n payment_schedule:{},\n loan_details:{}\n} digital -> kafka: pull digital -> digital: store end group home page client -> app: logged in app -> digital: sync app -> app: store client <- app: show loans view end group notification loop [each day] app -> app: notify ? client <- app: show notification end group overdue notification loop [each day] app -> app: (payment day + 1 day) ? app -> digital: get updates if overdue app -> client: notify if overdue end @enduml
false
true
false
false
usecase
d3426162b00ec3f4651eb78ea1609958c01da826
112e511928937b8ec60004ca94f1dd996bd9fd1a
/Documents/Shos.Chatter.Server/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.puml
9296977d01ed8cd745a7320ada91a07ef969b465
[ "MIT" ]
permissive
Fujiwo/Shos.Chatter.NetFramework
2c143b390b1588e38e5967a8b8f1c51bf5487362
3c7061398e790c2fc856585fdbf60a18705f11e0
refs/heads/master
2023-03-23T09:31:02.071913
2021-03-11T05:27:48
2021-03-11T05:27:48
323,569,895
0
0
null
null
null
null
UTF-8
PlantUML
false
false
116
puml
@startuml class DictionaryModelDescription { } KeyValuePairModelDescription <|-- DictionaryModelDescription @enduml
false
true
false
false
class
e2f23ec955b97b16ad1092d322c9d54c57ca9c6c
a6ab6749bfc143b592cdbda3c795bfbe2da65d29
/doc/design/system_state_machine.plantuml
979c1d638536903595616e9849aec66993c5b55f
[ "MIT" ]
permissive
mizbit/esp-rgb-led-matrix
52502dac21044179f12180ffe8228ce733870ea7
7ee5cf7d0c3bfc4d4d236a33fda7aa0dca2ab802
refs/heads/master
2021-03-02T20:48:13.453460
2020-03-08T21:50:57
2020-03-08T21:50:57
245,904,451
1
1
null
2020-03-08T23:24:58
2020-03-08T23:24:58
null
UTF-8
PlantUML
false
false
1,539
plantuml
@startuml title System State Machine InitState: /entry: Initialize HAL and slot layouts. InitState: /do: Get button state. APState: /entry: Setup access point. APState: /entry: Start web- and update server. APState: /do: Handle client requests. APState: /do: Handle update. APState: /exit: Stop web- and update server. APState: /exit: Shutdown access point. IdleState: /do: Wait for manual reset. ConnectingState: /entry: Get remote wifi SSID and passphrase. ConnectingState: /do: Connect every 30 s to remote wifi network. ConnectedState: /entry: Start web- and update server. ConnectedState: /entry: Show hostname. ConnectedState: /entry: Enable slot routing on the display. ConnectedState: /do: Handle client requests. ConnectedState: /do: Handle update. ConnectedState: /exit: Stop web- and update server. ErrorState: /do: Wait for manual reset. RestartState: /entry: Unmount filesystem RestartState: /do: Restart [*] --> InitState: Power up InitState --> APState: [Button pressed] InitState -> ConnectingState: [Button released] APState --> ErrorState: [Failed to start\nwifi access point] APState --> RestartState: [Update received] ConnectingState --> IdleState: [Remote wifi SSID or\npassword missing] ConnectingState --> ConnectedState: [Connection successful established] ConnectedState --> ConnectingState: [Connection lost] ConnectedState --> RestartState: [Update finished] ErrorState --> [*]: [Restart] IdleState --> [*]: [Restart] RestartState --> [*]: [Restart] @enduml
false
true
false
false
sequence
6018b9f929ac06cf37173875523cc18fc2b2c8c7
3c74f15950bd77d3bd52220e9d2972f769e54bc0
/Diagramme/Objekt/TinyTasks.puml
52fc6c76fa6bb44eb8bf0485cc75c1203e073ccc
[]
no_license
Louis9902/Sosse19-SE
eff56539eed3e27e24342341356228ce5de7bd7c
6c146a6808781acbc6bf4e43157e2294013e65a3
refs/heads/master
2020-05-03T20:59:21.361284
2019-06-20T16:01:10
2019-06-20T16:01:10
178,814,946
2
0
null
2019-06-11T15:17:16
2019-04-01T08:05:57
C#
UTF-8
PlantUML
false
false
1,603
puml
@startuml TinyTasks object Program { configuration = "xyz/TinyTasks.cache" } object "<u>manager : Workers</u>" as manager { configuration = "xyz/TinyTasks.cache" } object "<u>workerAlpha : SyncWorker</u>" as workerAlpha { group = 548ea2cb-b9db-465f-8228-4ad09466ec53 label = 937192c9-f4e9-4a1c-81dc-3f41282f2c7e } object "<u>workerGamma : SyncWorker</u>" as workerGamma { group = 548ea2cb-b9db-465f-8228-4ad09466ec53 label = 67a9b1c9-18fe-4c40-ac49-5e91e1c0ea1d } object "<u>workers : Dictionary</u>" as workers { ... } object "<u>setAlpha : PreferenceSet</u>" as preferenceAlpha object "<u>setGamma : PreferenceSet</u>" as preferenceGamma object "<u>sourceAlpha : ScalarPreference</u>" as sourceAlpha { Name = "source" Value = "" Visible = true } object "<u>targetAlpha : ScalarPreference</u>" as targetAlpha { Name = "target" Value = "" Visible = true } object "<u>sourceGamma : ScalarPreference</u>" as sourceGamma { Name = "source" Value = "" Visible = true } object "<u>targetGamma : ScalarPreference</u>" as targetGamma { Name = "target" Value = "" Visible = true } Program -- manager : manager Program -- workers : workers workers o-- workerAlpha : content workers o-- workerGamma : content workerAlpha -- preferenceAlpha : Preferences preferenceAlpha o-- sourceAlpha preferenceAlpha o-- targetAlpha workerAlpha -- sourceAlpha : source workerAlpha -- targetAlpha : target workerGamma -- preferenceGamma : Preferences preferenceGamma o-- sourceGamma preferenceGamma o-- targetGamma workerGamma -- sourceGamma : source workerGamma -- targetGamma : target @enduml
false
true
false
false
sequence
c41785def961a390a620c85dbb591f8da04cca07
e7164135aa25b58684b3a9a0e75238098daf25c6
/design/client.puml
e96c408d73e07841df53751c6edc5d5a97d00600
[]
no_license
mattiamari/unibo-rtt-tester
a06424f7417e4f31a4d2b3e87c416a40b6fff387
83fe49ecff15a730477d4097ab16aeeb39f4b43e
refs/heads/master
2022-04-02T09:15:28.991427
2020-01-16T15:31:20
2020-01-16T15:31:20
224,486,397
0
0
null
null
null
null
UTF-8
PlantUML
false
false
482
puml
@startuml client-states [*] --> Hello Hello : entry / send Hello message Hello ---> Measurement : OK received Hello --> [*] : ERROR received Measurement --> Bye : n_probes echos received Measurement --> [*] : ERROR received Measurement : exit / print RTT and/or throughput Bye --> WaitByeResponse Bye : entry / send Bye message WaitByeResponse : exit / close connection WaitByeResponse --> [*] : OK received WaitByeResponse -up-> WaitByeResponse : response timeout @enduml
false
true
false
false
sequence
5118d418c271a88b51ce2d7d31aa52b4feab8d32
124b894a3ef93319757b58a1fd24ff43d69e7186
/docs/uml/stake pool unlock.puml
46b84124cdb957c540bf232b31b1608c9fb0a7f3
[ "MIT" ]
permissive
0chain/gosdk
614cc6079609f0a02aefc37f9ef5d3e2164317ff
acf2724b91db051ea886b20f991cf4a34a48665c
refs/heads/staging
2023-08-31T22:49:21.221247
2023-08-16T15:16:35
2023-08-16T15:16:35
191,593,548
30
36
MIT
2023-09-14T19:54:49
2019-06-12T15:04:03
Go
UTF-8
PlantUML
false
false
411
puml
@startuml participant "<size:20><&terminal></size> ./zbox sp-unlock" as cli collections gosdk cli -> gosdk: StakePoolUnlock(blobberID, fee) gosdk -> gosdk: check initialized sdk alt empty blobber id gosdk -> gosdk: get client id end gosdk -> gosdk: create stake pool request gosdk -> gosdk: create smart contract txn data gosdk -> gosdk: send smart contract txn value fee gosdk -> cli: return result @enduml
false
true
false
false
sequence
a37c89404335822fdf98a92821163d47a04bd932
10d153ee925c8511a5a2470cbf3dae3e4aa96ac9
/Diagramme de classe/L5 - Associations/exemples/l5dc1/dc_1.puml
000fbfa727ca303499015fa965cdcc8370789ced
[]
no_license
profesig/exosOO
db703060b96949019a6a7bf6a462b1bd6070d633
56ec1d91ea4d4f8c1a6480e3e43d483593878e60
refs/heads/master
2016-09-05T17:07:28.191472
2014-02-27T16:57:44
2014-02-27T16:58:02
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
88
puml
@startuml hide members class Vol class Avion Vol "*" -- "1" Avion : réserve > @enduml
false
true
true
false
class
ddd11ab52809ce9f8aa7465c5b144270b63a9407
897c5f0768d85d6070cbac83453eaeda84f86ab7
/SELAIN SISTEM/UML/SEQUENCE/bka/AjukanSPT.puml
21bb36a9853f4b8252295e3e27690575b19b8809
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
fiqihrosady/sistem_kp
b593e68eda63e3c4b2953447a2aa8f25f33f9921
7b9060a89f852577a6f4c1ea2596b59beb5e5b77
refs/heads/master
2020-09-27T00:03:37.042300
2019-12-05T18:54:26
2019-12-05T18:54:26
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
737
puml
@startuml autonumber hide footbox title Mengajukan SPT Actor AdminBKA boundary Dashboard_V boundary SPT_V control Admin_C control BKA_C Entity SuratPerintahTugas_E Admin_C --> Dashboard_V: load->view() Dashboard_V --> AdminBKA: Halaman Dashboard AdminBKA --> Dashboard_V: klik menu Surat Perintah Tugas Dashboard_V --> BKA_C: spt() BKA_C --> SuratPerintahTugas_E: SuratPerintahTugas_E --> BKA_C: BKA_C --> SPT_V: load->view() SPT_V --> AdminBKA: Halaman Surat Perintah Tugas AdminBKA --> SPT_V: klik tombol Ajukan SPT SPT_V --> BKA_C: ajukanspt() BKA_C --> SuratPerintahTugas_E: SuratPerintahTugas_E --> BKA_C: BKA_C --> SPT_V: load->view() SPT_V --> AdminBKA: Halaman Surat Perintah Tugas @enduml
false
true
false
false
sequence
5e4ef5d047c0a94657fd9bedbca40c9fde169016
eb83d9f3bd50c687c48810ac0654ec0e2315a0ff
/sysl2/sysl/tests/passthrough-golden.puml
70c163674abcccd9c97d76666e998e82a145e149
[ "Apache-2.0" ]
permissive
anz-bank/sysl-legacy
1505d794719011932ec298381bb5334b84d0d98a
5831389caa377c607812cb73176b2ae7b686cf3c
refs/heads/master
2021-06-19T08:04:53.160044
2019-11-27T00:00:46
2019-11-27T00:00:46
215,662,592
2
1
Apache-2.0
2021-06-02T00:31:47
2019-10-16T23:29:10
Go
UTF-8
PlantUML
false
false
471
puml
'''''''''''''''''''''''''''''''''''''''''' '' '' '' AUTOGENERATED CODE -- DO NOT EDIT! '' '' '' '''''''''''''''''''''''''''''''''''''''''' @startuml hide stereotype scale max 16384 height skinparam component { BackgroundColor FloralWhite BorderColor Black ArrowColor Crimson } [IntegratedSystem] as _0 <<highlight>> [System1] as _1 _0 --> _1 [System2] as _2 _1 --> _2 <<indirect>> @enduml
false
true
false
false
uml-unknown
a4556fe3a241817c500478983ad96f2228b685ab
b7d2ba71058efa46eff4ed885324819fb3f99266
/src/doc/CLI_Controllers/HouseMonitoring/US600/US600_sd_HouseMonitoring.puml
346718d7d70561bac2a28990ac7d6fd728c2acea
[]
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
1,729
puml
@startuml actor User autonumber User -> MainUI: Get Current Temperature on House Area MainUI -> HouseMonitoringUI: Get Current Temperature on House Area HouseMonitoringUI --> User: Request Geographic Area Name or Index from List User -> MainUI: insert data (Geographic Area name) or Select GA MainUI -> HouseMonitoringUI: select Geographic Area by name or from list HouseMonitoringUI ->HouseMonitoringController: check if name/index is contained in list HouseMonitoringController -> GeographicAreaList: check if name/index is contained in list GeographicAreaList -> GeographicArea: match by name or by index GeographicArea -> GeographicArea: validate data GeographicArea --> HouseMonitoringUI: return Geographic Area HouseMonitoringUI -> HouseMonitoringUI: set mGeoArea HouseMonitoringUI --> User: Request House Name or Index from List User -> MainUI: insert data (House name) or Select House MainUI -> HouseMonitoringUI: select House by name or from list HouseMonitoringUI -> HouseMonitoringController: check if name/index is contained in list HouseMonitoringController -> HouseList: check if name/index is contained in list HouseList -> House: match by name or by index House -> House: validate data House --> HouseMonitoringUI: return House HouseMonitoringUI -> HouseMonitoringUI: set mHouse HouseMonitoringUI -> HouseMonitoringController: getCurrentTemperatureInTheHouseArea HouseMonitoringController->Sensor: getSensorWithTheMinimumDistanceToHouse Sensor->ReadingList: getReadingList ReadingList->Reading:getMostRecentValueOfReading Reading-->HouseMonitoringUI: return Current Temperature In the House Area HouseMonitoringUI -> HouseMonitoringUI: Build result string HouseMonitoringUI -->User: Display result string @enduml
false
true
false
false
usecase
30c8591e78c9d25ff7123da2d47e1813d29aa160
b0418114098fb00e939444148763f210a339db68
/docs/diagrams/UpdateTitleSequenceDiagram.puml
7dad412aba17f5a25873e68c4bc150f4dc53217f
[ "MIT" ]
permissive
EkChinHui/tp
7221b0bd94d600b27fc05a4a5f4e6e0d427d3b90
d4df21e0570e9f3aa5bdb23ac17c9a1ec70a6e10
refs/heads/master
2023-01-06T12:02:49.314354
2020-11-09T15:16:20
2020-11-09T15:16:20
295,070,386
0
0
NOASSERTION
2020-09-13T03:26:11
2020-09-13T03:26:11
null
UTF-8
PlantUML
false
false
2,848
puml
@startuml skinparam Sequence { MessageAlign center } hide footbox box Ui #LightGreen participant ":MainWindow" as MainWindow #LightGreen end box box Logic #LightBlue participant ":LogicManager" as LogicManager #LightBlue participant ":MainPageParser" as MainPageParser #LightBlue participant ":OpenBudgetCommandParser" as OpenBudgetCommandParser #LightBlue participant "c:OpenBudgetCommand" as OpenBudgetCommand #LightBlue participant "result:CommandResult" as CommandResult #LightBlue participant "i:BudgetIndexManager" as BudgetIndex #LightBlue end box box Model #LightYellow participant "m:ModelManager" as ModelManager end box box State #Orange participant ":StateManager" as StateManager #Orange end box [-> MainWindow : executeCommand("open 1") activate MainWindow MainWindow -> LogicManager : execute("open 1") activate LogicManager create MainPageParser LogicManager -> MainPageParser activate MainPageParser MainPageParser --> LogicManager deactivate MainPageParser LogicManager -> MainPageParser : parseCommand("open 1") activate MainPageParser create OpenBudgetCommandParser MainPageParser -> OpenBudgetCommandParser activate OpenBudgetCommandParser OpenBudgetCommandParser --> MainPageParser deactivate OpenBudgetCommandParser MainPageParser -> OpenBudgetCommandParser : parse("1") activate OpenBudgetCommandParser create BudgetIndex OpenBudgetCommandParser -> BudgetIndex activate BudgetIndex BudgetIndex --> OpenBudgetCommandParser : i deactivate BudgetIndex create OpenBudgetCommand OpenBudgetCommandParser -> OpenBudgetCommand : OpenBudgetCommand(i) activate OpenBudgetCommand OpenBudgetCommand --> OpenBudgetCommandParser : c deactivate OpenBudgetCommand OpenBudgetCommandParser --> MainPageParser : c deactivate OpenBudgetCommandParser OpenBudgetCommandParser -[hidden]-> MainPageParser destroy OpenBudgetCommandParser MainPageParser --> LogicManager : c deactivate MainPageParser MainPageParser -[hidden]-> LogicManager destroy MainPageParser LogicManager -> OpenBudgetCommand : execute(m) activate OpenBudgetCommand OpenBudgetCommand -> ModelManager : openBudget(i) activate ModelManager ModelManager -> ModelManager : setOpenCommandState(i) activate ModelManager ModelManager -> StateManager : setOpenCommandState("PageName", "ExpenditureValue", Threshold(100).toOptional()) activate StateManager StateManager --> ModelManager deactivate StateManager ModelManager --> ModelManager deactivate ModelManager ModelManager --> OpenBudgetCommand deactivate ModelManager create CommandResult OpenBudgetCommand -> CommandResult activate CommandResult CommandResult --> OpenBudgetCommand : result deactivate CommandResult OpenBudgetCommand --> LogicManager : result deactivate OpenBudgetCommand LogicManager --> MainWindow : result deactivate LogicManager [<--MainWindow deactivate MainWindow @enduml
false
true
false
false
sequence
432bc84fe6316de46639ebaefe53850cfa644b27
9a2f95f5ea16154a56f01ee0409d008e71b44144
/diagram/classDiagram.puml
66c01392d0c33221053ac4ebe0c18d7cdfc0d4a8
[]
no_license
TOMOFUMI-KONDO/voice-transfer
837a860b579018589da703699f647b81f260cedc
8815d67fb24f00fe827c9b4ee62f9e13bdee65a4
refs/heads/main
2023-04-27T05:11:39.719367
2021-05-04T06:02:45
2021-05-04T06:02:45
342,805,164
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,578
puml
@startuml class VoiceReceiver { - {static} int SERVER_PORT - {static} int PACKET_SIZE - VoicePlayer player - int serverPort - byte[] buffer - DatagramSocket socket - DatagramPacket packet + VoiceReceiver() + void start() + void run() + void end() } class VoicePlayer{ - {static} int HZ - {static} int BITS - {static} int MONO - SourceDataLine source - byte[] voice + VoicePlayer() + void start() + void run() + void setVoice(byte[]) + void end() } class VoiceSenderSet { - Set<VoiceSender> senders + Set<VoiceSender> getSenders() + void addSender(String serverHost) + void removeSender(String serverHost) } class VoiceSender { - {static} int SERVER_PORT - {static} int INTERVAL - VoiceListener listener - int serverHost - int serverPort - InetSocketAddress address - DatagramSocket socket + VoiceSender(String serverHost) + void start() + void run() + void end() } class VoiceListener { - {static} int HZ - {static} int BITS - {static} int MONO - TargetDataLine target - AudioInputStream stream - byte[] voice + VoiceListener() + void start() + void run() + byte[] getVoice() + void end() } class Thread { ... + void start() + void run() {method} ... } VoiceReceiver --|> Thread VoiceReceiver *-- VoicePlayer VoicePlayer --|> Thread VoiceSenderSet o-- VoiceSender VoiceSender --|> Thread VoiceSender *-- VoiceListener VoiceListener --|> Thread @enduml
false
true
false
false
class
fd178917ea4b57d9d12e0070e12cf2e5382d225a
227c32f7a5991c0ce2de069dd1f0448c1e6949fb
/PlantUML/Pose2D/Pose2D_Activity_calGlobalPose.puml
ece2c4b6b77265986c9fb9d8069928ffd6d48fb9
[]
no_license
ShisatoYano/SLAMDesignUML
2b3af745ecf8ff1b88845e248a72c589fe9aa1ba
bb8678908952205d1fdc2ea5e49c9ca752e123b9
refs/heads/master
2022-11-25T17:49:03.514885
2020-08-02T00:27:38
2020-08-02T00:27:38
261,206,484
0
0
null
null
null
null
UTF-8
PlantUML
false
false
918
puml
@startuml /' calculate current global pose moved for relative pose from origin input1: const Pose2D &relPose input2: const Pose2D &bpose input3: Pose2D &npose '/ (*) --> "const double (*R0)[2] = bpose.Rmat\nconst double (*R1)[2] = relPose.Rmat" --> "double (*R2)[2] = npose.Rmat" --> "double tx = relPose.tx\ndouble ty = relPose.ty" --> "npose.tx = R0[0][0] * tx + R0[0][1] * ty + bpose.tx" --> "npose.ty = R0[1][0] * tx + R0[1][1] * ty + bpose.ty" --> "double th = bpose.th + relPose.th" --> if "th < -180" then --> [Yes] "th += 360" --> "relPose.th = th" else --> [No] if "th >= 180" then --> [Yes] "th -= 360" --> "relPose.th = th" else --> [No] "Do nothing" --> "relPose.th = th" endif endif "relPose.th = th" --> "relPose.calRmat()" --> (*) @enduml
false
true
false
false
activity
7bdaca3862f9b373734bdec77dbca1a9d9a03119
f9848f0df97c0bc9cec9d891ed7ededc7a03b0da
/docs/src/0box_flow.plantuml
3fba471940cacf3593af6b7ec33746dcb9df43e8
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
Dmdv/blobber
3a1bead18fdc73eb7c1297584131b94443650c12
6d0abe2e1727fc1735e59a586714050955782a76
refs/heads/master
2023-08-15T09:58:55.800959
2021-09-03T12:22:01
2021-09-03T12:22:01
375,841,011
0
0
NOASSERTION
2021-06-10T22:05:04
2021-06-10T22:05:03
null
UTF-8
PlantUML
false
false
2,281
plantuml
@startuml FileSharing title File Sharing - Public / Private actor Client 0Box -> 0Box : Setup a wallet, fund this wallet Client -> 0Box : Choose the plan for 0Box storage 0Box --> Client : KYC, Payment page Client -> Client : Create a wallet Client -> 0Box : KYC, Payment details, wallet details for the storage 0Box -> 0Box : Stores the KYC details,\nprocess payment 0Box -> Blockchain : Create a new allocation for the user \n(owner is client, payer is 0Box) 0Box -> Blockchain : Fund the write pool with daily limit 0Box -> Blockchain : Fund the read pool with daily limit 0Box -> 0Box : Waits for confirmation for the 3 txns 0Box --> Client : Success / Failure loop everday 0Box -> 0Box : Checks funds for funding read and write pools 0Box -> Blockchain : Fund the read and write pools for clients end loop Client -> Blobber : Uploads file(s) encrypted with public key Blobber --> Client : Upload response Client -> Blobber : Write marker if upload is successful Blobber --> Client : Write marker accepted / rejected Blobber -> Blockchain : Redeems the wm if successful upload group PublicShare - anyone with link Client -> Client : Generate a shared key Client -> Blobber : Encrypt and upload the file Blobber --> Client : upload accepted Client -> 0Box : Get a share link (file, path, auth-ticket, shared key) 0Box --> Client : Shareable link RClient -> 0Box : Clicks on the shared link 0Box --> RClient : navigate to app (shared secret key, auth ticket) RClient -> Blobber : Requests for file - passes the auth ticket with the read marker Blobber --> RClient : file response RClient -> RClient : uses the shared secret key to decrypt the file end group PrivateShare Client -> Client : Generate a re-encryption key for receiver Client -> Client : Generates an authorization ticket for receiver with the re-enc key Client -> 0Box : Get a share link (passes the auth ticket) 0Box --> Client : Shareable link RClient -> 0Box : Clicks on the shared link 0Box --> RClient : Create 0Box account / login RClient -> 0Box : account creation / sign in RClient -> Blobber : Requests for file, pass auth ticket Blobber -> Blobber : re-enc file with re-enc key in the auth ticket Blobber --> RClient : file response RClient -> RClient : decrypt with private key end @enduml
false
true
false
false
usecase
c772e5e094bd7b40934b4a7dc4c476c8200eee44
e618e68be491bb98c0573a467be63146a053cc6c
/SA/sequencediagram/customer/DeleteCustomer.puml
790646cf6b50b575ac13d534d8aa98c6f400eb4f
[]
no_license
dedeandress/belanjayukid-be-services
14101c676e2bdd56c5df72b9ccddae648951cf8b
9bedbf42cdd0b764e27c9dc839df8b401ac0bb62
refs/heads/master
2022-04-07T04:29:30.602535
2020-02-28T05:39:33
2020-02-28T05:39:33
194,123,362
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,023
puml
@startuml title: Delete Customer Sequence Diagram actor user participant BelanjaYukFE database BelanjaYukDB box "BelanjaYuk.id" #LightBlue participant BelanjaYukBE participant CustomerResolver participant CustomerService participant CustomerRepository participant JWTUtility participant BelanjaYukDB end box user -> BelanjaYukFE ++ : delete customer menu BelanjaYukFE -> BelanjaYukBE ++ : /graphql delete customer note right of BelanjaYukFE content type: application/json request body: mutation{ deleteCustomer( customerId ) } end note BelanjaYukBE -> CustomerResolver ++ : call CustomerResolver CustomerResolver -> CustomerService ++ : call CustomerService note left passing: - context - customerId end note CustomerService -> JWTUtility: validate token and claim role alt #LightGreen token is not expired alt #LightYellow role is admin CustomerService -> CustomerRepository ++ : update customer status to false passing userId CustomerRepository -> BelanjaYukDB ++ : update customer status set status is false where id is passed from request BelanjaYukDB --> CustomerRepository -- : affected row no error and return userId CustomerRepository --> CustomerService -- : affected row no error and return userId CustomerService --> CustomerResolver : delete successfully CustomerResolver --> BelanjaYukBE : delete successfully BelanjaYukBE --> BelanjaYukFE: delete successfully else error: role is not admin CustomerService --> CustomerResolver : Error: Not Authorized CustomerResolver --> BelanjaYukBE : Error: Not Authorized BelanjaYukBE --> BelanjaYukFE: Message: You're not authorize end alt else token is expired CustomerService --> CustomerResolver -- : Error: token expired CustomerResolver --> BelanjaYukBE -- : Error: token expired BelanjaYukBE --> BelanjaYukFE -- : Message: token was expired end alt @enduml
false
true
false
false
usecase
e091f9a91036fef6c561f17e31b38fe76002149d
6327621afec93f205a551a36197a214bd1842fd5
/plantUML/validator04.puml
3559e7d6e75b0293601bf20a396b36e71cfc5aa7
[]
no_license
MiguelAngelCB/Mobile-Store
2a78a02015f2e7eb33c8f205a4c106c74d1ccbbc
8fa14a7cdf4a212fa0b97bcbe16e9f2c1b941d81
refs/heads/master
2023-02-27T04:36:06.469868
2021-02-02T21:46:30
2021-02-02T21:46:30
335,432,203
1
0
null
null
null
null
UTF-8
PlantUML
false
false
2,557
puml
@startuml validator04 class ValidatorComposite{ +JSONArray getErrorsValidation(Client client) -HashMap<String, ArrayList<ErrorValidate>> getErrorsValue(Client client) -HashMap<String, ArrayList<ErrorValidate>> getErrorsLength(Client client) } class ValidatorValueRegistry{ -static ValidatorRegistry validatorRegistration; -static final HashMap<String, Class<? extends ValidableValue>> VALIDATES -ValidatorValueRegistry() +ValidableValue getValidator(String validateName) +void addValidator(String validateName, Class<? extends ValidableValue> validate) +static synchronized ValidatorRegistry getInstance() } class ValidatorLengthRegistry{ -static ValidatorRegistry validatorRegistration; -static final HashMap<String, Class<? extends ValidableLength>> VALIDATES -ValidatorLengthRegistry() +ValidableLength getValidator(String validateName) +void addValidator(String validateName, Class<? extends ValidableLength> validate) +static synchronized ValidatorRegistry getInstance() } class ValidatorValueComposite{ -HashMap<String, ArrayList<String>> listValidate -ValidatorValueRegistry validatorRegistration +HashMap<String, ErrorValidate> validate(Client client) -HashMap<String, ErrorValidate> getError() -void addValidate(String key, String value) } class ValidatorLengthComposite{ - private Map<String, ArrayList<StringLimit>> listValidate -ValidatorLengthRegistry validatorRegistration +HashMap<String, ErrorValidate> validate(Client client) -HashMap<String, ErrorValidate> getError() -void addValidate(String key, String value) } class AddErrorArrayError { -HashMap<String, ErrorValidate> errors -HashMap<String, ArrayList<ErrorValidate>> errorsAll +AddErrorArrayError(HashMap<String, ErrorValidate> errors, HashMap<String, ArrayList<ErrorValidate>> errorsAll) +HashMap<String, ArrayList<ErrorValidate>> getErrorsAll() -void addError(String key, ErrorValidate value) } class AddClient { -ValidatorValueComposite clientValidatorComposite -Class Client # doPost() # doGet() } class HttpServlet{ } class GetDataControlFromValue{ +static String getDataControlClient(Client client, String value) } ValidatorValueComposite *-- ValidatorValueRegistry ValidatorLengthComposite *-- ValidatorLengthRegistry HttpServlet <|-- AddClient ValidatorComposite *-- ValidatorValueComposite ValidatorComposite *-- ValidatorLengthComposite AddClient *-- ValidatorComposite ValidatorComposite o-- AddErrorArrayError ValidatorComposite o-- GetDataControlFromValue @enduml
false
true
false
false
class
f6959c53f41606f425a26c3ae09813ef01745e95
ef5852b964f91ce0b67fb6f85eb009209fba5df2
/src/main/asciidoc/images/package-formular.puml
8c6da7dbb55fd302d23d7abaa1c73b5773af741b
[ "Apache-2.0" ]
permissive
oboehm/jfachwert
86f56f1e4fa2061347db989c3d63d091ef39ccda
1947001ea920f07452a6d46a06e05e6fe733ba5c
refs/heads/develop
2023-08-10T11:33:40.348501
2023-08-04T15:02:46
2023-08-04T15:02:46
84,598,578
1
1
Apache-2.0
2023-03-31T18:48:35
2017-03-10T20:34:17
Kotlin
UTF-8
PlantUML
false
false
639
puml
@startuml package "formular" { enum Anrede { OHNE_ANREDE HERR FRAU FIRMA HERR_UND_FRAU FRAEULEIN VEREINIGUNG } enum Familienstand { LEDIG VERHEIRATET VERWITWET GESCHIEDEN EHE_AUFGEHOBEN EINGETRAGENE_LEBENSPARTNERSCHAFT DURCH_TOD_AUFGELOESTE_LEBENSPARTNERSCHAFT AUFGEHOBENE_LEBENSPARTNERSCHAFT DURCH_TODESERKLAERUNG_AUFGELOESTE_LEBENSPARTNERSCHAFT NICHT_BEKANNT } enum Geschlecht { JURISTISCHE_PERSON MAENNLICH WEIBLICH UNBEKANNT } } @enduml
false
true
false
false
class
519534ff6862384eb469ba4fcad62eee84c8e840
7f2c3c7279d02ef9a0f540cb3f5465ec150fc274
/Part3/documentation/Diagrams PUML/UC-RIS.puml
a6c894e34b889a463d190ab844311f1382fcdb25
[]
no_license
UpSkillCobol/lab2
50af33d8a3dc2de7d582439bae1d0a2b0661af85
0bd40727e16972be0188d9b98865d92752226811
refs/heads/main
2023-04-05T14:51:59.017317
2021-03-25T16:42:50
2021-03-25T16:42:50
325,392,334
1
0
null
null
null
null
UTF-8
PlantUML
false
false
355
puml
@startuml left to right direction header UPskillCobol: Breadwich endheader title \nDeliciousSandwich\n package RegistrationOfIngredientsSuppliers{ usecase "UC1: Register Ingredients Suppliers " as UC1 usecase "UC2: Search Ingredients Suppliers " as UC2 usecase "UC3: Create Report" as UC3 } Admin --> UC1 Admin --> UC2 Admin --> UC3 @enduml
false
true
false
false
usecase
6322ee9adcad4133f4107079e1d5736c2948a4f5
e7b7df0cf36cf83e9c440c3a81f4f85193e37a72
/3 Class Diagram/26 Help on layout.puml
cdd5e7fd4437c1d18f9d742bd3d23c6d532bac52
[ "MIT" ]
permissive
jys129/PlantUML
38dd154cc9a45d3206abf26f95bfb45e32d4c186
f0e62bf90332a1a541ded76d2101ebdd9215adaa
refs/heads/master
2023-03-16T15:54:12.053012
2020-10-18T15:49:08
2020-10-18T15:49:08
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
209
puml
@startuml class Bar1 class Bar2 together { class Together1 class Together2 class Together3 } Together1 - Together2 Together2 - Together3 Together2 -[hidden]--> Bar1 Bar1 -[hidden]> Bar2 @enduml
false
true
false
false
class
b67a94e917dc34603d56f0622f02730634e538d7
44e62ef9115427ee284c6af83fdb7060244e9d65
/src/main/java/ex46/Animal.puml
3ab262c7fcb88e5a151ee4df5c18ac238cefa7da
[]
no_license
AbdelNabut/abdel-cop3330-assignment3
ace755117ebc303be09276e4068192d98ccf3e59
06e615c19d720b035616861ce2daa1af5e31560a
refs/heads/master
2023-06-05T11:51:37.063615
2021-06-22T05:25:06
2021-06-22T05:25:06
379,135,268
0
0
null
null
null
null
UTF-8
PlantUML
false
false
278
puml
@startuml 'https://plantuml.com/class-diagram class App { void main() ArrayList<Animal> getAnimals() } class Animal { private name private count String getName() int getCount() } class AnimalComparator { public int compare() } App o-> Animal App o-> AnimalComparator @enduml
false
true
false
false
class
1a608f7b1c8224dac16cd23699572dbf04949a33
344a071ef570137e8190827adbf53bd3b7b057e5
/Module_2/Trien_Khai_Queue_Su_Dung_LinkedList/src/com/codegym/LinkedListQueue.plantuml
821cd68976e1d5e17d337772ec7873a1ab90d01b
[]
no_license
CaoXuanQuy1985/Codegym_Projects
d340198fd7e035c341e2ee6ea113c44e19a947f2
cedc187f3eb69440a5893b68c9fa5de43fa2587b
refs/heads/master
2021-01-05T06:32:00.807751
2020-07-02T06:59:17
2020-07-02T06:59:17
240,914,009
0
1
null
2020-10-13T20:47:43
2020-02-16T15:21:13
Java
UTF-8
PlantUML
false
false
348
plantuml
@startuml LinkedListQueue diagram class Node { ~ int key ~ Node next + Node(int key) } class MyLinkedListQueue<T> { - T head - T tail + MyLinkedListQueue() - boolean isEmpty() + void enQueue(int key) + T deQueue() } MyLinkedListQueue *-- Node @enduml
false
true
false
false
class
12b7de9774895d8c7a02db712bef8416885c9c1f
0a6c572c34e954114736944c8382a7a235acd9ef
/documentation/puml/arch.puml
0f4097c2ea308c8e722bcd5a95b4fef94c19c42e
[ "Apache-2.0" ]
permissive
saikishore0501/edp-jenkins-operator
e80761d7dc352bd619981e3195839adadb716232
4e5f6cf0e2592863415490820e6e0fdff7d85cb5
refs/heads/master
2023-06-08T03:33:37.780153
2021-06-30T13:45:55
2021-06-30T13:45:55
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,746
puml
@startuml skinparam class { backgroundColor<<impl>> LightGoldenRodYellow backgroundColor<<wip>> LightGreen backgroundColor<<tbd>> Khaki } package jenkins-operator { class Jenkins { -- spec -- String image String version String initImage String basePath []LocalObjectReference imagePullSecrets []JenkinsVolumes jenkinsVolumes []JenkinsSharedLibraries jenkinsSharedLibraries KeycloakSpec keycloakSpec EdpSpec edpSpec -- status -- Boolean available Date lastTimeUpdated String status String adminSecretName []Slave slaves } JenkinsVolumes "0..*" *-- "1" Jenkins class JenkinsVolumes <internal> { String name String storageClass String capacity } JenkinsSharedLibraries "0..*" *-- "1" Jenkins class JenkinsSharedLibraries <internal> { String name String url String tag String credentialId String type } KeycloakSpec "1" *-- "1" Jenkins class KeycloakSpec <internal> { Boolean enabled String realm } EdpSpec "1" *-- "1" Jenkins class EdpSpec <internal> { String dnsWildcard } Slave "0..*" *-- "1" Jenkins class Slave <internal> { String name } Jenkins "1" --* "1" AdminSecret : adminSecretName class AdminSecret <Secret> { -- data -- String username String password } JenkinsFolder "0..*" *-u- "1" Jenkins : ownerName class JenkinsFolder { -- spec -- String codebaseName String ownerName Job jobConfig -- status -- Boolean available Date lastTimeUpdated String status Integer jenkinsJobProvisionBuildNumber } JenkinsFolder "1" -l-> "0..1" JobConfig : internal structure class JobConfig { String name String config Integer autoTriggerPeriod } JenkinsFolder "1" -u-* "0..*" JenkinsJob : owns, jenkinsFolder Jenkins "1" -u-* "0..*" JenkinsJob : ownerName class JenkinsJob { -- spec -- String ownerName String stageName String jenkinsFolder Job job -- status -- Boolean available Date lastTimeUpdated String status Integer jenkinsJobProvisionBuildNumber String username ActionType action Result result String detailedMessage String value } JenkinsJob -r-> Job class Job <internal> { String name String config Integer autoTriggerPeriod } Jenkins "1" --* "0..*" JenkinsScript : owns, ownerName class JenkinsScript { -- spec -- String sourceConfigMapName String ownerName -- status -- Boolean available Boolean executed Date lastTimeUpdated } SourceConfigMap "1" <-d- "1" JenkinsScript : sourceConfigMapName class SourceConfigMap <ConfigMap> { -- data -- String context } Jenkins "1" --* "0..*" JenkinsServiceAccount : owns, ownerName class JenkinsServiceAccount { -- spec -- String type String credentials String ownerName -- status -- Boolean available Boolean created Date lastTimeUpdated } Credentials <-d- JenkinsServiceAccount : "reference by credentials" class Credentials <Secret> { -- data -- String username String password String secret *for token type } JenkinsServiceAccount --> ServiceAccountType : type enum ServiceAccountType { SSH PASSWORD TOKEN } class CdStageDeploy {} CDStageJenkinsDeploymentSpec "1" -l-> "1" CdStageDeploy class CDStageJenkinsDeploymentSpec { String job []Tags tag } CDStageJenkinsDeploymentSpec "1..*" *-- "0..*" Tag : internal structure class Tag { String codebase String tag } } class LocalObjectReference { String name } Jenkins -l-> LocalObjectReference : imagePullSecrets EdpComponent <-- Jenkins : creates, owns KeycloakClient <-- Jenkins : creates JenkinsFolder "1" -u-> "0..1" Codebase : owner ref (if jobName != nil) || codebaseName JenkinsFolder "1" -l-> "0..1" CdPipeline : owner ref (if jobName == nil), <jobName>-cd-pipeline JenkinsJob "1" -l-> "1" Stage : owner ref, stageName legend |<back:LightGoldenRodYellow> </back>| Work In Progress | |<back:White> </back>| Implemented | |<back:Khaki> </back>| TBD | endlegend skinparam class { BackgroundColor #white BackgroundColor<<wip>> LightGoldenRodYellow BackgroundColor<<tbd>> Khaki } @enduml
false
true
false
false
sequence
e37dfe8952f37a3b00524fa8e14aac18d6273082
4b530ac0e761ea1137383655bc952ba3e6f7c8f9
/k0s-student-project/docs/spec/5_diagrams/guest - log in.puml
f6d43a7a50e1319125fea81b15142bc4d4dfd2f6
[]
no_license
allgreed/uni-bachelors
a6321a99fd581fdf4e6d77d843cf340d1ecbcaae
29399749a91e0b7a5858e75cadefc659cd98569e
refs/heads/master
2022-12-30T02:56:38.611656
2020-10-11T00:07:04
2020-10-11T00:07:04
303,008,627
1
0
null
null
null
null
UTF-8
PlantUML
false
false
356
puml
@startuml title Log In actor Gość boundary UI participant Main database LDAP Gość -> UI:Log in activate UI UI -> Main: Authenticate activate Main Main -> LDAP: Authentication check activate LDAP LDAP --> Main: Authentication result deactivate LDAP Main --> UI: Authentication result deactivate Main UI --> Gość: Log in result deactivate UI @enduml
false
true
true
false
sequence
47be252cc582e9ff0c5688970ae5728ee309bb94
19de0597a5790bab6ff021899b4479506ae0829a
/uml/skeleton_seq_diagrams/asteroid explosion and reaction/aster_expl_w_robot_teleport.plantuml
117b5824cc573fc04afb73e5085cee0ebc948bc9
[]
no_license
bbucsy/projlab_holy_oil
e703a3ac579555a6c62f91051d7fbb5572c88d30
a1c4e9b953e7f7c22dabbd935abb461f9cacd409
refs/heads/master
2023-05-02T06:22:36.234536
2021-05-09T09:46:04
2021-05-09T09:46:04
342,634,410
0
1
null
null
null
null
UTF-8
PlantUML
false
false
668
plantuml
@startuml skinparam SequenceLifeLineBackgroundColor LightYellow title "Asteroid explodes with a robot on it (moves to TeleportGate)" actor Controller as C participant "a: Asteroid" as a participant "neighbour: TeleportGate" as neighbour participant "r: Robot" as r participant ": SunController" as sun participant ": GameController" as game C -> a ++ : Explode() a -> r ++ : ReactToAsteroidExplosion() r -> a ++ : GetRandomNeighbour() return neighbour r -> r ++ : Move(neighbour) deactivate r r --> a -- a -> sun ++ : RemoveAsteroid(a) sun --> a -- a -> game ++ : RemoveAsteroid(a) game --> a -- alt teleporter is null end a --> C -- @enduml
false
true
false
false
usecase
0796c7e1394b56065de9e8f13e7d4314b4305df7
40f4908483b98fc4f370ff4f2d520e1284d045b3
/immortals_repo/shared/tools/buildsystem/docs/PreDeployImageCreationDiagram.puml
45639be37564bf8cf6c0b9eb693ac86143901e47
[]
no_license
TF-185/bbn-immortals
7f70610bdbbcbf649f3d9021f087baaa76f0d8ca
e298540f7b5f201779213850291337a8bded66c7
refs/heads/master
2023-05-31T00:16:42.522840
2019-10-24T21:45:07
2019-10-24T21:45:07
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
492
puml
@startuml BuildManager -> Vine: Import Basic Testbed Vine --> BuildManager: Basic Testbed Imported BuildManager -> DAS: Checkout Latest Source DAS --> BuildManager: Checkout Completed BuildManager -> DAS: Perform Initial Environment Setup: DAS --> BuildManager: Initial Environment Setup Completed BuildManager -> DAS: Perform basic build to cache dependencies DAS --> BuildManager: Basic build complete BuildManager -> Vine: Save Created Images Vine --> BuildManager: Images Saved @enduml
false
true
false
false
sequence
34fbd4c64ea781bcb5aa566deb05de60a6830782
12b3c91d0e79e6e80f4c095c0064e9765e959efb
/springmvc-start/src/main/java/com/springmvc/start/HandlerAdapter.puml
d48959ce7640b94e64bb00fdec9aa1fb18c791d0
[]
no_license
binecy/bin-learning
8d40628a5724e871dcfe48d6cef6eb31528497d2
e356a4b3187f91ee8f35362c5babf03d9757ea9b
refs/heads/master
2021-01-21T05:29:08.337953
2018-03-09T08:49:45
2018-03-09T08:49:45
83,192,816
4
0
null
2017-10-25T03:04:24
2017-02-26T08:02:43
Java
UTF-8
PlantUML
false
false
339
puml
@startuml interface HandlerAdapter{ +handle(HttpServletRequest request, HttpServletResponse response, Object handler) :ModelAndView } abstract class AbstractHandlerMethodAdapter HandlerAdapter <|-- AbstractHandlerMethodAdapter class RequestMappingHandlerAdapter AbstractHandlerMethodAdapter <|-- RequestMappingHandlerAdapter @enduml
false
true
false
false
class
d9aaa6ea46f9f7000560ecb1e3b7058fdb3271a4
9e750ca1e85bbda66ffd579094555c7aedce4c1f
/assets/uml/stats-spec.plantuml
0ce3f08c8100177b704733cc2967a40cee6cf7c9
[ "MIT" ]
permissive
BernhardSchiffer/13-map-reduce-collect
764a1d9eab61183e2455e273b8af8125f339d062
f6bfbab6a934088a6e6f0d6a6465c59f1f89e9f4
refs/heads/master
2020-11-25T21:14:53.657815
2020-04-17T19:28:56
2020-04-17T19:28:56
228,850,696
0
0
MIT
2019-12-18T13:54:06
2019-12-18T13:54:05
null
UTF-8
PlantUML
false
false
439
plantuml
@startuml TrumpTweetStats package de.thro.inf.prg3.a13.tweets { +class TrumpTweetStats { +{static}calculateSourceAppStats(tweetStream: Stream<Tweet>): Map<String, Long> +{static}calculateTweetsBySourceApp(tweetStream: Stream<Tweet>): Map<String, Set<Tweet>> +{static}calculateWordCount(tweetStream: Stream<Tweet>, stopWords: List<String>): Map<String, Integer> } } @enduml
false
true
false
false
uml-unknown
af37c3b7b0693941d6fdd1fead2a90e7c043b627
8e0bbf92004be5e48b46331fc3995d1f2c860312
/src/plantuml/apps.puml
9363fd7796d88aca9beeb75be368f6a84123b375
[]
no_license
rrubenstei002/health-apis
c942d5535ed4831b36c5cf66f4c28e09b7bba548
3dd52969f768e7425435e77847b64a514ea923a4
refs/heads/master
2020-04-02T07:29:55.296592
2018-10-19T13:37:58
2018-10-19T13:37:58
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
302
puml
@startuml skinparam handwritten true skinparam monochrome true left to right direction actor consumer database "cdw" database "id-store" as iddb rectangle "argonaut" rectangle "ids" rectangle "mr-anderson" as mra consumer -(0- argonaut argonaut -(0- mra mra -- cdw mra -(0- ids ids -- iddb @enduml
false
true
false
false
sequence
bdcb739c7a0e22c63f4157684870ed25b699209f
102c9d429d8fb80c2bdf5e2077918f76be946ad3
/docs/diagrams/src/workflow-purchase.plantuml
7b7c33d428b4637a49a89e1421bcdba339c5b0bd
[]
no_license
monetha/payment-plugin-php-sdk
32a9afd5cc98654b61ac276881b54898153f3470
d9d7b6ca2280adb0e5434f3f64036ee8121c7725
refs/heads/master
2020-05-06T13:58:50.805169
2019-06-26T12:41:16
2019-06-26T12:41:16
180,166,490
0
1
null
2019-06-26T12:41:17
2019-04-08T14:26:26
PHP
UTF-8
PlantUML
false
false
943
plantuml
@startuml hide footbox actor "User" as user participant "E-Shop" as shop participant "Monetha API" as gatewayapi participant "Payment page" as gateway user -> shop: User came to checkout page shop -> gatewayapi: Monetha.Services.GatewayService.createOffer( order, client ) activate gatewayapi gatewayapi --> shop: Monetha.Response.CreateOffer deactivate gatewayapi user -> shop: User pressed place order activate shop shop -> gatewayapi: Monetha.Services.GatewayService.executeOffer( Monetha.Response.CreateOffer.token ) activate gatewayapi gatewayapi --> shop: Monetha.Response.ExecuteOffer deactivate gatewayapi deactivate shop activate gateway shop -> gateway: redirect user to Monetha.Response.ExecuteOffer.paymentURL ... 1. User select to pay by FIAT or Crypto depending on Merchant configuraiton ... ... 2. Provides information necessary for a payment ... shop <- gateway: WebHookAdapter.finalize() deactivate gateway @enduml
false
true
false
false
usecase
8d2c2d6f7bc655e279da1e86345ee3998032c6c6
850df42c7544ac83b23b4ad25e86fa2c22ec2f61
/src/main/java/org/yyb/adapter/classadapter/classadapter.puml
3246fd84912ae1378b0837284d1a85ad9cde2cf5
[ "Apache-2.0" ]
permissive
yangyibo/gof
1d1759911b0e70add0bff1c9dd437e6df0622498
60e0bd1c65de1717fa51a48d6b6126b1e5ba069f
refs/heads/master
2022-12-19T19:58:34.423758
2020-08-15T17:48:47
2020-08-15T17:48:47
278,110,455
0
0
Apache-2.0
2020-10-13T23:28:07
2020-07-08T14:24:12
Java
UTF-8
PlantUML
false
false
307
puml
@startuml class Phone { + charging(): void } interface Voltage5V { + output5V(): void } class Voltage220V { + output220V(): void } class VoltageAdapter Voltage5V <|.. VoltageAdapter Voltage220V <|-- VoltageAdapter Voltage5V <.. Phone class Client Phone <.. Client VoltageAdapter <.. Client @enduml
false
true
false
false
class
5a9b5542f6c06795bc394989b1bff632c3f758e5
adc1be69234432655526ba7136d8d3144338509c
/packages/core/example-input/SeqD-examples/SeqDs/repeat-doing.puml
ab7e257222c16efc575bc99ca360ad70c2349304
[ "MIT" ]
permissive
tum-esi/wot-runtime
062b6863b555b391fd70cbf2bc7c9639ee8a751a
aabb896d0b5f223e5f3aab6993be445e2dc29848
refs/heads/main
2023-06-19T04:21:14.298268
2021-07-20T22:09:02
2021-07-20T22:09:02
387,924,384
1
0
null
null
null
null
UTF-8
PlantUML
false
false
678
puml
@startuml repeatDoing [->"Agent": top:repeatDoing() activate "Agent" loop 25x group strict par "Agent" -> "VirtualCoffeeMachine" : readProperty: "state" activate "VirtualCoffeeMachine" "VirtualCoffeeMachine" --> "Agent" : response deactivate "VirtualCoffeeMachine" note over Agent set variable myVar1 end note end par note over Agent get variable myVar1 defaultInput "xyz" end note "Agent" -> "TestThing" : writeProperty: "string" end end end [<-"Agent" deactivate "Agent" @enduml
false
true
false
false
sequence
9e668ea3f4ded36fb080d01e54f427e245ba211a
376a60abf01bcc33739b69b315d08aa14718aff9
/doku/Objektmodell.plantuml
bde0eaf9120a49713304b39584cce060ff9fbcf6
[]
no_license
SimonHirner/agenda20
661b2bfc976366f8b06737d0020791070a09da64
0dbed81c97abe2924246a5edc3f31bf7053ee2ef
refs/heads/master
2023-08-20T09:35:26.455365
2021-10-31T11:07:25
2021-10-31T11:07:25
387,737,728
0
0
null
null
null
null
UTF-8
PlantUML
false
false
4,085
plantuml
@startuml ' Layout skinparam classAttributeIconSize 0 skinparam monochrome true skinparam shadowing false skinparam DefaultFontName arial skinparam DefaultFontSize 12 skinparam ClassFontStyle bold 'User object "<u>fine:User</u>" as fine{ login = "fine" password = "#Fine2020" name = "Fine" administrator = false subscriptions = status = } object "<u>ernie:User</u>" as ernie{ login = "ernie" name = "Ernie" password = "#Ernie2020" administrator = false subscriptions = HTMLKurs status = 2 } object "<u>bert:User</u>" as bert{ login = "bert" name = "Bert" password = "#Bert2020" administrator = false subscriptions = HTMLKurs, BackKurs status = 6 } object "<u>admin:User</u>" as admin{ login = "admin" name = "Administrator" password = "#Admin2020" administrator = true subscriptions = status = } 'Topics object "<u>HTMLKurs: Topic</u>" as HTMLKurs{ uuid = "e17ae604-2b50-469a-bba0-b5b4543580b3" title = "HTML für Anfänger" visibility = PUBLIC shortDescription = "Dieser Kurs behandelt die Grundlagen von HTML." longDescription = "Die Hypertext Markup Language ist eine [...]" creator = fine tasks = 1, 3 subscriber = bert, ernie } object "<u>CSSKurs: Topic</u>" as CSSKurs{ uuid = "c3ef0536-dd96-4968-a9b3-4bad0c13d1e0" title = "CSS für Fortgeschrittene" visibility = PUBLIC shortDescription = "Dieser Kurs richtet sich an Fortgeschrittene und behandelt CSS." longDescription = "Cascading Style Sheets, kurz CSS genannt, ist eine [...]" creator = fine tasks = subscriber = } object "<u>BackKurs: Topic</u>" as BackKurs{ uuid = "85b55409-d34d-4985-9da5-8c8acd06fe23" title = "Ernies Backkurs" visibility = PRIVATE shortDescription = "Lernen Sie Backen mit Ernie." longDescription = "Hier lernen Sie innerhalb kürzester Zeit das Backen wie ein Konditor." creator = ernie tasks = 4, 5 subscriber = bert } 'Tasks object "<u>LinkErstellen: Task</u>" as LinkErstellen { id = 1 title = "Link erstellen" shortDescription = "In dieser Einheit wird gezeigt, wie in HTML ein Link erstellt wird." longDescription = "Denn HTML Links sind wichtig um auf Websites navigieren zu können." topic = HTMLKurs status = 2 deadline = 2020-04-15 } object "<u>TemplateErstellen: Task</u>" as HTMlErstellen { id = 3 title = "Leeres HTML-Template erstellen" shortDescription = "Diese Einheit behandelt die Erstellung einer neuen HTML Datei." longDescription = "HTML Dateien sind die Basis einer jeden Website." topic = HTMLKurs status = deadline = 2020-10-25 } object "<u>Googlehupf: Task</u>" as Googlehupf { id = 4 title = "Googlehupf backen" shortDescription = "In dieser Einheit wird gezeigt wie man einen Googlehupf backt" longDescription = "Dafür sind folgende Zutaten nötig..." topic = BackKurs status = deadline = } object "<u>Affenmuffins: Task</u>" as Affenmuffins { id = 5 title = "Affenmuffins backen" shortDescription = "Diese Einheit beinhaltet das Backen von Affenmuffins." longDescription = "Hierfür benötigen wir folgende Zutaten..." topic = BackKurs status = 6 deadline = } 'status object "<u>2: Status</u>" as 2{ id = 2 user = ernie task = 1 status = StatusEnum.FERTIG comment = "" rating = "Sie haben diese Aufgabe fehlerfrei bestanden." } object "<u>6: Status</u>" as 6{ id = 6 user = bert task = 5 status = StatusEnum.FERTIG comment = "Diese Aufgabe war sehr spannend!" rating = "" } 'Assoziationen fine -- HTMLKurs :> erstellt fine -- CSSKurs :> erstellt ernie -- BackKurs :> erstellt ernie -- 2 :> besitzt bert -- 6 :> besitzt ernie -- HTMLKurs :> abboniert bert -- HTMLKurs :> abboniert bert -- BackKurs :> abboniert HTMLKurs -- LinkErstellen :< gehört zu HTMLKurs -- HTMlErstellen :< gehört zu 6 -- Affenmuffins :> bezieht sich 2 -- LinkErstellen :> bezieht sich BackKurs -- Googlehupf :< gehört zu BackKurs -- Affenmuffins :< gehört zu @enduml
false
true
true
false
object
e67ee516888668ae233da36140f7351350a17e06
d10503f47377addd953c47db621947c28060f809
/Specification/SequenceDiagram.puml
8ff2c576ff91ab69da2425647b44344d16fce8d4
[ "MS-PL" ]
permissive
BeqaKhaburdzania/FreeUni-SDP-2013-Lab-UML
a0c93981e4924ded0b1db50b296d48c0155f376e
dd5fbb54da0daf0fa8ecb7184af9baecaf508d85
refs/heads/master
2021-01-17T23:11:04.570954
2015-03-18T20:17:21
2015-03-18T20:17:21
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,110
puml
@startuml actor main create BrandSpecification main -> BrandSpecification : new create TypeSpecification main -> TypeSpecification : new create Mobile main -> Mobile :new main -> TypeSpecification : And(BrandSpecification) activate TypeSpecification create AndSpecification TypeSpecification -> AndSpecification : new(TypeSpecification, BrandSpecification) deactivate TypeSpecification main -> AndSpecification : IsSatisfiedBy(Mobile) activate AndSpecification AndSpecification -> TypeSpecification : IsSatisfiedBy(Mobile) deactivate AndSpecification activate TypeSpecification TypeSpecification -> Mobile : getType() TypeSpecification -> AndSpecification deactivate TypeSpecification activate AndSpecification AndSpecification -> BrandSpecification : IsSatisfiedBy(Mobile) deactivate AndSpecification activate BrandSpecification BrandSpecification -> Mobile : getBrand() BrandSpecification -> AndSpecification deactivate BrandSpecification activate AndSpecification AndSpecification --> main destroy BrandSpecification destroy TypeSpecification destroy AndSpecification destroy Mobile @enduml
false
true
false
false
usecase
bdd35c0d2ddeebb4b7d6efd67d6be08e8f0b7d91
9ddf59611cd4a6ed640d8f2adec09887cc260143
/app/src/main/java/com/example/androidximalayafm/androidximalayafm.plantuml
a890685ebc3755c76a09a19d0bc6e7dcbf073d09
[]
no_license
413180794/androidXiMaLaYaFM
3de3128163bf78467b1eb152c41c7f46f8377c5d
d17fe7488fc7e21ae937c8d2f7ac95067ce5cc80
refs/heads/master
2023-01-19T02:33:29.992822
2020-11-23T02:11:00
2020-11-23T02:11:00
271,422,992
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,673
plantuml
@startuml title __ANDROIDXIMALAYAFM's Class Diagram__\n namespace com.example.androidximalayafm { class com.example.androidximalayafm.BaseActivity { } } namespace com.example.androidximalayafm { class com.example.androidximalayafm.DetailActivity { - TAG : String - mAlbumAuthor : TextView - mAlbumTitle : TextView - mCurrentAlbumId : int - mCurrentPage : int - mDetailList : RecyclerView - mDetailListContainer : FrameLayout - mLargeCover : ImageView + onAlbumLoaded() + onDetailListLoaded() + onItemClick() + onNetworkError() + onRetryClick() # onCreate() - createSuccessView() - initView() } } namespace com.example.androidximalayafm { class com.example.androidximalayafm.MainActivity { ~ mContentPager : ViewPager {static} - TAG : String - mMagicIndicator : MagicIndicator # onCreate() - initEvent() - initView() } } namespace com.example.androidximalayafm { class com.example.androidximalayafm.PlayerActivity { {static} - TAG : String - mControlBtn : ImageView - mCurrentPosition : TextView - mCurrentProgress : int - mDurationBar : SeekBar - mHourFormat : SimpleDateFormat - mIsUserTouchProgressBar : boolean - mMinFormat : SimpleDateFormat - mTotalDuration : TextView + onAdFinished() + onAdLoading() + onListLoaded() + onNextPlay() + onPlayError() + onPlayModeChange() + onPlayPause() + onPlayStart() + onPlayStop() + onPrePlay() + onProgressChange() # onCreate() # onDestroy() - initEvent() - initView() - startPlay() } } com.example.androidximalayafm.BaseActivity -up-|> androidx.fragment.app.FragmentActivity com.example.androidximalayafm.DetailActivity .up.|> com.example.androidximalayafm.adapters.DetailListAdapter.ItemClickListener com.example.androidximalayafm.DetailActivity .up.|> com.example.androidximalayafm.interfaces.IAlbumDetailViewCallback com.example.androidximalayafm.DetailActivity .up.|> com.example.androidximalayafm.views.UILoader.OnRetryClickListener com.example.androidximalayafm.DetailActivity -up-|> com.example.androidximalayafm.BaseActivity com.example.androidximalayafm.DetailActivity o-- com.example.androidximalayafm.presenters.AlbumDetailPresenter : mAlbumDetailPresenter com.example.androidximalayafm.DetailActivity o-- com.example.androidximalayafm.adapters.DetailListAdapter : mDetailListAdapter com.example.androidximalayafm.DetailActivity o-- com.example.androidximalayafm.views.RoundRectImageView : mSmallCover com.example.androidximalayafm.DetailActivity o-- com.example.androidximalayafm.views.UILoader : mUiLoader com.example.androidximalayafm.MainActivity -up-|> androidx.fragment.app.FragmentActivity com.example.androidximalayafm.MainActivity o-- com.example.androidximalayafm.adapters.IndicatorAdapter : mIndicatorAdapter com.example.androidximalayafm.PlayerActivity .up.|> com.example.androidximalayafm.interfaces.IPlayerCallback com.example.androidximalayafm.PlayerActivity -up-|> com.example.androidximalayafm.BaseActivity com.example.androidximalayafm.PlayerActivity o-- com.example.androidximalayafm.presenters.PlayerPresenter : mPlayerPresenter 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
9907cfe2604f6408d4417293b82c9da90422c6ff
5bda871fceb094fb9925872cf46794a7bb523678
/src/main/java/builder/examples/simple/simple.plantuml
58dfc927de392a7491b7c906708a8b9077606cf3
[]
no_license
jestin-g/java-design-pattern
9ec3526091fd4a5b795b035e3d6ae54a064e9ed2
da908b77cced2e25640f68f22d4bccda88e1321e
refs/heads/master
2023-02-11T14:12:52.417590
2021-01-06T16:48:53
2021-01-06T16:48:53
307,839,152
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,036
plantuml
@startuml title __SIMPLE's Class Diagram__\n namespace builder.examples.simple { class builder.examples.simple.BuilderDemo { {static} + main() } } namespace builder.examples.simple { class builder.examples.simple.HtmlBuilder { - rootName : String + HtmlBuilder() + addChild() + addChildFluent() + clear() + toString() } } namespace builder.examples.simple { class builder.examples.simple.HtmlElement { + elements : ArrayList<HtmlElement> + name : String + text : String - indentSize : int - newLine : String + HtmlElement() + HtmlElement() + toString() - toStringImpl() } } builder.examples.simple.HtmlBuilder o-- builder.examples.simple.HtmlElement : root 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
3c3e142a5e8cda24d7722c2dbb15698e1f221a12
9b14b8d19bc8d7ea0dbd61a3b272dc64ab446b4e
/EasyCall/src/main/java/com/example/easycall/adapter/at/at.plantuml
a40b0552d45ab902365cc13574b34f81fc62f76b
[]
no_license
daxuliu/easy_call
df0733f02bbc4d8eef4985a8a26ab8dfcf13a382
3ad3f07f2aaa97a700888a277ab5fac35efad12f
refs/heads/master
2023-03-24T02:57:03.767457
2021-03-19T02:16:17
2021-03-19T02:16:17
340,308,356
0
0
null
null
null
null
UTF-8
PlantUML
false
false
641
plantuml
@startuml title __AT's Class Diagram__\n namespace com.example.easycall { namespace adapter { namespace at { interface com.example.easycall.adapter.at.Call { {abstract} + id() {abstract} + name() } } } } namespace com.example.easycall { namespace adapter { namespace at { interface com.example.easycall.adapter.at.Use { } } } } 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
b4f57a76d2ceb29dbbd7c2bbddeae3beb6a5c095
86a3a7f68a26bf947a96c34a6b008dc98e48c575
/lapr2-2020-g041/docs/UC1/UC1_SSD.puml
905a7c24fefd43ea7aaf107457a830e1fd693871
[ "MIT" ]
permissive
GJordao12/ISEP-LAPR2
7f01f7fe4036f17a4a76f0595e80564c2dda7b3c
0c537d1cf57f627f98e42b6f1b7e100f49ff2d15
refs/heads/master
2023-08-17T10:59:19.469307
2021-10-02T16:27:19
2021-10-02T16:27:19
272,283,723
0
0
null
null
null
null
UTF-8
PlantUML
false
false
681
puml
@startuml autonumber actor "Administrator" as ADM activate ADM ADM -> ":System" : Starts the registration of a Organization. activate ":System" ":System" --> ADM : Asks for the necessary data about the organization (i.e. designation), about the Manager \n(i.e. name and email) and finally about the Collaborator (i.e. name and email) deactivate ":System" ADM -> ":System" : Enters the requested data. activate ":System" ":System" --> ADM : Displays the data, asking him to confirm it deactivate ":System" ADM -> ":System" : Confirms activate ":System" ":System" --> ADM : Informs the Administrator about the success of the operation deactivate ":System" deactivate ADM @enduml
false
true
false
false
usecase
ead1af8c9eb3cf5bddd8620099395fdf02346a3b
8cefcd801f8e9b69a93edbd1f75d99f77171c303
/src/cn/year2022/uml/UseCase.puml
56d928461935327b30481d2a936a59e1293200d7
[ "MIT" ]
permissive
chywx/JavaSE-chy
3219fe50df03ee1efb5dbdf26d3ea11d76929ee4
3f8ac7eaf2a1d87745f6eea996cf72f73450b05e
refs/heads/master
2023-04-30T21:12:25.172175
2023-04-21T02:18:19
2023-04-21T02:18:19
166,914,146
5
4
null
2021-10-09T02:12:11
2019-01-22T02:35:30
Java
UTF-8
PlantUML
false
false
354
puml
@startuml 'https://plantuml.com/use-case-diagram :Main Admin: as Admin (Use the application) as (Use) User -> (Start) User --> (Use) Admin ---> (Use) note right of Admin : This is an example. note right of (Use) A note can also be on several lines end note note "This note is connected\nto several objects." as N2 (Start) .. N2 N2 .. (Use) @enduml
false
true
false
false
uml-unknown
d855b4d1a2286cde5ef19d27b78bb19391d6ae1c
009f91fbcf8e724301241173e2569f007f75b548
/src/com/company/visitor/visitor.puml
bdf08ef6fe1fb7afe608a5b55ae9edae8f52b20f
[]
no_license
wangwilliams/design
cac17b3eeea719070eb1d2bf8c378d4f58c4e337
696b92a57f6424fd5ad36867673b85eff63cb831
refs/heads/master
2021-03-21T15:09:46.671524
2020-03-16T16:46:59
2020-03-16T16:46:59
247,306,333
0
0
null
null
null
null
UTF-8
PlantUML
false
false
967
puml
@startuml interface Visitor{ +visit(ConcreteElementA element) : void +visit(ConcreteElementB element) : void } class ConcreteVisitorA{ +visit(ConcreteElementA element) : void +visit(ConcreteElementB element) : void } class ConcreteVisitorB{ +visit(ConcreteElementA element) : void +visit(ConcreteElementB element) : void } interface Element{ +accept(Visitor visitor): void } class ConcreteElementA{ +accept(Visitor visitor) : void +operationA():String } class ConcreteElementB{ +accept(Visitor visitor) : void +operationB():String } class ObjectStructure{ -list:List<Element> +accept(Visitor visitor) : void +add(Element element):void +remove(Element element):void } class VisitorTest Visitor <|..ConcreteVisitorA Visitor <|..ConcreteVisitorB Element <|..ConcreteElementA Element <|..ConcreteElementB Element-right-*ObjectStructure VisitorTest-.down->ObjectStructure VisitorTest-.right->Visitor @enduml
false
true
false
false
class
935d4f5143721a320e51f0628e157e39c6f8c76f
613ff135b4eab970ffd08293e48ac31a14368d53
/UML.plantuml
11b71613256ca9fa0daf3021c986e9df4a486efc
[]
no_license
Anaisdeb/NF18-Projet_Societe_de_chemins_de_fer
18366dd5ae5e9ff8ef82e3992bcadcc434b5019f
9f074574e0392a67670723030cecd90dd5f2095f
refs/heads/master
2023-05-04T01:08:42.052342
2021-05-23T07:55:04
2021-05-23T07:55:04
356,230,485
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,452
plantuml
@startuml hide circle package "Itineraire" #DDDDDD { class Gare { nom : string ville : string adresse : string horaire : heure } note left: {(nom,ville) key} class Train <<abstract>> { num : int {key} placemax : const int classe1 : const bool vitessemax : const int nb_arrets() : int } class RER { } class TGV { } class TER { } class Ligne { code : int {key} nom : string nb_traverse() : int get_depart() : string get_arrivee() : string } class Trajet { place : int duree() } class Arret { rang : int } class Horaire { arrivee: heure depart : heure } note right arret.code = train.code end note class Calendrier <<abstract>> { } class RegulierC { tab[lundi,..., dimanche]: bool } class ExceptionnelC { ajout : bool jour_debut : date jour_fin : date } note left jour_debut <= jour_fin end note } package "Achat" #DDDDDD { class Billet { id : int gare_depart : string depart : heure gare_arrivee : string arrivee : heure assurance : bool prix : int duree() } class Voyageur <<abstract>> { id : int nom : string prenom : string adresse : string num_tel : int[10] } class OccasionnelV { } class RegulierV { num_carte : int statut : {voyageur|grandVoyageur|grandVoyageurPlus} } class Reservation { paiement : {especes, CB, cheque} } class Hotel { adresse : string ville : string nom : string nb_etoile : int } class Taxis { numero : int ville : string marque : string tarif : int tel : int } class Transport { numero : int ville : string compagnie : string type : {bus, velo, tramway} } Train <|-- RER Train <|-- TER Train <|-- TGV Gare "1" -- "1..*" Arret : se fait dans < Arret "1..*" -- "1" Ligne : se situe sur > Ligne "1" -- "1..*" Train : circule sur < Horaire "1" -- "1..*" Trajet : depart > Horaire "1" -- "1..*" Trajet : arrivee > Horaire "1..*" -- "1" Arret : se fait a < Horaire "1..*" -- "1" Train : circule a < Billet "1" -- "1" Reservation : contient < Reservation "1..*" -- "1" Voyageur : est faite par > Reservation "1..*" -- "1..*" Taxis : propose > Reservation "1..*" -- "1..*" Transport : propose > Reservation "1..*" -- "1..*" Hotel : propose > Billet "1" -- "1..*" Trajet : correspond > Horaire "1..*" --- "1" RegulierC : concerne < Horaire "1..*" ---- "0..*" ExceptionnelC : concerne < RegulierC --|> Calendrier ExceptionnelC --|> Calendrier OccasionnelV --|> Voyageur RegulierV --|> Voyageur @enduml
false
true
false
false
class
af4d0f780540cf424d24e01cbf2316d177347bc4
30d33bdb258b9f5e930e7038f0f90e7ab67e2dd1
/src/class_diagram.puml
ae7588da1bdf1513d2d1ed5273137b575c9064ba
[]
no_license
yaboymichaelD/DS-C
f2dfd6e2127249e668bbff52e4c066a62c537f3b
6b2e8c6b0d0cc4a835d0ee02241587dbdfc9f037
refs/heads/master
2020-04-05T00:02:22.906490
2018-11-06T12:51:27
2018-11-06T12:51:27
156,380,931
0
0
null
null
null
null
UTF-8
PlantUML
false
false
232
puml
@startuml class AVLTree{ - E: key - int: balance - int: height - Node: left - Node: right - Node: parent - Node: root + getHeight(): int + add(E word) + contains(E word): boolean } @enduml
false
true
false
false
class
a4d59444867fb5a9a13b8cf70ba37caf435c7120
d97b774fd95a8e98e37c46ee1771f6e6e407a148
/uml/api/ProductType.puml
c44cab87ec54edf03fb83ba8367140b4229d1ac6
[]
no_license
commercetools/commercetools-api-reference
f7c6694dbfc8ed52e0cb8d3707e65bac6fb80f96
2db4f78dd409c09b16c130e2cfd583a7bca4c7db
refs/heads/main
2023-09-01T05:22:42.100097
2023-08-31T11:33:37
2023-08-31T11:33:37
36,055,991
52
30
null
2023-08-22T11:28:40
2015-05-22T06:27:19
RAML
UTF-8
PlantUML
false
false
1,247
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 ProductType [[ProductType.svg]] extends BaseResource { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime lastModifiedBy: [[LastModifiedBy.svg LastModifiedBy]] createdBy: [[CreatedBy.svg CreatedBy]] key: String name: String description: String attributes: [[AttributeDefinition.svg List<AttributeDefinition>]] } interface BaseResource [[BaseResource.svg]] { id: String version: Long createdAt: DateTime lastModifiedAt: DateTime } interface ProductTypePagedQueryResponse [[ProductTypePagedQueryResponse.svg]] { limit: Long offset: Long count: Long total: Long results: [[ProductType.svg List<ProductType>]] } interface ProductTypeReference [[ProductTypeReference.svg]] { typeId: [[ReferenceTypeId.svg ReferenceTypeId]] id: String obj: [[ProductType.svg ProductType]] } ProductType --> ProductTypePagedQueryResponse #green;text:green : "results" ProductType --> ProductTypeReference #green;text:green : "obj" @enduml
false
true
false
false
sequence
024b9613b9a1ee298664a53b004f066ac87b1048
b27b1c82ff4783149041cd7a81d372f3be98746b
/uc_seq_create_delete.puml
e1abb56d2d099594b7007df783cf2040d9e19b20
[]
no_license
Huy-Ngo/reddit-design
b9c25f4c79a5bb69507820432a1cda7f3c7c1015
b91146dc29ae29d9dffe511a8a56c8d8aef3e19d
refs/heads/master
2022-12-30T09:05:53.794370
2020-10-23T03:10:03
2020-10-23T03:10:03
297,368,530
0
0
null
null
null
null
UTF-8
PlantUML
false
false
747
puml
@startuml hide footbox autoactivate on actor User as user boundary PostView as post_view boundary PostForm as post_form control PostController as post_ctl entity Post as post_ent autonumber 'Create post user -> post_form : // create post() post_form -> post_ctl : // create post() post_ctl -> post_ent : // create post() post_ent --> post_ctl post_ctl --> post_form deactivate post_form post_ctl -> post_view post_view -> post_view : // display post() 'Delete post user -> post_view : // delete post() post_view --> user : // ask for confirmation() user -> post_view : // confirm delete() post_view -> post_ctl : // delete post() post_ctl -> post_ent : // delete post() post_ent --> post_ctl post_ctl --> post_view destroy post_view @enduml
false
true
false
false
sequence
9d1693b936476c5fb34228e357412dbb2c661f68
7c738fd68e823c4457669c44149241e1fff5f592
/UML/uml-visitor.plantuml
bc96628674362a9fd0f3447bad672c7d2b3e4ad1
[]
no_license
CoziestYew804/Serveur-Client-Dessin
641f61bd56116beabbf4a0d3d8da2c1475700957
4caf67fddb48ae1c6650659beb5a9ec46381126e
refs/heads/master
2021-04-26T23:07:29.224960
2018-03-05T14:47:46
2018-03-05T14:47:46
123,933,944
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,222
plantuml
@startuml package Visitor { abstract class DrawingVisitor { +{abstract} draw(Cercle *s) +{abstract} draw(Segment *s) +{abstract} draw(Triangle *s) +{abstract} draw(Polygone *s) +{abstract} draw(Shape *s) } abstract class SaveVisitor { +{abstract} save(const Cercle *s, const string & filename) +{abstract} save(const Segment *s, const string & filename) +{abstract} save(const Triangle *s, const string & filename) +{abstract} save(const Polygone *s, const string & filename) +{abstract} save(const Shape *s, const string & filename) } class ServerDrawer { +ServerDrawer() +draw(Cercle *s) +draw(Segment *s) +draw(Triangle *s) +draw(Polygone *s) +draw(Shape *s) } class SaveTextVisitor { +save(const Cercle *s, const string & filename) +save(const Segment *s, const string & filename) +save(const Triangle *s, const string & filename) +save(const Polygone *s, const string & filename) +save(const Shape *s, const string & filename) } SaveVisitor <|-- SaveTextVisitor DrawingVisitor <|-- ServerDrawer } @enduml
false
true
false
false
class
74307dd728f300e9d08b429dee1638a154bcc8d4
9c60dd118fb7b4f777d651847e02bd1de8912c04
/documents/calssdiagram.puml
ca294f1d12b1bf272d3b4da1952d254d31b29f13
[]
no_license
osechiman/BulltienBoard
f0336872f219a673d79c0aa59e24133b47b50353
d5046a2d5d08e779a746513557f0a7ca743cef48
refs/heads/main
2022-10-19T23:57:07.007525
2022-09-19T05:41:35
2022-09-19T05:41:35
251,663,444
3
2
null
2022-10-02T10:07:41
2020-03-31T16:27:36
Go
UTF-8
PlantUML
false
false
13,157
puml
@startuml title BulitienBoard namespace api { class Router << (S,Aquamarine) >> { + BulletinBoardController *controllers.BulletinBoardController + BulletinBoardPresenter *presenters.BulletinBoardPresenter + ThreadController *controllers.ThreadController + ThreadPresenter *presenters.ThreadPresenter + CommentController *controllers.CommentController + CommentPresenter *presenters.CommentPresenter + ErrorPresenter *presenters.ErrorPresenter - listBulletinBoard(c *gin.Context) - getBulletinBoardByID(c *gin.Context) - postBulletinBoard(c *gin.Context) - postComment(c *gin.Context) - listComment(c *gin.Context) - responseByError(c *gin.Context, err error) - postThread(c *gin.Context) - getThreadByID(c *gin.Context) - listThread(c *gin.Context) } } "api.Router" o-- "controllers.BulletinBoardController" "api.Router" o-- "controllers.CommentController" "api.Router" o-- "controllers.ThreadController" "api.Router" o-- "presenters.BulletinBoardPresenter" "api.Router" o-- "presenters.CommentPresenter" "api.Router" o-- "presenters.ErrorPresenter" "api.Router" o-- "presenters.ThreadPresenter" namespace configs { class Config << (S,Aquamarine) >> { + Environment string } interface Configer { + Get() Config } class OsConfig << (S,Aquamarine) >> { - config Config + Get() Config } class YamlConfig << (S,Aquamarine) >> { - config Config + Get() Config } } "configs.Configer" <|-- "configs.OsConfig" "configs.Configer" <|-- "configs.YamlConfig" "configs.OsConfig" o-- "configs.Config" "configs.YamlConfig" o-- "configs.Config" namespace controllers { class BulletinBoard << (S,Aquamarine) >> { + ID string + Title string } class BulletinBoardController << (S,Aquamarine) >> { - bbu *usecases.BulletinBoardUsecase + GetBulletinBoardByID(ID string) (entities.BulletinBoard, error) + AddBulletinBoard(c *gin.Context) (entities.BulletinBoard, error) + ListBulletinBoard() ([]entities.BulletinBoard, error) } class Comment << (S,Aquamarine) >> { + ID string + ThreadID string + Text string } class CommentController << (S,Aquamarine) >> { - cu *usecases.CommentUsecase + AddComment(c *gin.Context) (entities.Comment, error) + ListComment() ([]entities.Comment, error) + ListCommentByThreadID(tID string) ([]entities.Comment, error) } class Thread << (S,Aquamarine) >> { + ID string + BulletinBoardID string + Title string } class ThreadController << (S,Aquamarine) >> { - tu *usecases.ThreadUsecase + GetThreadByID(ID string) (entities.Thread, error) + AddThread(c *gin.Context) (entities.Thread, error) + ListThread() ([]entities.Thread, error) + ListThreadByBulletinBoardID(bID string) ([]entities.Thread, error) } } "controllers.BulletinBoardController" o-- "usecases.BulletinBoardUsecase" "controllers.CommentController" o-- "usecases.CommentUsecase" "controllers.ThreadController" o-- "usecases.ThreadUsecase" namespace entities { class BulletinBoard << (S,Aquamarine) >> { + ID BulletinBoardIDer + Title string + Threads []Thread } interface BulletinBoardIDer { + Get() valueobjects.BulletinBoardID + String() string + Equals(id valueobjects.BulletinBoardID) bool } class Comment << (S,Aquamarine) >> { + ID CommentIDer + ThreadID ThreadIDer + Text string + CreateAt CommentTimer } interface CommentIDer { + Get() valueobjects.CommentID + String() string } interface CommentTimer { + Get() valueobjects.CommentTime + ToUnixTime() int64 + Equals(ct valueobjects.CommentTime) bool } class Thread << (S,Aquamarine) >> { + ID ThreadIDer + BulletinBoardID BulletinBoardIDer + Title string + Comments []Comment } interface ThreadIDer { + Get() valueobjects.ThreadID + String() string + Equals(id valueobjects.ThreadID) bool } } "entities.BulletinBoard" o-- "entities.BulletinBoardIDer" "entities.BulletinBoard" o-- "entities.Thread" "entities.Comment" o-- "entities.CommentIDer" "entities.Comment" o-- "entities.CommentTimer" "entities.Comment" o-- "entities.ThreadIDer" "entities.Thread" o-- "entities.BulletinBoardIDer" "entities.Thread" o-- "entities.Comment" "entities.Thread" o-- "entities.ThreadIDer" namespace errorobjects { class CharacterSizeValidationError << (S,Aquamarine) >> { - msg string - code int + Error() string } class InternalServerError << (S,Aquamarine) >> { - msg string - code int + Error() string } class MissingRequiredFieldsError << (S,Aquamarine) >> { - msg string - code int + Error() string } class NotFoundError << (S,Aquamarine) >> { - msg string - code int + Error() string } class ParameterBindingError << (S,Aquamarine) >> { - msg string - code int + Error() string } class ResourceLimitedError << (S,Aquamarine) >> { - msg string - code int + Error() string } } namespace gateways { class InMemoryRepository << (S,Aquamarine) >> { + GetBulletinBoardByID(ID valueobjects.BulletinBoardID) (entities.BulletinBoard, error) + AddBulletinBoard(b entities.BulletinBoard) error + ListBulletinBoard() ([]entities.BulletinBoard, error) + ListThread() ([]entities.Thread, error) + ListThreadByBulletinBoardID(bID valueobjects.BulletinBoardID) ([]entities.Thread, error) + GetThreadByID(ID valueobjects.ThreadID) (entities.Thread, error) + AddThread(t entities.Thread) error + ListComment() ([]entities.Comment, error) + ListCommentByThreadID(tID valueobjects.ThreadID) ([]entities.Comment, error) + AddComment(c entities.Comment) error + DeleteAll() + DeleteBulletinBoard() error + DeleteThread() + DeleteComment() } } "usecases.BulletinBoardRepositorer" <|-- "gateways.InMemoryRepository" "usecases.CommentRepositorer" <|-- "gateways.InMemoryRepository" "usecases.ThreadRepositorer" <|-- "gateways.InMemoryRepository" namespace logger { class LogColumns << (S,Aquamarine) >> { + PID string + UA string + Path string + Body []byte + Error(c *gin.Context, msg <font color=blue>interface</font>{}) + Info(c *gin.Context, msg <font color=blue>interface</font>{}) + Debug(c *gin.Context, msg <font color=blue>interface</font>{}) + Warn(c *gin.Context, msg <font color=blue>interface</font>{}) } interface Logger { + Error(c *context.Context, msg <font color=blue>interface</font>{}) + Info(c *context.Context, msg <font color=blue>interface</font>{}) + Debug(c *context.Context, msg <font color=blue>interface</font>{}) + Warn(c *context.Context, msg <font color=blue>interface</font>{}) } } namespace presenters { class BulletinBoard << (S,Aquamarine) >> { + ID string + Title string + Threads []Thread } class BulletinBoardPresenter << (S,Aquamarine) >> { + ConvertToHTTPBulletinBoardListResponse(bbl []entities.BulletinBoard) *HTTPResponse + ConvertToHTTPBulletinBoardResponse(bb entities.BulletinBoard) *HTTPResponse } class Comment << (S,Aquamarine) >> { + ID string + ThreadID string + Text string + CreatAt int64 } class CommentPresenter << (S,Aquamarine) >> { + ConvertToHTTPCommentListResponse(cl []entities.Comment) *HTTPResponse + ConvertToHTTPCommentResponse(c entities.Comment) *HTTPResponse } class ErrorPresenter << (S,Aquamarine) >> { + ConvertToHTTPErrorResponse(err error) *HTTPResponse } class HTTPResponse << (S,Aquamarine) >> { + Items <font color=blue>interface</font>{} } class Thread << (S,Aquamarine) >> { + ID string + BulletinBoardID string + Title string + Comments []Comment } class ThreadPresenter << (S,Aquamarine) >> { + ConvertToHTTPThreadListResponse(tl []entities.Thread) *HTTPResponse + ConvertToHTTPThreadResponse(t entities.Thread) *HTTPResponse } } "presenters.BulletinBoard" o-- "presenters.Thread" "presenters.Thread" o-- "presenters.Comment" namespace usecases { interface BulletinBoardRepositorer { + GetBulletinBoardByID(ID valueobjects.BulletinBoardID) (entities.BulletinBoard, error) + ListBulletinBoard() ([]entities.BulletinBoard, error) + AddBulletinBoard(bb entities.BulletinBoard) error + DeleteBulletinBoard() error } class BulletinBoardUsecase << (S,Aquamarine) >> { + BulletinBoardRepository BulletinBoardRepositorer + ThreadRepository ThreadRepositorer + GetBulletinBoardByID(ID valueobjects.BulletinBoardID) (entities.BulletinBoard, error) + AddBulletinBoard(bb entities.BulletinBoard) error + ListBulletinBoard() ([]entities.BulletinBoard, error) } interface CommentRepositorer { + ListComment() ([]entities.Comment, error) + ListCommentByThreadID(tID valueobjects.ThreadID) ([]entities.Comment, error) + AddComment(c entities.Comment) error } class CommentUsecase << (S,Aquamarine) >> { + CommentRepository CommentRepositorer + ThreadRepository ThreadRepositorer + AddComment(c entities.Comment) error + ListComment() ([]entities.Comment, error) + ListCommentByThreadID(tID valueobjects.ThreadID) ([]entities.Comment, error) } interface ThreadRepositorer { + GetThreadByID(ID valueobjects.ThreadID) (entities.Thread, error) + ListThread() ([]entities.Thread, error) + ListThreadByBulletinBoardID(bID valueobjects.BulletinBoardID) ([]entities.Thread, error) + AddThread(t entities.Thread) error } class ThreadUsecase << (S,Aquamarine) >> { + ThreadRepository ThreadRepositorer + BulletinBoardRepository BulletinBoardRepositorer + CommentRepository CommentRepositorer + GetThreadByID(ID valueobjects.ThreadID) (entities.Thread, error) + AddThread(t entities.Thread) error + ListThread() ([]entities.Thread, error) + ListThreadByBulletinBoardID(bID valueobjects.BulletinBoardID) ([]entities.Thread, error) } } "usecases.CommentRepositorer" <|-- "usecases.CommentUsecase" "usecases.ThreadRepositorer" <|-- "usecases.ThreadUsecase" "usecases.BulletinBoardUsecase" o-- "usecases.BulletinBoardRepositorer" "usecases.BulletinBoardUsecase" o-- "usecases.ThreadRepositorer" "usecases.CommentUsecase" o-- "usecases.CommentRepositorer" "usecases.CommentUsecase" o-- "usecases.ThreadRepositorer" "usecases.ThreadUsecase" o-- "usecases.BulletinBoardRepositorer" "usecases.ThreadUsecase" o-- "usecases.CommentRepositorer" "usecases.ThreadUsecase" o-- "usecases.ThreadRepositorer" namespace valueobjects { class BulletinBoardID << (S,Aquamarine) >> { - id bulletinBoardID - str string + Get() BulletinBoardID + String() string + Equals(other BulletinBoardID) bool } class CommentID << (S,Aquamarine) >> { - id commentID - str string + Get() CommentID + String() string + Equals(other CommentID) bool } class CommentTime << (S,Aquamarine) >> { - unixTime int64 + Get() CommentTime + ToUnixTime() int64 + Equals(other CommentTime) bool } class ThreadID << (S,Aquamarine) >> { - id threadID - str string + Get() ThreadID + String() string + Equals(other ThreadID) bool } class valueobjects.bulletinBoardID << (T, #FF7700) >> { } class valueobjects.commentID << (T, #FF7700) >> { } class valueobjects.threadID << (T, #FF7700) >> { } class "uuid.UUID" as uuidUUID { 'This class was created so that we can correctly have an alias pointing to this name. Since it contains dots that can break namespaces } } "entities.BulletinBoardIDer" <|-- "valueobjects.BulletinBoardID" "entities.CommentIDer" <|-- "valueobjects.CommentID" "entities.CommentTimer" <|-- "valueobjects.CommentTime" "entities.ThreadIDer" <|-- "valueobjects.ThreadID" "valueobjects.BulletinBoardID" o-- "valueobjects.bulletinBoardID" "valueobjects.CommentID" o-- "valueobjects.commentID" "valueobjects.ThreadID" o-- "valueobjects.threadID" "valueobjects.uuidUUID" #.. "valueobjects.bulletinBoardID" "valueobjects.uuidUUID" #.. "valueobjects.commentID" "valueobjects.uuidUUID" #.. "valueobjects.threadID" @enduml
false
true
false
false
class
fb5a9201a97596a37a0e167ed665ff761b0132e7
031f59d0ac223b4ec8df4cf4582542a7485b738d
/templates/packageDiagram.puml
49b58147e9161a22bcf0574e9930a7fb8ca6fe49
[ "MIT" ]
permissive
mhwdvs/plantuml-templates
1500b0818bb051be2e670baace5f394b964fc397
17092ce3b88a3b3a1fbc1c84932d90bbdaf303c1
refs/heads/main
2023-05-31T15:31:53.470009
2021-06-10T06:44:20
2021-06-10T06:44:20
375,232,705
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,153
puml
@startuml Package Diagram skinparam linetype polyline 'skinparam linetype ortho top to bottom direction ' ------ TEMPLATE STARTS HERE ------ '/' package "View Layer" as vl { rectangle SearchItemWindow rectangle ViewAccessWindow rectangle AddItemWindow rectangle AddAccessWindow rectangle "DisplayItem+ViewAccessWindow" as dipvaw rectangle DisplayItemWindow } package "Domain Layer" as dl { rectangle CartHandler rectangle OnlineCart rectangle CartItem rectangle PromoOffering rectangle ProductItem rectangle CustomerHandler rectangle Customer rectangle Address rectangle Account rectangle InventoryItem } package "Data Access Layer" as dal { rectangle CustomerDA rectangle OnlineCartDA rectangle CartItemDA rectangle PromoOfferDA rectangle ProductItemDA rectangle InventoryItemDA } vl -[dashed]-> dal dl -[dashed]-> dal AddItemWindow -[dashed]-> CartItem AddAccessWindow -[dashed]-> CartItem SearchItemWindow -[dashed]-> ProductItem ViewAccessWindow -[dashed]-> ProductItem dipvaw -[dashed]-> InventoryItem DisplayItemWindow -[dashed]-> InventoryItem '/ @enduml
false
true
false
false
uml-unknown
9022738d048e17912a6107ae9e66458373b01c22
02a364d6cc772a9bf2e72d02dbecca74ac14d335
/eCommerce-Core-2/DPLRef.eCommerce/plantuml/DPLRef.eCommerce.Engines/Sales/ICartPricingEngine.puml
8e537106f56b53c40e25de613d21c88335b62523
[ "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
146
puml
@startuml interface ICartPricingEngine { GenerateCartPricing(cart:Cart) : WebStoreCart } IServiceContractBase <|-- ICartPricingEngine @enduml
false
true
false
false
class
c300ed46eacce7ba0e7be756d3afb77e92331ff1
b22aab4195a0d8dabe96c1cff1fd3692e86e076a
/pushly.plantuml
9d92005bceef7273bb0bf045ae7ada7aecb3a072
[]
no_license
NareshDonthula/pushscripts
678d54187ea0228f67b5421ae6ee9b46f20e1da1
997e5fa04e52608a32416afff1f053bec67f867b
refs/heads/master
2022-04-06T03:07:08.425493
2019-11-22T10:35:25
2019-11-22T10:35:25
229,723,103
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,099
plantuml
@startuml Pushly class Pushly { +visitorInfo: Object -init() -setTokenSentToServer() -sendTokenToServer() -isTokenSentToServer() -storeToken() } class ClientInfo { -detectFirebase() } class PushlyServerFirebase { -init() -getPushlySideApproval() -isPushPermissionGranted() -checkPermissionStatus() -openChildWindow() -closeChildWindow() -setDenySession() } class PushlyFirebase { +firebaseDetails: Object -init() -getClientSideApproval() -getFirebaseToken() } class PushlyFirebaseListener { +executionMessageApi: String +messageApi: String +subscriptionObject: Object +url: String +launchUrl: String -init() -saveUserAction() } class GlobalConstants { +pushlyCloudUrl: String +serverUrl: String +pushlyPopupHtml: String } Pushly -down-> Node.500appsweb Pushly -down-> ClientInfo Pushly -down-> GlobalConstants ClientInfo -down-> PushlyFirebase ClientInfo -down-> PushlyServerFirebase PushlyFirebase -up-> Pushly @enduml
false
true
false
false
class
c845179a8a8bf768a9adfa617123624db34caa71
c095c92e49a0b3f4e2389c397bde53ed5f992bdb
/exercise41/docs/Classes.puml
88c251e3c2cb028b538d27c1b7a89a54a601adae
[]
no_license
CapOregon9/bagherzadeh-a04
f62ff06ca9e9846f373787659e468bc27b0c7de9
40f311ac5de08ad5916f90f619f7133ccebaa21a
refs/heads/main
2023-08-12T17:25:18.482458
2021-10-18T03:30:18
2021-10-18T03:30:18
415,194,875
0
0
null
null
null
null
UTF-8
PlantUML
false
false
244
puml
@startuml class Solution41 { main(String[]) } Solution41 -- FileSort class FileSort { -ArrayList<String>: names +List<String>: getNames() +void: readInputFile() +void: sortNames() +void: createOutputFIle() } @enduml
false
true
false
false
class
dad9d732bce5cb47b95f51de67ef96de0eb181b8
c8e5514bd3ea44e6613f469e88bc0562ba16ae62
/src/site/sphinx/formatting/puml/colors/Aquamarine.puml
6af663f10f947ea048b2797cb49d77b49c19fe9a
[]
no_license
weedySeaDragon/plantuml-documentation
1dc30b9afcedaf1afe153cd9bbaa2c3246a769ba
3c23cd2cd7fc1b4a85423ef9861711907fab2296
refs/heads/develop
2022-12-09T05:57:04.055959
2022-05-12T16:05:20
2022-05-12T16:05:20
165,910,589
55
6
null
2022-11-22T10:34:29
2019-01-15T19:28:35
SCSS
UTF-8
PlantUML
false
false
319
puml
@startuml skinparam ClassBackgroundColor #Aquamarine skinparam ClassFontColor #Aquamarine skinparam ClassBorderColor #Aquamarine skinparam ClassStereotypeFontSize 0 skinparam CircledCharacterFontSize 0 skinparam CircledCharacterRadius 0 skinparam ClassBorderThickness 0 skinparam Shadowing false class Dummy @enduml
false
true
false
false
class
246e1e08b1945108cae39dad1b595bac10a8491d
80905daea20f037ad1e90829c67947b7b95816b0
/code/12_UMLIII/Graphs/UseCaseOnlineShopI.plantUML
17d0341e276b96093124fe5c984c7356959a92dc
[]
no_license
Divino21/CsharpCourse
7916b7b892fc3858ea3697f39e1fcd802fa2d475
473d92cd96346d005979770bdcae020cf4bbf0c4
refs/heads/master
2022-11-22T05:43:24.789564
2020-07-31T01:47:22
2020-07-31T01:47:22
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
293
plantuml
@startuml left to right direction skinparam packageStyle rectangle actor Kunde rectangle Online-Shop { Kunde -- (Artikel auswählen) Kunde -- (Anschrift eingeben) Kunde -- (Zahlungsmethode wählen) Kunde -- (Daten für Bezahlung eingeben) Kunde -- (Bestellung absenden) } @enduml
false
true
true
false
usecase
0e5776f5126788a912478a8fb85ab8e0009e32b8
ce0a35dad1712525416324102fb4be5fce00a85c
/ClassDiagramCarRental.plantuml
e9d78ae1bd1aaf70e078054068cb099424495403
[]
no_license
binhtran432k/Lab_OOP-L01-Bida
9f17c6a8fbd82ada4f4486aabeddb130d8a49749
77a50f8e2a4f419166dc8aeb9ba874660fc96630
refs/heads/main
2023-01-31T19:52:11.311089
2020-12-10T04:12:04
2020-12-10T04:12:04
306,873,501
0
0
null
null
null
null
UTF-8
PlantUML
false
false
3,263
plantuml
@startuml class-diagram-car-rental-company title Class diagram of car rental company skinparam ClassAttributeIconSize 0 'skinparam WrapWidth 200 'Use for straight line but now it error skinparam Linetype ortho hide circle skinparam Monochrome true Class User <<abstract>> { - _id: string - _name: string - _phone: string - _password: string + Login(): void + Logout(): void + ViewProfile(): void + UpdateProfile(): void + ViewCarList(): void } Class Customer { - _licenseNo: string - _expireDate: string + ViewMyRentals(): void } Class Staff { + AddVehicle(): void + RemoveVehicle(vecId: string): void + UpdateVehicle(vecId: string): void + ViewCustomerList(): void + ViewDailyReport(): void + ViewMonthLyReport(): void } Class Report { - _dateCreate: DateTime } Class StaffList { - _staffList: Staff[] } Class CustomerList { - _customerList: Customer[] } Class Contract { - _id: string - _customerId: string - _vehicle: Vehicle - _total: double - _startDate: DateTime - _endDate: DateTime - _status: Status } Class ContractList { - _contractList: Contract[] } Class Vehicle { - _id: string - _name: string - _color: string - _brand: string - _numberOfSeat: int - _condition: double - _year: int - _price: double - _available: bool } Class Garage { - _vehicleList: Vehicle[] - _location: string - _capacity: int + ShowAvailableVehicle(): void } Class IListManagement <<interface>>{ + AddItem(): void + RemoveItem(itemId: string): void + UpdateItem(itemId: string): void + ShowItemList(): void } Class IReportGenerator <<interface>> { + GenerateDailyReport(): void + GenerateMonthlyReport(): void + ExportPdf(): void + ExportExcel(): void + PrintReport(): void } Class ISearchCar <<interface>> { + SearchByName(name: string): Vehicle + SearchByColor(color: string): Vehicle + SearchByBrand(brand: string): Vehicle } Class IRentCar <<interface>> { + CreateContract(): void + ViewVehicleInfo(): void + PickupVehicle(): void + ReturnVehicle(): void + PrintContract(): void + CancelContract(): void } Class ISaleCalculator <<interface>> { + CalculateTotalSale(): double + CalculateDailySale(): double + CalculateMonthlySale(): double } Class Status <<enumerate>> { + PENDING + READY + FINISH + CANCEL } 'BEGIN: CLASS RELATION User <|-- Customer User <|-- Staff StaffList "1" -- "1..*" Staff CustomerList "1" -- "0..*" Customer 'Customer-CustomerList Customer "1" -- "1" Contract 'Staff-StaffList Staff "1..*" -- "0..*" Report Staff "1..*" -- "1" Garage 'Report-Staff 'Contract-Customer Contract "1" -- "1" Vehicle Contract "1..*" -- "1" ContractList 'Vehicle-Contract Vehicle "0..*" -- "1" Garage 'Garage-Vehicle 'ContractList-Contract IListManagement <|.. CustomerList IListManagement <|.. ContractList IListManagement <|.. StaffList IListManagement <|.. Garage IReportGenerator <|.. Report ISearchCar <|.. Staff ISearchCar <|.. Customer IRentCar <|.. Customer IRentCar <|.. Contract ISaleCalculator <|.. ContractList Status -- Contract 'END: CLASS RELATION @enduml
false
true
false
false
class
3b17ceda9c20dced82dc9dd77181b3cc28abf9fd
8eeaa622bd21c275f3c6995d3f1b3657b68b0618
/src/Docs/_new/2-internals/1-core/10-erd/_puml/erd-shopware-core-system-tax.puml
065e107a72423933a37d8b8e11c98e971c7200dc
[ "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,189
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(ShopwareCoreSystemTaxTaxDefinition, "tax\n(Available tax settings)") { primary_key(id) id not_null(taxRate) float not_null(name) string customFields customFields not_null(createdAt) createdAt not_null(updatedAt) updatedAt } ForeignTable(ShopwareCoreContentProductProductDefinition, "product") { } ' relationshipd ShopwareCoreSystemTaxTaxDefinition --> ShopwareCoreContentProductProductDefinition @enduml
false
true
false
false
uml-unknown
18dc9595946451f8092cdce2d3a03f300b6271b1
4e5b1b7af4b1217177bf574601fe214faec5d132
/Documentation/ComponentDiag.PLANTUML
1457706a28477b1db0ab26a871470663bfef9a69
[]
no_license
pepema/EGsim
730444eda33780f951b8c706a1b5d74b06a94764
b0a436101fc4642127435c4d81c9c01568ff362b
refs/heads/main
2023-01-19T19:33:25.538482
2020-11-27T15:52:13
2020-11-27T15:52:13
308,610,011
0
0
null
2020-11-24T10:25:28
2020-10-30T11:25:37
C++
UTF-8
PlantUML
false
false
347
plantuml
@startuml Component Diagram package "Input Generator"{ [Input Handler] } package "Engine Simulator"{ [CAN Reader] [Transmition] [CAN Writer] } KeyPresses --> [Input Handler] [Input Handler] --> CANInput CANInput --> [CAN Reader] [CAN Reader] -> [Transmition] [Transmition] -> [CAN Writer] [CAN Writer] --> CANOutput @enduml }
false
true
false
false
uml-unknown
7c60e1543cdab74c599cb74c13264083a04522f1
45ae639aa80ed04376331845c991723cd984068d
/doc/usecases/diagrams/paymentInitEmbeddedExplicit.puml
058bf8d0a136db6014f3385507342ba3b0e2e69f
[ "Apache-2.0" ]
permissive
ggiorkhelidze/xs2a
a1b3a8abc002d37f8ab03983cff572a9c22117b4
f844081ac1c780eb95d5465a9603aa62787dc8b8
refs/heads/develop
2023-08-17T06:42:13.153059
2021-10-08T05:43:33
2021-10-08T05:43:33
329,286,507
0
0
Apache-2.0
2021-01-13T11:28:29
2021-01-13T11:28:29
null
UTF-8
PlantUML
false
false
5,895
puml
@startuml actor PSU entity TPP entity XS2A entity CMS entity SPI entity ASPSP == Payment Initiation with Embedded approach explicit authorisation mode== PSU->TPP: Initiate payment activate TPP TPP -> XS2A: REST Call Initiate payment\nPOST "/v1/payments/{payment-product}" activate XS2A XS2A->SPI: Java Call SPIinitiatePayment activate SPI ||| SPI-->XS2A: SpiSinglePaymentInitiationResponse deactivate SPI XS2A->CMS: Save payment ||| XS2A-->TPP:Payment initiation response ||| TPP->XS2A: REST Call Start authorisation\nPOST"/v1/{payment-service }/{payment-product}/\n{paymentId}/authorisations" note left in case of Multilevel SCA the authorisation steps should be repeated for each PSU end note ||| XS2A->SPI: Start authorisation request \n(payment, Authorisation ID, SCA status, resolved SCA approach) activate SPI SPI->ASPSP: Authorisation request activate ASPSP ASPSP-->SPI: Authorisation response \n(chosen SCA approach, PSU message, SCA status) deactivate ASPSP SPI-->XS2A: Start Authorisation response deactivate SPI XS2A->CMS: Save Authorisation XS2A-->TPP:Start authorisation response\n"link_updatePsuWithAuthentication" deactivate XS2A ||| TPP-->PSU: Feedback to the customer\n"Please enter your User-id & password" deactivate TPP activate PSU ||| PSU->TPP: PSU provide User-id & password deactivate PSU activate TPP ||| TPP->XS2A: REST Call Update PSU data (Authentication)\n"PUT/v1/{payment-service}/{payment-id}/\n{payment-product}/authorisations/{authorisationId}" deactivate TPP activate XS2A ||| XS2A->SPI: Java Call PaymentAuthorisationSpi activate SPI ||| SPI->ASPSP: AuthorisedPsu activate ASPSP ||| ASPSP-->SPI: AuthorisedPsu Response deactivate ASPSP ||| SPI-->XS2A: SpiPsuAuthorisationResponse\nStatus with scaExempted (TRUE or FALSE) ||| XS2A->SPI: Java Call PaymentAuthorisationSpi ||| SPI-->XS2A: List "SpiAvailableScaMethodsResponse"\nwith scaExempted (TRUE or FALSE) deactivate SPI ||| XS2A->CMS: REST Call UpdatePisAuthorisation activate CMS ||| CMS-->XS2A: UpdatePisAuthorisation Response deactivate CMS ||| XS2A->TPP: UpdatePsuAuthenticationResponse deactivate XS2A activate TPP ||| TPP-->PSU: Feedback to the customer\n"Please select SCA method" activate PSU ||| PSU->TPP: SCA Method ||| TPP->XS2A: REST Call Update Psu data(Select Authentication Method)\n"PUT/v1/{payment-service}/{payment-id}/\n{payment-product}/authorisations/{authorisationId}" activate XS2A ||| XS2A->SPI: Java Call PaymentAuthorisationSpi activate SPI ||| SPI->ASPSP: SelectScaMethod activate ASPSP ||| ASPSP-->PSU: ScaAuthenticationData ||| ASPSP-->SPI: SelectScaMethod Respons deactivate ASPSP ||| SPI-->XS2A: SpiAuthorisationCodeResult\nwith scaExempted (TRUE or FALSE) deactivate SPI ||| XS2A->CMS: REST Call UpdatePisAuthorisation activate CMS ||| CMS-->XS2A: UpdatePisAuthorisation Response deactivate CMS ||| XS2A-->TPP:UpdatePsuAuthenticationResponse deactivate XS2A ||| PSU->TPP: Provide Authentication Data ||| TPP->XS2A: REST Call Transaction Authorisation\n"PUT/v1/{payment-service}/{payment-id}/\n{payment-product}/authorisations/{authorisationId}" deactivate TPP activate XS2A ||| XS2A->SPI: Java Call SinglePaymentSpi activate SPI ||| SPI-->ASPSP: Authorised Payment activate ASPSP ||| ASPSP-->SPI: Authorised Payment Response deactivate ASPSP ||| SPI-->XS2A: SpiPaymentExecution Response deactivate SPI ||| XS2A->CMS: REST Call UpdatePisAuthorisation activate CMS ||| CMS-->XS2A: UpdatePisAuthorisation Response deactivate CMS ||| XS2A-->TPP: Transaction Authorisation Response deactivate XS2A activate TPP ||| TPP-->PSU: Feedback to the customer:\n"Payment Authorised" deactivate PSU ||| TPP->XS2A: REST Call get payment status\n"GET/v1/{payment-service}/{paymentId}/status" activate XS2A XS2A->CMS: REST Call GetPaymentById activate CMS ||| CMS-->XS2A: Payment Object Response deactivate CMS ||| XS2A->SPI: Java Call SPI GetPaymentStatusByid activate SPI ||| SPI->ASPSP: GetPaymentStatusById activate ASPSP ||| ASPSP-->SPI: Transaction Status Response deactivate ASPSP ||| SPI-->XS2A: Transaction Status Response deactivate SPI ||| XS2A->CMS: REST Call UpdateTransactionStatus activate CMS ||| CMS-->XS2A: UpdateTransactionStatus Response deactivate CMS ||| XS2A-->TPP: Transaction Status Response ||| TPP->XS2A: REST Call Get Payment Request\n"GET/v1/{payment-service}/{paymentId}" ||| XS2A->CMS: REST Call GetPaymentById activate CMS ||| CMS-->XS2A: Payment Object Response deactivate CMS ||| XS2A->SPI: Java Call SpiGetPaymentbyId activate SPI ||| SPI->ASPSP: GetPaymentById activate ASPSP ||| ASPSP-->SPI: Payment Object Response deactivate ASPSP ||| SPI-->XS2A: SpiSinglePayment /\nSpiPeriodicPayment /\nSpiBulkPayment /\nSpiPaymentInfo Response deactivate SPI ||| XS2A->CMS: REST Call UpdatePayment activate CMS ||| CMS-->XS2A: UpdatePayment Response deactivate CMS ||| XS2A-->TPP: GetPayment Response ||| TPP->XS2A: REST Call Get Authorisation Sub-resources\n"GET/v1/{payment-service}/{payment-product}\n/{paymentId/authorisations}" ||| XS2A->CMS: GetAuthorisationsByPaymentId activate CMS ||| CMS-->XS2A: GetAuthorisationsByPaymentId Response deactivate CMS XS2A-->TPP: AuthorisationByPaymentIdsList Response ||| TPP->XS2A: REST Call Get Sca Status Request\n"GET/v1/{payment-service}/{payment-product}/\n{paymentId/authorisations}/{authorithationId}" ||| XS2A->CMS: REST Call getPaymentInitiationAuthorisationScaStatus activate CMS ||| CMS-->XS2A: getPaymentInitiationAuthorisationScaStatus Response deactivate CMS ||| XS2A->SPI: Java Call getScaStatus activate SPI ||| SPI->ASPSP: getScaStatus activate ASPSP ||| ASPSP-->SPI: getScaStatus Response deactivate ASPSP SPI->XS2A: SpiScaStatusResponse deactivate SPI ||| XS2A->CMS: REST Call UpdateAuthorisationStatus activate CMS ||| CMS-->XS2A: UpdateAuthorisationStatus Response ||| deactivate CMS ||| XS2A-->TPP: Get Sca Status Response deactivate TPP deactivate XS2A @enduml
false
true
false
false
usecase
38f02881233842200d25dd34c7ec834b2dc7c637
e594997734c6fa96f9a6d94448d48f553cbd3968
/puml/ants.puml
774214b309dca516d1b0336b2e0ca89c5eb9b651
[]
no_license
huangxingx/huangxingx.github.io
c3ece3c95be39e89fa62f762f49e32d75c77d285
74cb4e878ee19efe2b836b7cd8ab83a6a13d97fe
refs/heads/master
2023-07-19T06:35:39.636740
2023-07-06T01:10:28
2023-07-06T01:10:28
130,047,401
1
0
null
2023-03-01T06:27:14
2018-04-18T10:44:24
JavaScript
UTF-8
PlantUML
false
false
623
puml
@startuml ants class Pool { workerArray workers state + NewPool() + Submit() + Free() + Cap() + Release() + Reboot() } class goWorker { Pool pool task -run() } interface workerArray{ -len() int -isEmpty() bool -insert(worker *goWorker) error -detach() *goWorker -retrieveExpiry(duration time.Duration) []*goWorker -reset() } class loopQueue{ goWorker[] goWorker } class workerStack{ goWorker[] goWorker } Pool <-- goWorker Pool -> workerArray workerArray <|-- loopQueue workerArray <|-- workerStack loopQueue o-- goWorker workerStack o-- goWorker @enduml
false
true
false
false
state
8fa799515e9394513bae83fdc54422cbfdca2e23
605cac101260b1b451322b94580c7dc340bea17a
/malokhvii-eduard/malokhvii05/doc/plantuml/ua/khpi/oop/malokhvii05/util/algorithms/search/SearchAlgorithmFactory.puml
d3e56a8f1a412794b62a13ac8f87266efe636f91
[ "MIT" ]
permissive
P-Kalin/kit26a
fb229a10ad20488eacbd0bd573c45c1c4f057413
2904ab619ee48d5d781fa3d531c95643d4d4e17a
refs/heads/master
2021-08-30T06:07:46.806421
2017-12-16T09:56:41
2017-12-16T09:56:41
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
747
puml
@startuml class SearchAlgorithmFactory { {static} -classMapping: Map<String, Class<?>> {static} -defaultAlgorithm: Class<?> -SearchAlgorithmFactory() {static} +getAlgorithm(String): SearchAlgorithm<T> {static} +getAlgorithm(String, Comparator<T>): SearchAlgorithm<T> {static} +getDefaultAlgorithm(): SearchAlgorithm<T> {static} +getDefaultAlgorithm(Comparator<T>): SearchAlgorithm<T> {static} +getRegisteredAlgorithms(): Set<String> {static} -loadBasicAlgorithms(): void {static} +registerAlgorithm(String, Class<?>): void {static} +setDefaultAlgorithm(Class<?>): void {static} ~unregisterAlgorithm(String): void } @enduml
false
true
false
false
class
a93b73a2a6e936d2b9d9b71624ceada3a2af0b77
63114b37530419cbb3ff0a69fd12d62f75ba7a74
/plantuml/Library/PackageCache/com.unity.timeline@1.2.17/Editor/Activation/ActivationTrackEditor.puml
cfd2ecefae427946585251ece48a98ab4194ab6f
[]
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
461
puml
@startuml class ActivationTrackEditor { {static} <<readonly>> ClipText : string {static} <<readonly>> k_ErrorParentString : string {static} <<readonly>> k_ErrorString : string + <<override>> GetTrackOptions(track:TrackAsset, binding:Object) : TrackDrawOptions GetErrorText(track:TrackAsset, binding:Object) : string + <<override>> OnCreate(track:TrackAsset, copiedFrom:TrackAsset) : void } TrackEditor <|-- ActivationTrackEditor @enduml
false
true
false
false
class
949c4064b9f17b54b69836ed3cde7c6f590aa938
c3287e91ce0ebce396cd3966de3d2f7d90131c20
/Plantuml/Common/Entities/Tour.puml
9ca61763ca841544f3d5d9d2960c89862cc67df4
[]
no_license
kretmatt/SWE2-Tourplanner
497ec2e888112bd3d67a0f2b97e7c1e8e0348371
f064500ae5b913b00671f358a586011affcdaf00
refs/heads/main
2023-05-12T11:48:29.605417
2021-06-06T21:53:11
2021-06-06T21:53:11
341,115,114
0
0
null
null
null
null
UTF-8
PlantUML
false
false
457
puml
@startuml class Tour { + Tour() + Id : int <<get>> <<set>> + Name : string <<get>> <<set>> + StartLocation : string <<get>> <<set>> + EndLocation : string <<get>> <<set>> + RouteInfo : string <<get>> <<set>> + Distance : double <<get>> <<set>> + Description : string <<get>> <<set>> } class "List`1"<T> { } Tour --> "RouteType" ERouteType Tour --> "Maneuvers<Maneuver>" "List`1" Tour --> "TourLogs<TourLog>" "List`1" @enduml
false
true
false
false
class
98fde150a5b75be1da89cdb6d6504b2a31da1fee
e618e68be491bb98c0573a467be63146a053cc6c
/SA/sequencediagram/checker/simple/CheckTransaction.puml
757688332609c931dff8b316888c997cd14bd4ab
[]
no_license
dedeandress/belanjayukid-be-services
14101c676e2bdd56c5df72b9ccddae648951cf8b
9bedbf42cdd0b764e27c9dc839df8b401ac0bb62
refs/heads/master
2022-04-07T04:29:30.602535
2020-02-28T05:39:33
2020-02-28T05:39:33
194,123,362
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,126
puml
@startuml title: Check Transaction Sequence Diagram actor user participant CheckerApps box "BelanjaYuk.id" #LightBlue participant AppController participant TransactionService end box user -> CheckerApps ++ : check transaction menu activate user CheckerApps -> AppController ++ : /graphql check transaction note right of CheckerApps content type: application/json request body: mutation{ checkTransaction( checkTransactionInput ) } CheckTransactionInput( transactionId, [checkTransactionDetailInput] ) CheckTransactionDetailInput( transactionDetailId, status ) end note AppController -> AppController : parseGraphql() AppController -> TransactionService ++ : call checkTransaction() note left passing: - context - checkTransactionInput end note TransactionService --> AppController : check transaction completed AppController --> CheckerApps : check transaction completed CheckerApps --> user : transaction completed deactivate user @enduml
false
true
false
false
usecase
f411cd1107a7e1015925b0df502ff524dad54aa4
fb287d09356b5ea9c4cfcd2756ac3fab4548d945
/app/src/main/java/me/jameshunt/inmotiontestapplication/settings/Setting.puml
582c014e708ab4f2d8ac61fe1f7bd93b189bcf62
[]
no_license
huntj88/FlowSampleApp
f7a47757e3261d1e22d8353dfcd544e9fcc99697
614496d86875daf7f183dfed897062e4f0c88f3a
refs/heads/master
2021-07-15T08:25:33.907226
2020-07-14T07:34:42
2020-07-14T07:34:42
187,927,781
0
0
null
2019-11-04T04:31:28
2019-05-21T23:22:53
Kotlin
UTF-8
PlantUML
false
false
237
puml
@startuml [*] -> Settings Settings --> UserSettings Settings --> Logout Settings --> Back Settings --> NotLoggedIn UserSettings --> Settings Logout --> Settings NotLoggedIn --> Login NotLoggedIn --> Back Login --> Settings @enduml
false
true
false
false
uml-unknown
a94a5a731fef95c9535533ac7ed3ee4fe224c8cf
c3871e3e33b6862aa9747997af2d9f5e714a00c7
/app/src/main/java/com/lt/personal_stadiumbookingsystem/ui/adapter/adapter.plantuml
578b1c68aae6284a74ac01518a6395f1e15ef09a
[]
no_license
zuilintan/Personal_StadiumBookingSystem_Client
47610baea349acbc4d6b4744aacedc134ba53a0d
c5bd349196cf4c8bf95c1b0979e4b75de625a926
refs/heads/master
2020-06-03T22:25:35.310902
2019-06-13T12:12:41
2019-06-13T12:12:41
191,756,309
4
0
null
null
null
null
UTF-8
PlantUML
false
false
1,813
plantuml
@startuml title __ADAPTER's Class Diagram__\n package com.lt.personal_stadiumbookingsystem { package com.lt.personal_stadiumbookingsystem.ui.adapter { class GymAdapter { + GymAdapter() # initView() # updateView() } } } package com.lt.personal_stadiumbookingsystem { package com.lt.personal_stadiumbookingsystem.ui.adapter { class HistoryAdapter { + HistoryAdapter() # initView() # updateView() - showOrderState() } } } package com.lt.personal_stadiumbookingsystem { package com.lt.personal_stadiumbookingsystem.ui.adapter { class SiteAdapter { + SiteAdapter() # initView() # updateView() } } } package com.lt.personal_stadiumbookingsystem { package com.lt.personal_stadiumbookingsystem.ui.adapter { class TimeAdapter { - mCslTimes : int[] - mTimeStarts : int[] - mTimeEnds : int[] - mTimeExpireStates : int[] - mTimeOrderStates : int[] + TimeAdapter() # initView() # updateView() - initData() } } } GymAdapter -up-|> BaseRecyclerViewAdapter HistoryAdapter -up-|> BaseRecyclerViewAdapter HistoryAdapter o-- ConfirmDialog : mPayDialog HistoryAdapter o-- ConfirmDialog : mCancelDialog SiteAdapter -up-|> BaseRecyclerViewAdapter TimeAdapter -up-|> OnClickListener TimeAdapter -up-|> BaseRecyclerViewAdapter TimeAdapter o-- DataCallBack : mBookCallBack TimeAdapter o-- ConfirmDialog : mBookDialog 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
5835ed26a96f35cc931942ffa71c7dce1750c8a5
967db7f88bdf0e5cb8feca9571b9e85175f7bcc8
/docs/Solution/Services/service/UseCases.puml
874107a5c8fb90d114e8660b72ad568958b2c99a
[]
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
266
puml
@startuml rectangle "Diagram TBD" @enduml left to right direction actor :User: actor :SubSystem: rectangle "service Service" #lightblue { UseCase UC1 as "Use Case1" UseCase UC2 as "Use Case2" User --> UC1 UC1 --> UC2 UC2 --> SubSystem }
false
true
false
false
usecase
e3c654bb94a8068ded4f628b32382f9ce75579f1
9f38c66cd0b9a5dc252e6af9a3adc804915ff0e9
/java/resources/plantuml/structural/proxy-class.puml
1c29e4a5f618dd59cd7b8dd3d62077a8ac892005
[ "MIT" ]
permissive
vuquangtin/designpattern
4d4a7d09780a0ebde6b12f8edf589b6f45b38f62
fc672493ef31647bd02c4122ab01992fca14675f
refs/heads/master
2022-09-12T07:00:42.637733
2020-09-29T04:20:50
2020-09-29T04:20:50
225,505,298
0
0
null
2022-09-01T23:16:34
2019-12-03T01:41:33
Java
UTF-8
PlantUML
false
false
328
puml
@startuml scale 1024 height title Proxy Pattern interface Subject { + request() } class RealSubject class Proxy { - preRequest() - afterRequest() } Subject <|.. RealSubject Subject <|.. Proxy RealSubject <- Proxy note "request() {\npreRequest()\nrealSubject.request()\nafterRequest()\n}" as N1 N1 .. Proxy @enduml
false
true
false
false
class
4c3f063b559841a90c744468c0d0f2e867ed30f2
667457a50cde145fcfdfd9569fd158ef6ecda00a
/re/cloud-infrastructure.comp.puml
acbe0c51a3aa2c3e4699f3c4a673ac251682a2f5
[]
no_license
aanno/arch-examples
5397d06878ec0eede0197e9e8248fe0ec59f884b
da2e9bff291e1e377f118ad807b5436293fa3a9a
refs/heads/main
2023-08-16T13:37:58.304340
2021-10-13T13:55:15
2021-10-13T13:55:15
413,471,830
0
0
null
null
null
null
UTF-8
PlantUML
false
false
833
puml
@startuml !pragma layout smetana !pragma horizontalLineBetweenDifferentPackageAllowed actor admin as admin [keycloak] as kc [AD] as ad kc <-r-> ad : federation cloud "docker-swarm" { [kc-gatekeeper] as gk [<<reverse proxy>>\ntraefik] as tf [portainer] package "cloud-native" { [microservices] as ms #LightBlue } [grafana] [prometheus] () "API Gateway" as in [ELK] as elk [jhipster\nregistry] as registry } admin -> gk : https gk -u-> kc : admin SSO gk -d-> tf : dispatch tf -d-> [portainer] : cloud management tf -> [grafana] tf -d-> elk : query logs [prometheus] -l-> [grafana] : alerting ms -d-> elk : central logging ms -l-> [prometheus] : monitoring ms <-d-> registry : register, get config ms -> kc : SSO actor user as user in <-u- user : https in -l-> ms : http @enduml
false
true
false
false
sequence
e1b11e3475efde2c25587bb543aaaceda76c1d0d
ddd27ef7207e3b508ba557b6f5ca1b2bd172a734
/app/UML/Olivia/OliviaConc3.puml
2074f54bda08254e062aaf5d5e884a63c0df8870
[]
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,270
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 -> CalculateCostController : onCreate() activate CalculateCostController CreateQuotePageController -> CalculateCostController : validate(True) CalculateCostController -> CalculateCostController : calculation(Int) CalculateCostController -> QuoteController : onCreate() activate QuoteController CalculateCostController -> QuoteController : Add Information to Quote QuoteController -> Server : Save Quote Cost activate Server @enduml
false
true
false
false
sequence
17afd561e87006684418814abbea1d95be500e39
b46a8b42d5963312e9d6650c83dd7515773a7672
/src/main/java/ex41/PlantUMLex41.puml
b5b7887d56da21fb9d443b8aa124ddee5a3bd27a
[]
no_license
spenserTac/tacinelli-cop3330-assignment3
d6d548922da24727ee275d94ae1a29aa14fe5b45
9558a55ef1a4ef559ecbf2ef1c934160669801ef
refs/heads/main
2023-08-02T17:03:44.736623
2021-10-08T21:22:57
2021-10-08T21:22:57
411,861,371
0
0
null
null
null
null
UTF-8
PlantUML
false
false
192
puml
@startuml 'https://plantuml.com/sequence-diagram class App { BufferedReader create_read_file() ArrayList<String[]> list_of_name(BufferedReader file) void main(String[] args) } @enduml
false
true
false
false
class
5e9de132933b1b3d11c3e37fd80ca8570e921d5b
b2be1f2c659ff90e5be7a97f52150c3f278e4c70
/behavioral_patterns/memento/memento.puml
7b4a8b7d2512adc06cb4a091a67688fa35fa7ec1
[]
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
185
puml
@startuml class Originator { restore(Memento) save() } class Memento { get_state() state } Originator ..> Memento class Caretaker { } Memento <--* Caretaker @enduml
false
true
false
false
state
52c7287a5ca243a387a4493d1b9f2f30d9c6b0a2
11c449725c13532b6cdb12d19b08c5c1a38f3a17
/60030007/execute.puml
fbb473dd5836002a593867122f5f5cc3806a15e7
[]
no_license
OOAD007/OOAD-WEEK11
d55b676bfbbc2bf72a323b19e32ddf6dfeb6721d
018479f336a881a15859444e7c18d3b29f8b1bd0
refs/heads/master
2022-06-12T06:30:09.851290
2020-05-03T12:53:24
2020-05-03T12:53:24
258,282,686
0
0
null
2020-04-23T17:37:21
2020-04-23T17:37:20
null
UTF-8
PlantUML
false
false
312
puml
@startuml execute skinparam Shadowing false skinparam state{ BackgroundColor LightPink BorderColor Brown } [*] -> Ready Ready : waiting instruction Ready -> Execute : Calling instruction Execute : executing instruction Execute --> Display : Executed Display : show executed Display --> [*] : end @enduml
false
true
false
false
sequence
7fe30f0b154e694310a8e3440dff33209da7a033
462b9598f08a48ab835f0b189d4d344560965227
/src/main/java/csheets/worklog/n1121060/sprint1/ipc01_01_ClassDiagram.puml
385562b429ff16c247392673a7c9b827689ba1cd
[]
no_license
VitorMascarenhas/LAPR4-2016
19f5593b98b81763f77021fb04278ed231337028
e53a5a46c0e09fbc155fb91f2010d50532de85d2
refs/heads/master
2020-03-19T10:31:05.321699
2018-06-06T19:49:19
2018-06-06T19:49:19
136,027,190
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,254
puml
@startuml doc-files/ipc01_01_ClassDiagram.png class ConfigurationManager class ConnectionManager extends Observable implements Observer class ConnectionManager{ -UdpClient udpClient -UdpServer udpServer -TcpServer tcpServer -ConfigurationManager cfgManager + {static} synchronized ConnectionManager getInstance() } enum MessageType class Message implements Serializable{ - final MessageType messageType; - final Object content; - InetAddress address; } class StartSharingController extends FocusOwnerAction implements Observer, Serializable class StartSharingExtension extends Extension class StartSharingPanel extends javax.swing.JPanel class TcpServer implements Runnable class TcpServerConnection extends Observable implements Runnable class TcpClientConnection class UdpClient extends Observable implements Runnable class UdpServer implements Runnable ConnectionManager *-- TcpServer ConnectionManager *-- UdpServer ConnectionManager *-- UdpClient ConnectionManager *-- TcpClientConnection ConnectionManager *-- ConfigurationManager TcpServer o-- TcpClientConnection Message o-- MessageType StartSharingController *-- ConnectionManager StartSharingPanel *-- StartSharingController @enduml
false
true
false
false
class
ff33e2006a6e1a3d58afca4c9051e74a8a1a32bc
2fa2f965ef5c1c576ff96086515d670f6ca7dbd3
/diagrams/sequence/award/decline award.puml
1f1e9ea141633e90eb502b95b8dc4f69f2a40878
[]
no_license
JohnKhandygo/EM
80d04b9b33872d48a641cf601cdfc5a674c5acad
7fd8d752848c73747cda057cf1909481d7509cfc
refs/heads/master
2021-01-17T17:09:22.012855
2016-11-25T15:35:44
2016-11-25T15:35:44
59,913,238
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,004
puml
@startuml actor Paymaster as paymaster participant AwardResource as resource participant AuthService as auth participant AwardsService as awards participant "AwardsDAO" as payments database DBMS paymaster -> resource : reject() activate resource ''''' auth resource -> auth : employeeBySession() activate auth auth -> resource : Employee deactivate auth resource -> awards : reject() activate awards ''''' accept payment awards -> payments : get() activate payments payments -> DBMS : <<query>> activate DBMS DBMS --> payments : raw response deactivate DBMS payments --> awards : Award deactivate payments ''''' update payment ref over awards : Award::reject awards -> payments : update() activate payments payments -> DBMS : <<query>> activate DBMS DBMS --> payments : raw response deactivate DBMS payments --> awards : Award deactivate payments awards --> resource : void deactivate awards ref over resource : AwardRejected::new resource --> paymaster : AwardRejected deactivate resource @enduml
false
true
false
false
sequence
f68967094305468060674f2edeb7147e97d3a398
7ef514715081cb88ddbc214b6003cfd65c4d97ad
/src/main/resources/classDiagram.puml
0d26ece80abc9870f6a4a41a65900d472684ba8b
[]
no_license
eks5115/design-pattern-learning
1069cc439b16e4882e2f32e3f73cf029d303c95a
b1fb55e3739a770b99bc243f2e3eeafb93eed5ab
refs/heads/master
2020-03-24T05:58:23.399050
2018-11-09T07:33:23
2018-11-09T07:33:23
142,511,158
0
0
null
null
null
null
UTF-8
PlantUML
false
false
1,181
puml
@startuml interface Vehicle { {abstract} float getSpeed() } abstract AbstractVehicle { -float speed -Person driver -Power power -Tire tire -ProtectiveDevice protectiveDevice +float getSpeed() +Person getDriver() +Power getPower() +Tire getTire() +ProtectiveDevice getProtectiveDevice() } abstract class MotorVehicle { } abstract class NonMotorVehicle { } class Car { } class Bus { } class Motorcycle { } class Bicycle { } abstract class Tire { -String type +String getType() } class RoadTire { } class MountainTire { } abstract class ProtectiveDevice { } class SafetyClothing { } class Helmet { } abstract Person { } abstract class Power { } class Gasoline { } class Manpower { } Vehicle <|.. AbstractVehicle AbstractVehicle <|-- MotorVehicle AbstractVehicle <|-- NonMotorVehicle AbstractVehicle *-- Tire AbstractVehicle o-- ProtectiveDevice AbstractVehicle --> Person AbstractVehicle ..> Power MotorVehicle <|-- Car MotorVehicle <|-- Bus MotorVehicle <|-- Motorcycle NonMotorVehicle <|-- Bicycle Tire <|-- RoadTire Tire <|-- MountainTire ProtectiveDevice <|-- SafetyClothing ProtectiveDevice <|-- Helmet Power <|-- Gasoline Power <|-- Manpower @enduml
false
true
false
false
class
9da26330f5e2421b79c6d6c964d3487172b0423e
9b97649137eb308e83c86f20a537e84e3bac42e5
/src/main/diagramas_puml/JuegoRondaDeAtaquesEntreDosJugadores.puml
89406a2faeb8f133fb0c1696e273e220dbdefd46
[ "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
1,305
puml
@startuml JuegoRondaDeAtaquesEntreDosJugadores autonumber Actor TestCase loop TestCase -> Juego : obtenerJugador(i) Juego --> TestCase : jugador i end TestCase -> Argentina : asignarJugador(jugador1) TestCase -> Argentina : colocarEjercitos(20, jugador1) TestCase -> Brasil : asignarJugador(jugador2) TestCase -> Chile : asignarJugador(jugador2) TestCase -> "jugador1 : Jugador" : hacerAtaques(Argentina, chile) "jugador1 : Jugador" -> Argentina : atacarA(chile) Argentina -> Batalla : combateEntre(argentina, chile) loop Batalla -> "dadosAtacante : Dados" : get(numeroDado) Batalla <-- "dadosAtacante : Dados" : dado Batalla -> "dadosDefensor : Dados" : get(numeroDado) Batalla <-- "dadosDefensor : Dados" : dado Batalla -> Chile : eliminarEjercito() end Batalla -> Argentina : ocuparPais(chile, cantEjercitos) TestCase -> "jugador1 : Jugador" : hacerAtaques(Argentina, brasil) "jugador1 : Jugador" -> Argentina : atacarA(brasil) Argentina -> Batalla : combateEntre(argentina, brasil) loop Batalla -> "dadosAtacante : Dados" : get(numeroDado) Batalla <-- "dadosAtacante : Dados" : dado Batalla -> "dadosDefensor : Dados" : get(numeroDado) Batalla <-- "dadosDefensor : Dados" : dado Batalla -> Brasil : eliminarEjercito() end Batalla -> Argentina : ocuparPais(chile, cantEjercitos) @enduml
false
true
false
false
usecase
2cb1fa5b0b65998a1db4de03d3c390b838dd5e87
eb4d12c3db6d484127f74970d68eb34cb239bc2e
/classes.plantuml
0484af3c1d9f4ece785a6b4276afc14f8476b978
[]
no_license
Da-progress/TestMaven
663c346e7d3845be934c8c8a5f8287db1ebcac1e
479a0fa3efdf967b885aaaedddfdf42f2ec5f298
refs/heads/master
2021-01-11T14:50:59.059636
2017-02-10T09:16:21
2017-02-10T09:16:21
80,233,480
0
0
null
null
null
null
UTF-8
PlantUML
false
false
7,600
plantuml
@startuml top to bottom direction skinparam headerFontSize 30 skinparam headerFontStyle bold skinparam classAttributeIconSize 0 scale 1.0 package DataBase { class DataBase.ElentBDConnection { .. Methods .. +getComponentName(String) : void +getCost(String) : void +getDBConnection(int) : void +getFunctinalDamageData(String) : void +getFunctinalRiskData(String) : void +getOperatingDuration(String) : void +getOperatingMode(String) : void +getProbabilityData(String) : void +getStructureDamageData(String) : void +getStructureRiskData(String) : void } class DataBase.InnerConnDBConnection { .. Methods .. +getComponentName(String) : void +getCost(String) : void +getDBConnection(int) : void +getFunctinalDamageData(String) : void +getFunctinalRiskData(String) : void +getOperatingDuration(String) : void +getOperatingMode(String) : void +getProbabilityData(String) : void +getStructureDamageData(String) : void +getStructureRiskData(String) : void } class DataBase.OperationModes { .. Methods .. +getComponentName(String) : void +getCost(String) : void +getDBConnection(int) : void +getFunctinalDamageData(String) : void +getFunctinalRiskData(String) : void +getOperatingDuration(String) : void +getOperatingMode(String) : void +getProbabilityData(String) : void +getStructureDamageData(String) : void +getStructureRiskData(String) : void } class DataBase.Cost { .. Methods .. +getComponentName(String) : void +getCost(String) : void +getDBConnection(int) : void +getFunctinalDamageData(String) : void +getFunctinalRiskData(String) : void +getOperatingDuration(String) : void +getOperatingMode(String) : void +getProbabilityData(String) : void +getStructureDamageData(String) : void +getStructureRiskData(String) : void } class DataBase.OpeatingDuration { .. Methods .. +getComponentName(String) : void +getCost(String) : void +getDBConnection(int) : void +getFunctinalDamageData(String) : void +getFunctinalRiskData(String) : void +getOperatingDuration(String) : void +getOperatingMode(String) : void +getProbabilityData(String) : void +getStructureDamageData(String) : void +getStructureRiskData(String) : void } class DataBase.StatisticsDBConnection { .. Methods .. +getComponentName(String) : void +getCost(String) : void +getDBConnection(int) : void +getFunctinalDamageData(String) : void +getFunctinalRiskData(String) : void +getOperatingDuration(String) : void +getOperatingMode(String) : void +getProbabilityData(String) : void +getStructureDamageData(String) : void +getStructureRiskData(String) : void } } package Evaluation { class Evaluation.InnerConnRA { .. Methods .. +getFunctionalRiskValue(Double, Double) : void +getStructureRiskValue(Double, Double) : void } class Evaluation.ElementDA { .. Methods .. +getFunctionalDamageValue(Double, Double) : void +getStructureDamageValue(Double, Double) : void } class Evaluation.InnerConnDA { .. Methods .. +getFunctionalDamageValue(Double, Double) : void +getStructureDamageValue(Double, Double) : void } class Evaluation.ElementRA { .. Methods .. +getFunctionalRiskValue(Double, Double) : void +getStructureRiskValue(Double, Double) : void } class Evaluation.Probability { .. Methods .. +getComponentName(String) : void +getCost(String) : void +getFunctinalDamageData(String) : void +getFunctinalRiskData(String) : void +getOperatingDuration(String) : void +getOperatingMode(String) : void +getProbabilityData(String) : void +getStructureDamageData(String) : void +getStructureRiskData(String) : void } } package Graphics { class Graphics.CognitiveMap { .. Methods .. +drawCognitiveMap() : void +drawDiagram() : void +drawGraph() : void } class Graphics.Graph { .. Methods .. +drawCognitiveMap() : void +drawDiagram() : void +drawGraph() : void } class Graphics.Giaram { .. Methods .. +drawCognitiveMap() : void +drawDiagram() : void +drawGraph() : void } } package com.mycompany.spprfull { package com.mycompany.spprfull.gui { class com.mycompany.spprfull.gui.SPPR { .. Methods .. .. Static .. + {static} main() : void } class com.mycompany.spprfull.gui.Gui { .. Fields .. -jButton2 : JButton -jButton3 : JButton -jCheckBox1 : JCheckBox -jCheckBox2 : JCheckBox -jCheckBox3 : JCheckBox -jCheckBox4 : JCheckBox -jComboBox1 : JComboBox -jLabel1 : JLabel -jLabel2 : JLabel -jLabel3 : JLabel -jLabel5 : JLabel -jLabel6 : JLabel -jLabel7 : JLabel -jPanel2 : JPanel -jPanel3 : JPanel -jPanel4 : JPanel -jPanel5 : JPanel -jScrollPane1 : JScrollPane -jScrollPane2 : JScrollPane -jScrollPane3 : JScrollPane -jTabbedPane6 : JTabbedPane -jTable1 : JTable -jTable3 : JTable -jTextArea1 : JTextArea .. Methods .. -initComponents() : void -jComboBox1ActionPerformed(ActionEvent) : void .. Static .. + {static} main() : void } class com.mycompany.spprfull.gui.MakeDesicion { .. Methods .. +getComponentName(String) : void +getCost(String) : void +getDBConnection(int) : void +getFunctinalDamageData(String) : void +getFunctinalRiskData(String) : void +getOperatingDuration(String) : void +getOperatingMode(String) : void +getProbabilityData(String) : void +getStructureDamageData(String) : void +getStructureRiskData(String) : void } } interface com.mycompany.spprfull.Risk { .. Methods .. + {abstract} getFunctionalRiskValue(Double, Double) : void + {abstract} getStructureRiskValue(Double, Double) : void } interface com.mycompany.spprfull.Damage { .. Methods .. + {abstract} getFunctionalDamageValue(Double, Double) : void + {abstract} getStructureDamageValue(Double, Double) : void } interface com.mycompany.spprfull.DataOutput { .. Methods .. + {abstract} getComponentName(String) : void + {abstract} getCost(String) : void + {abstract} getFunctinalDamageData(String) : void + {abstract} getFunctinalRiskData(String) : void + {abstract} getOperatingDuration(String) : void + {abstract} getOperatingMode(String) : void + {abstract} getProbabilityData(String) : void + {abstract} getStructureDamageData(String) : void + {abstract} getStructureRiskData(String) : void } interface com.mycompany.spprfull.Drawing { .. Methods .. + {abstract} drawCognitiveMap() : void + {abstract} drawDiagram() : void + {abstract} drawGraph() : void } interface com.mycompany.spprfull.BDConnection { .. Methods .. + {abstract} getDBConnection(int) : void } } com.mycompany.spprfull.BDConnection <|.. DataBase.ElentBDConnection com.mycompany.spprfull.DataOutput <|.. DataBase.ElentBDConnection com.mycompany.spprfull.Risk <|.. Evaluation.InnerConnRA com.mycompany.spprfull.BDConnection <|.. DataBase.InnerConnDBConnection com.mycompany.spprfull.DataOutput <|.. DataBase.InnerConnDBConnection com.mycompany.spprfull.Damage <|.. Evaluation.ElementDA com.mycompany.spprfull.Damage <|.. Evaluation.InnerConnDA com.mycompany.spprfull.BDConnection <|.. DataBase.OperationModes com.mycompany.spprfull.DataOutput <|.. DataBase.OperationModes com.mycompany.spprfull.BDConnection <|.. com.mycompany.spprfull.gui.MakeDesicion com.mycompany.spprfull.DataOutput <|.. com.mycompany.spprfull.gui.MakeDesicion com.mycompany.spprfull.BDConnection <|.. DataBase.Cost com.mycompany.spprfull.DataOutput <|.. DataBase.Cost com.mycompany.spprfull.Risk <|.. Evaluation.ElementRA com.mycompany.spprfull.DataOutput <|.. Evaluation.Probability com.mycompany.spprfull.BDConnection <|.. DataBase.OpeatingDuration com.mycompany.spprfull.DataOutput <|.. DataBase.OpeatingDuration com.mycompany.spprfull.Drawing <|.. Graphics.CognitiveMap com.mycompany.spprfull.Drawing <|.. Graphics.Graph com.mycompany.spprfull.BDConnection <|.. DataBase.StatisticsDBConnection com.mycompany.spprfull.DataOutput <|.. DataBase.StatisticsDBConnection com.mycompany.spprfull.Drawing <|.. Graphics.Giaram @enduml
false
true
false
false
class
6e538b0f17b8017b69bb301d8674535aa64a057a
91678f027f1da807dfe4c113028f331f458c3a3d
/src/Docs/Resources/current/60-references-internals/10-core/10-erd/_puml/erd-shopware-core-framework-api.puml
a91c878da32172b832d8c4bdeef9cfa99041b47b
[ "MIT", "LicenseRef-scancode-generic-cla" ]
permissive
amtee/platform
fd4b863a98c4302a26782486d173c437dfa98baa
3518811b02bcfb746abb8553ae8e5ac6f15338c0
refs/heads/trunk
2023-08-20T03:41:00.473175
2021-09-27T11:20:36
2021-09-27T11:20:36
410,864,620
1
0
MIT
2022-02-06T18:56:01
2021-09-27T11:54:21
null
UTF-8
PlantUML
false
false
1,914
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(ShopwareCoreFrameworkApiAclRoleAclRoleDefinition, "acl_role\n(Acl role)") { primary_key(id) id not_null(name) string description longText not_null(privileges) list not_null(createdAt) createdAt updatedAt updatedAt } Table(ShopwareCoreFrameworkApiAclRoleAclUserRoleDefinition, "acl_user_role\n(M:N Mapping)") { primary_key(userId) foreignKey primary_key(aclRoleId) foreignKey not_null(createdAt) createdAt updatedAt updatedAt } ForeignTable(ShopwareCoreFrameworkAppAppDefinition, "app") { } ForeignTable(ShopwareCoreSystemIntegrationAggregateIntegrationRoleIntegrationRoleDefinition, "integration_role") { } ForeignTable(ShopwareCoreSystemUserUserDefinition, "user") { } ' relationshipd ShopwareCoreFrameworkApiAclRoleAclUserRoleDefinition --> ShopwareCoreFrameworkApiAclRoleAclRoleDefinition ShopwareCoreFrameworkApiAclRoleAclRoleDefinition --> ShopwareCoreFrameworkAppAppDefinition ShopwareCoreFrameworkApiAclRoleAclRoleDefinition --> ShopwareCoreSystemIntegrationAggregateIntegrationRoleIntegrationRoleDefinition ShopwareCoreFrameworkApiAclRoleAclUserRoleDefinition --> ShopwareCoreSystemUserUserDefinition @enduml
false
true
false
false
uml-unknown
a86878c407c9b7d7c1bdb5d8fa5e0409103adb70
640be1f33c633c522c75fadbc52978196fd07e38
/src/UMLPrinter.puml
17e3ea3f7ef400c0810929e33444b00d08397885
[]
no_license
BernatMallol/PrinterTimeTracker
5392d60a56f7edf87ef8504330026ac75bd8a6c2
4e714775f4a942aa57c624899a3d5c04c707b0f5
refs/heads/master
2022-12-31T22:57:54.587776
2020-10-21T15:33:14
2020-10-21T15:33:14
303,704,674
0
0
null
null
null
null
UTF-8
PlantUML
false
false
2,136
puml
@startuml class Clock{ -Observable observable -Timer clock -Clock uniqueInstance -Clock() +getInstance():clock -startTick() -setTime() +stopClock() } interface Element{ +print() } interface VisitorPrint{ print(Tracker) print(Task) print(TaskManager) print(Interval) } class Interval{ -Task parentTask -LocalDateTime startTime -LocalDateTime endTime -boolean inProgress +Interval() +isInProgress():boolean +getDuration():Duration +getEndTime():LocalDateTime +getEndTimeToString():String +setEndTime() +getStartTimeToString():String +getStartTime():LocalDateTime +update() +toString():String +print() } class PrinterVisitor{ +Timer timer -TaskManager taskManager +PrinterVisitor() +print(Tracker) +print(TaskManager) +print(Task) +print(Interval) +stopPrinting() +update() } class Task{ -TaskManager parentProject -List<Interval> listIntervals -boolean active +Task() +getListIntervals():List<Interval> +getStartTimeToString():String +getEndTimeToString():String +getStartTime():LocalDateTime +updateParentEndTime() +getDuration():Duration +endInterval() +createInterval():Interval +intervalUpdated() +toString():String +getEndTime():LocalDateTime +print() } class TaskManager{ -TaskManager parentProject -List<Tracker> trackers +TaskManager(String) +TaskManager(TaskManager,String) #updateParentEndTime() +setStartTime() +getTrackers():List<Tracker> +getDuration():Duration +getStartTime():LocalDateTime +getStartTimeToString():String +setEndTime() +getEndTime():LocalDateTime +getEndTimeToString():String +addChild(Tracker) } class Tracker{ #String name #LocalDateTime startTime #LocalDateTime endTime +Tracker() #updateParentEndTime() +getName():String +getDuration():Duration +getStartTimeToString():String +getEndTimeToString():String +getStartTime():LocalDateTime +getEndTime():LocalDateTime } interface Observer class Observable TaskManager"0.." -- "1.." Task Tracker<|--(TaskManager, Task) Task"1"*--"0..*"Interval Interval--|>(Element,Observer) (Task,TaskManager) o--Tracker Observable <|-- Clock Clock --* TimerTask PrinterVisitor--|>(VisitorPrint,Observer) (Tracker,TaskManager) --|> Element Clock o--Tracker @enduml
false
true
false
false
class
f3d64bc527209d2b604a8bd7bb5d4c10c7eda0e3
20c9d90f40e69cba7b7044b840d3e29c6c79ea65
/docs/modules/ROOT/workflows/vm_create.puml
c69b18ca5dd4d1cfc651644136dc5840c555f86c
[ "MIT" ]
permissive
xieus/alcor
4ca39226596e66ada3832ae5df18bf2bd01c1c19
d786ac2bdd2cfab369fce1e3139cd0ace392ff4d
refs/heads/master
2023-02-08T06:04:53.875318
2022-12-22T03:59:06
2022-12-22T03:59:06
252,636,860
1
0
Apache-2.0
2020-06-04T21:46:18
2020-04-03T05:03:05
Java
UTF-8
PlantUML
false
false
4,031
puml
'MIT License 'Copyright(c) 2020 Futurewei Cloud ' ' Permission is hereby granted, ' free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal in the Software without restriction, ' including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies of the Software, and to permit persons ' to whom the Software is furnished to do so, subject to the following conditions: ' ' The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ' ' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ' FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, ' WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. @startuml skinparam monochrome true autonumber "<b>[00]" actor User as user participant "Horizon Dashboard/CLI" as frontend participant Keystone as keystone participant "Nova-API Server" as novaapi database "Nova DB" as novadb participant "Message queue" as queue participant "Nova-Scheduler" as scheduler participant "Nova-Compute" as compute participant "Nova-Conductor" as conductor participant "Hypervisor" as hypervisor participant "Glance" as glance participant "Neutron/Alcor" as network participant "Cinder" as cinder note over keystone: REST APIs / note over novaapi: REST APIs / note over glance: REST APIs / note over network: REST APIs / note over cinder: REST APIs user -> frontend: Log in with credential frontend -> keystone: Send user's credential\nfor authentication keystone --> frontend: Authenticate the credential\nsend back auth-token user -> frontend: Launch VM instance\n(nova boot command) frontend -> novaapi: Convert frontend request to REST API request novaapi -> keystone: Validation of auth-token\nand access permission keystone --> novaapi: Send updated authentication\nheaders with roles and permission novaapi -> novadb: Check for conflicts and\ncreate initial db entry novadb --> novaapi: DB access response group Scheduling Nodes novaapi -> queue: Ask to specify host id for the instance queue -> scheduler: Schedule picks the request scheduler -> novadb: Locate a host using filtering and weighing novadb --> scheduler: Return updated instance entry w/ host id scheduler -> queue: Send Rpc.cast request to\nnova-compute on the selected\nhost for launching an instance queue -> compute: Nova-compute picks the request from the queue end group Fetching Instance Information compute -> queue: send the rpc.call request to nova-conductor\nto fetch instance info such as host ID and flavor queue -> conductor: Nova-conductor picks the request form the queue conductor -> novadb: Request host info novadb --> conductor: Return requested host info conductor -> queue: Send request to nova-compute on the target host queue -> compute: Nova-compute picks the requested instance info end group Fetching VM Images compute -> glance: Pass auth-token, get image URL by ID,\nand upload image from image storage glance <-> keystone: Validate auth-token glance --> compute: Return the image metadata end group Allocating Network Resources compute -> network: Pass auth-token, allocate/configure network resources\nfor the instance network <-> keystone: Validate auth-token network --> compute: Return the requested network resources (ports etc.) end group Allocating Block Storage compute -> cinder: Pass auth-token, attach storage volumes to the instance cinder <-> keystone: Validate auth-token cinder --> compute: Return the requested block storage info end compute -> hypervisor: Generate data for hypervisor driver,\nand executes request on Hypervisor\nvia libvirt or api @enduml
false
true
false
false
usecase
e19ceedd169e1f997b3ab051009c989ced6f8c93
46a9811962129f0cbe57636ac4d6ee9d98dbf44c
/input/images-source/transaction-3-seq.plantuml
70de9d07f0a5da54e97ec859fddeadb3cb9e3b01
[]
no_license
HL7/fhir-saner
c782972c89dd7425504c4b6a999e4e5b1ce6af20
ad72c0dbc9142439fbff2f135f82978e7f1d4282
refs/heads/master
2023-01-13T01:33:40.692632
2022-02-15T21:30:31
2022-02-15T21:30:31
252,787,748
12
8
null
2022-12-21T20:01:09
2020-04-03T16:44:47
GLSL
UTF-8
PlantUML
false
false
473
plantuml
@startuml hide footbox participant "Measure Definition Consumer" as MeasureDefinitionConsumer participant "Measure Definition Source" as MeasureDefinitionSource "MeasureDefinitionConsumer" -> "MeasureDefinitionSource" : 1. Search Request activate "MeasureDefinitionConsumer" activate "MeasureDefinitionSource" "MeasureDefinitionSource" --> "MeasureDefinitionConsumer" : 2. Search Response deactivate "MeasureDefinitionConsumer" deactivate "MeasureDefinitionSource" @enduml
false
true
false
false
sequence
8f1b96f55eeb244e3bbf62766346b70bcccb19d7
6a31305f49d1d2770c4876be5587fcfb799bf32d
/src/main/java/ex45/ex45.puml
775a43a222b6da9caa2011f28bf4cbae70c9e1c7
[]
no_license
ShintaroKisarag/TRAN-cop3330-assignment3
0f94fd37ffd0d2a65b43a924121b59f906ea88da
12ebef121528d2e43d5d2e80e55504cd524cc023
refs/heads/master
2023-08-23T01:47:42.112869
2021-10-12T03:15:37
2021-10-12T03:15:37
null
0
0
null
null
null
null
UTF-8
PlantUML
false
false
481
puml
@startuml 'https://plantuml.com/class-diagram main <|-- readFile readFile <|-- readLine main <|-- WriteFile main <|-- readLine class readFile { ArrayList<String>list Scanner input } class readFile{ File inputFile } class readLine{ String data list.add(data) } class WriteFile{ FileWriter(name) int index String temp String string } class main{ Scanner input String output readFile() readLine() ArrayList<String>list writeFile(output,list) writeFile.writeFile() } @enduml
false
true
false
false
class
f2e9dcee3015912ad2711892e4f9c669436fa883
a751888fd29a1b92bb32ef7d272d3e72f664ed30
/src/design/events-class-diagram.puml
cdbe23612b7cd23d830c40afe87a04ed78713740
[ "Apache-2.0", "MIT", "EPL-1.0" ]
permissive
petrushy/Orekit
b532c7db85c992d85b5ac3d858d18d656e2b8c46
1f8ff45caf82e0e7e85f8cf9fd4f41c3ba379443
refs/heads/develop
2023-08-16T11:37:43.709083
2023-07-18T20:13:14
2023-07-18T20:13:14
42,349,064
10
2
Apache-2.0
2023-07-21T14:54:14
2015-09-12T07:39:56
Java
UTF-8
PlantUML
false
false
4,145
puml
' Copyright 2002-2022 CS GROUP ' Licensed to CS GROUP (CS) under one or more ' contributor license agreements. See the NOTICE file distributed with ' this work for additional information regarding copyright ownership. ' CS licenses this file to You under the Apache License, Version 2.0 ' (the "License"); you may not use this file except in compliance with ' the License. You may obtain a copy of the License at ' ' http://www.apache.org/licenses/LICENSE-2.0 ' ' Unless required by applicable law or agreed to in writing, software ' distributed under the License is distributed on an "AS IS" BASIS, ' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ' See the License for the specific language governing permissions and ' limitations under the License. @startuml skinparam svek true skinparam ClassBackgroundColor #F3EFEB/CCC9C5 skinparam ClassArrowColor #691616 skinparam ClassBorderColor #691616 skinparam NoteBackgroundColor #F3EFEB skinparam NoteBorderColor #691616 skinparam NoteFontColor #691616 skinparam ClassFontSize 11 skinparam PackageFontSize 12 skinparam linetype ortho package org.orekit.propagation #ECEBD8 { interface Propagator { +void addEventDetector(EventDetector detector) +Collection<EventDetector> getEventsDetectors() +void clearEventsDetectors() } package events #DDEBD8 { package handlers #CBDBC8 { interface "EventHandler<T extends EventDetector>" as EventHandler_T_ { +init(SpacecraftState s0, AbsoluteDate target, T detector) +Action eventOccurred(SpacecraftState s, T detector, boolean increasing) +SpacecraftState resetState(T detector, SpacecraftState oldState) } enum Action { +STOP +RESET_STATE +RESET_DERIVATIVES +CONTINUE } ContinueOnEvent --|> EventHandler_T_ StopOnEvent --|> EventHandler_T_ StopOnDecreasingEvent --|> EventHandler_T_ StopOnIncreasingEvent --|> EventHandler_T_ } class EventsLogger interface EventDetector { +void init(SpacecraftState s0, AbsoluteDate t) +double g(SpacecraftState s) +double getThreshold() +double getMaxCheckInterval() +int getMaxIterationCount() +eventOccurred(SpacecraftState s, boolean increasing) +resetState(SpacecraftState oldState) } class EventShifter { -double increasingOffset -double decreasingOffset } EventDetector <--* "1" EventShifter class "AbstractDetector<T extends EventDetector>" as AbstractDetector_T_ { +T withMaxCheck(double maxCheck) +T withThreshold(double threshold) +T withMaxIter(int maxIter) +T withHandler(EventHandler<T> handler) +EventHandler<T> getHandler() } enum FilterType { TRIGGER_ONLY_DECREASING_EVENTS TRIGGER_ONLY_INCREASING_EVENTS } interface EnablingPredicate { +eventIsEnabled(SpacecraftState state, S eventDetector, double g) } EventsLogger "*" *--> EventDetector : monitors EventDetector <--* "1" EventSlopeFilter EventSlopeFilter "1" *--> FilterType Propagator "1" o--> "*" EventDetector : detectors EventDetector <--* "1" EventEnablingPredicateFilter EventEnablingPredicateFilter "1" *--> EnablingPredicate AbstractDetector_T_ <|-- EventShifter AbstractDetector_T_ <|-- EventSlopeFilter AbstractDetector_T_ <|-- EventEnablingPredicateFilter Action <-left- EventHandler_T_ EventDetector <|.. AbstractDetector_T_ AbstractDetector_T_ <|-- EclipseDetector AbstractDetector_T_ <|-- ElevationDetector class "...Detector" as DummyDetector AbstractDetector_T_ <|-- DummyDetector note top many implementations not displayed for the sake of diagram clarity end note EventHandler_T_ "1" <--o AbstractDetector_T_ : handler } } @enduml
false
true
false
false
sequence
243ea3c276287629726a7a88bb9c6880e9a17c57
8b1d86d7b0e1c3b922a03ff20e2249b47a714bac
/usecase.puml
05b29d2d5b7b6fd37781fe53498ef7502fbd3f6d
[]
no_license
cekingx/diagram-ta
294ee991fc0daa9bd8a58236f1a3955d886e3c62
ab7d990677f801c463ba5af709fb169f4528f5ec
refs/heads/master
2022-09-14T15:57:31.435115
2020-06-04T06:40:07
2020-06-04T06:40:07
269,262,906
0
0
null
null
null
null
UTF-8
PlantUML
false
false
343
puml
@startuml left to right direction skinparam packageStyle rectangle actor "Voter" as v actor "Ballot Regulator" as br rectangle e-voting { usecase "Vote" as vote usecase "Check final result" as check_final usecase "Set Candidate" as set_candidate } v --> vote v --> check_final br --> check_final br --> set_candidate @enduml
false
true
false
false
usecase